@charset "UTF-8";

/**
 *Notes
 *
 *07-09-13 .formBtn Color change from
 *background-color: #94B0BC; to background-color: #1F5494;
 * 
 *
 */
 
.error {
	color: red;
	font-size: 3ex;
	font-weight: bold;
	margin: 1em;
	text-align: center;
}

.formBtn {
	color: #FFFFFF;
	background-color: #1F5494;
	border-radius: 1ex;
	padding: 6px 8px 6px 8px;
	border: 1px solid #21465C;
	font-size: 100%;
	font-weight: bold;
}

.notice {
	color: blue;
}

#logo {
	position: relative;
	top: -80px;
	left: 10px;
	z-index: 1;
}
.oneColFixCtrHdr #container {
	width: 800px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #container #header #lowerHeader {
	background-color: #FCFCFC;
	height: 135px;
	width: auto;
	bottom: 135px;
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: -0;
}

.oneColFixCtrHdr #container #mainContent ul li {
	padding-bottom: 8px;
}

.oneColFixCtrHdr #footer {
	background-color: #13B5E9;
	height: 40px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	position: relative;
	top: -21px;
}

.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
	font-size: 80%;
	padding-top: 5px;
	color: white;
}

.oneColFixCtrHdr #header {
	height: 40px;
	background-color: #13B5E9;
	margin-top: 100px;
}

.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.oneColFixCtrHdr #locale_links {
	padding-top: 1ex;
	padding-right: 1em;
	text-align: right;
}

.oneColFixCtrHdr #mainContent {
	background-color: #FFFFFF;
	padding-top: 130px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-top: 0px;
}

.upload_cover { /* partially transparant HTML element used to cover the page */
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: gray;
	opacity: 0.5; /* Standard: FF > 1.5, Opera, Safari */
	filter: alpha(opacity=50); /* IE < 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-moz-opacity: 0.5; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.5; /* Safari 1.x */
	z-index: 99;
}

.upload_notice { /* displayed in front of the cover */
	display: none;
	position: absolute;
	background-color: white;
	border: 2px solid gray;
	z-index: 100;
	padding: 4px;
}


body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #1F5494;
}

img.button {
	vertical-align: middle;
}

input.text_box {
	border: 1px solid #AAAAAA;
	padding: 0;
	background-color: #FFFFFF
}

table.form {
	margin: auto auto auto auto;
	border-collapse: collapse;
	border-color: #CACACA;
	width: 430px;
}

td {
	padding: 4px;
}

tr.even {
	background-color: #FCFCFC;
}

tr.odd {
	background-color: #FFFFFF;
}


#button {
	margin-left: 250px;
}

