@charset "utf-8";
html {
	overflow: -moz-scrollbars-vertical;
}
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;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #5F5F67;
	background-image: url(../pics/bg_body.jpg);
	line-height: 18px;
}
body, td, input, textarea, .form {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	height: 114px;
	width: 950px;
	background-color: #181039;
	color: #FFF;
	background-image: url(../pics/bg_header.jpg);
	background-repeat: no-repeat;
}
#header .textContent {
	display: none;
}
#navigation {
	height: 30px;
	width: 950px;
	background-image: url(../pics/bg_navigation.jpg);
	background-repeat: no-repeat;
}
#navigation img {
	border: none;
}
#navigation a {
	border: none;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 0 0 20px;
	text-align: left;
}

#mainContent {
	margin: 0 0 0 300px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px 30px 20px;
	text-align: left;
}

#textNav {
	width: 910px;
	font-size: 10px;
	color: #838A93;
	text-align: center;
	padding: 5px 20px;
}

#footer {
	width: 750px;
	font-size: 10px;
	color: #838A93;
	text-align: center;
	margin-left: 100px;
	margin-right: 100px;
	margin-top: 15px;
	padding: 10px 0;
	line-height: 16px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #A9ADB4;
}

#footer a:link, #footer a:visited, #footer a:active, #textNav a:link, #textNav a:visited, #textNav a:active {
	color: #838A93;
	text-decoration: none;
	padding-bottom: 1px;
	border: none;
}
#footer a:hover, #textNav a:hover {
	color: #000;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: solid 1px #000;
}

#copyright {
	width: 950px;
	color: #CCC;
	font-size: 9px;
	text-align: center;
	margin: 0 auto;
	padding: 5px 0;
}
#copyright a:link, #copyright a:visited, #copyright a:active {
	color: #CCC;
	text-decoration: none;
	padding-bottom: 1px;
	border: none;
}
#copyright a:hover {
	color: #FFF;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: solid 1px #FFF;
}
.selected {
	color: #C00;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}
.marked {
	color: #900;
	font-weight: bold;
}

a:link, a:visited, a:active {
	color: #06C;
	text-decoration: none;
	padding-bottom: 1px;
	/* border: none; */
	border-bottom: solid 1px #06C;
}
a:hover {
	color: #900;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: solid 1px #900;
}
.imgFloatRight {
	float: right;
	margin: 0 0 5px 10px;
}
h3 {
	font-size: 13px;
	font-weight: bold;
}