html, body {
    padding: 0;
    margin: auto;
    height: 100%;
    min-width: 900px;
    font-family: Verdana, sans-serif;
    font-size: small;
    color: rgb(51, 51, 51);
    overflow: hidden;
}

a {
	text-decoration: none;
	color: rgb(51, 51, 51);
}

img {
	border: none;
}

.label {
	font-size: x-small;
	padding-right: 10px;
}

.notification {
	font-size: x-small;
	padding-right: 10px;
	display: none;
}

.notification.shown {
	display: inline-block;
}

.label.error {
	color: red;
}

input {
	padding: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
	border: 1px solid black;
	outline: none;
	display: block;
    font-family: Verdana, sans-serif;
}

input[type=radio] {
	display: inline-block;
	border: none;
}

input[type=checkbox] {
	display: inline-block;
	border: none;
}

.input_block {
	display: inline-block;
	vertical-align: middle;
}

textarea {
	resize: none;
	padding: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid black;
	outline: none;
	display: block;
    font-family: Verdana, sans-serif;
    font-size: smaller;
    font-weight: normal;
    margin-top: 2px;
}

select {
	width: 232px;
	height: 29px;
	line-height: 29px;
	background-color: white;
	border: 1px solid black;
	outline: none;
	display: block;
    font-family: Verdana, sans-serif;	
}

button {
	border: none;
	background-color: rgb(235, 235, 235);
	background-image: -o-linear-gradient(rgb(254, 254, 254), rgb(235, 235, 235));
	background-image: -moz-linear-gradient(rgb(254, 254, 254), rgb(235, 235, 235));
	background-image: -webkit-linear-gradient(rgb(254, 254, 254), rgb(235, 235, 235));
	background-image: -ms-linear-gradient(rgb(254, 254, 254), rgb(235, 235, 235));
	background-image: linear-gradient(rgb(254, 254, 254), rgb(235, 235, 235));
	color: black;
	padding: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
	cursor: pointer;
	border-radius: 2px;
	-moz-border-radius: 2px;
	border: 1px solid rgb(168, 168, 168);
}

button:hover {
	background-image: -o-linear-gradient(rgb(254, 254, 254), rgb(212, 212, 212));
	background-image: -moz-linear-gradient(rgb(254, 254, 254), rgb(212, 212, 212));
	background-image: -webkit-linear-gradient(rgb(254, 254, 254), rgb(212, 212, 212));
	background-image: -ms-linear-gradient(rgb(254, 254, 254), rgb(212, 212, 212));
	background-image: linear-gradient(rgb(254, 254, 254), rgb(212, 212, 212));
}

button:active {
	background-image: -o-linear-gradient(rgb(212, 212, 212), rgb(254, 254, 254));
	background-image: -moz-linear-gradient(rgb(212, 212, 212), rgb(254, 254, 254));
	background-image: -webkit-linear-gradient(rgb(212, 212, 212), rgb(254, 254, 254));
	background-image: -ms-linear-gradient(rgb(212, 212, 212), rgb(254, 254, 254));
	background-image: linear-gradient(rgb(212, 212, 212), rgb(254, 254, 254));
}

button[type=reset] {
	background-color: rgb(112, 35, 35);
	background-image: -o-linear-gradient(rgb(121, 37, 37), rgb(112, 35, 35));
	background-image: -moz-linear-gradient(rgb(121, 37, 37), rgb(112, 35, 35));
	background-image: -webkit-linear-gradient(rgb(121, 37, 37), rgb(112, 35, 35));
	background-image: -ms-linear-gradient(rgb(121, 37, 37), rgb(112, 35, 35));
	background-image: linear-gradient(rgb(121, 37, 37), rgb(112, 35, 35));
	color: white;
	border-color: rgb(80, 25, 25);
}

button[type=reset]:hover {
	background-image: -o-linear-gradient(rgb(121, 37, 37), rgb(84, 33, 33));
	background-image: -moz-linear-gradient(rgb(121, 37, 37), rgb(84, 33, 33));
	background-image: -webkit-linear-gradient(rgb(121, 37, 37), rgb(84, 33, 33));
	background-image: -ms-linear-gradient(rgb(121, 37, 37), rgb(84, 33, 33));
	background-image: linear-gradient(rgb(121, 37, 37), rgb(84, 33, 33));
}

button[type=reset]:active {
	background-image: -o-linear-gradient(rgb(84, 33, 33), rgb(121, 37, 37));
	background-image: -moz-linear-gradient(rgb(84, 33, 33), rgb(121, 37, 37));
	background-image: -webkit-linear-gradient(rgb(84, 33, 33), rgb(121, 37, 37));
	background-image: -ms-linear-gradient(rgb(84, 33, 33), rgb(121, 37, 37));
	background-image: linear-gradient(rgb(84, 33, 33), rgb(121, 37, 37));
}

button[type=submit] {
	background-color: rgb(67, 112, 35);
	background-image: -o-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -moz-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -webkit-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -ms-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	border-color: rgb(48, 80, 25);
	color: white;
}

button[type=submit]:hover {
	background-image: -o-linear-gradient(rgb(73, 119, 38), rgb(50, 101, 34));
	background-image: -moz-linear-gradient(rgb(73, 119, 38), rgb(50, 101, 34));
	background-image: -webkit-linear-gradient(rgb(73, 119, 38), rgb(50, 101, 34));
	background-image: -ms-linear-gradient(rgb(73, 119, 38), rgb(50, 101, 34));
	background-image: linear-gradient(rgb(73, 119, 38), rgb(50, 101, 34));
}

button[type=submit]:active {
	background-image: -o-linear-gradient(rgb(50, 101, 34), rgb(73, 119, 38));
	background-image: -moz-linear-gradient(rgb(50, 101, 34), rgb(73, 119, 38));
	background-image: -webkit-linear-gradient(rgb(50, 101, 34), rgb(73, 119, 38));
	background-image: -ms-linear-gradient(rgb(50, 101, 34), rgb(73, 119, 38));
	background-image: linear-gradient(rgb(50, 101, 34), rgb(73, 119, 38));
}

button[disabled] {
	background-color: rgb(128, 128, 128);
	background-image: none;
	border-color: rgb(92, 92, 92);
	color: #EBEBEB;
	cursor: auto;
}

button[disabled]:hover {
	background-image: none;
}

iframe {
	width: 0;
	height: 0;
	border: none;
}

#body {
	overflow: hidden;
}

#body #logo {
	padding: 5px;
	padding-bottom: 0;
	margin-bottom: 0;
}

#body #logo img {
	margin-bottom: -7px;;
	padding-bottom: 0;
}

#body #logo #subtitle {
	margin-left: 20px;
	font-size: 10px;
}

#body .content {
/* 	border-top: 1px solid #EBEBEB; */
	overflow-y: auto;
/* 	width: 900px; */
	margin-top: 15px;
	margin-left: 25px;
	margin-bottom: 15px;
	margin-right: 25px;
}



/* Styling the footer */
#footer {
	overflow: hidden;
	background-color: rgb(67, 112, 35);
	background-image: -o-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -moz-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -webkit-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: -ms-linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));
	background-image: linear-gradient(rgb(73, 119, 38), rgb(67, 112, 35));

	color: white;
}

#footer img {
	height: 16px;
}

#footer .selected {
	background-image: url('/images/top.png');
	background-repeat:no-repeat;
	background-position:center top;
}

#footer #news_notifier.selected {
	background-image: none;
}

#footer .unselected:hover {
	color: rgb(51, 51, 51);
}

#footer #task_bar {
	height: 40px;
	float: right;
	line-height: 40px;
}

#footer #task_bar #news_notifier {
	margin-right: 10px;
	height: 20px;
	width: 20px;
	line-height: 20px;
	background-color: rgb(51, 51, 51);
	color: white;
	display: inline-block;
	text-align: center;
	font-family: Georgia, serif;
	font-weight: bold;
	cursor: pointer;
}

#footer #current_locale {
	display: inline-block;
	margin-right: 20px;
	cursor: pointer;
/* 	color: rgb(128, 128, 128); */
	color: rgb(51, 51, 51);
	height: 40px;
	line-height: 40px;
}

#footer #task_bar #news_notifier.disabled {
	display: none;
}

#footer #current_locale #lang_name {
	margin-right: 5px; 
	height: 40px;
	display: inline-block;	
}

#footer #current_locale img {
	margin-bottom: -2px;
}




/* Cover styles */
.cover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
/* 	background-color: rgb(128, 128, 128); */
	background-image: url('/images/backdrop_white.png');
	background-color: rgba(255, 255, 255, 0.5);
}



/* Styles that give the fly over its unique design */
.overlay {
	position: fixed; 
	width: 80%;
	min-width: 300px;
	left: 10%;
	height: 80%;
	top: 10%;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	display: none;
}

.overlay .title {
	padding-left: 20px;
	padding-bottom: 15px;
	border-bottom: 3px solid #EBEBEB;	
}

.overlay .description {	
	overflow-y: auto;
}

.overlay h1 {
	font-weight: normal;
	font-size: large;
	margin-bottom: 0;
	border-right: 1px solid #EBEBEB;
/* 	background-color: red; */
	padding-top: 40px;
	margin-top: 0;
	display: inline-block;
	padding-right: 20px;
}

.overlay .title #close {
	margin-top: 10px;
	margin-right: 10px;
	float: right;
	cursor: pointer;
}

.overlay .title #close img {
	height: 12px;
}

#notification {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	padding: 10px;
	background-color: white;
	border-bottom: 3px solid white;
	margin-top: -23px;
	overflow: hidden;
}

#notification.warning {
	border-bottom-color: rgb(84, 33, 33);
}

#notification.message {
	border-bottom-color: rgb(73, 119, 38);
}

/* Ajax wait screen */
#ajax_screen {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 40px;
/* 	background-image: url('/images/backdrop_white.png'); */
/* 	background-color: rgba(255, 255, 255, 0.5); */
	background-color: rgba(255, 255, 255, 0);
}

#ajax_logo {
	position: fixed;
	top: 50%;
	left: 50%;
	display: inline-block;
	border-radius: 2px;
	-moz-border-radius: 2px;
	padding: 10px;
	background-color: rgb(255, 255, 255);
	margin-left: -32px;
	margin-top: -32px;
}