@charset "utf-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	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: #FFF;
}
#container {
	width: 800px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #C3C3A1;
	margin: 0 auto;
} 
#logo{
	background-color:#304A63;
	color:#FFF;
	font-size:140%;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bold;
	height: 55px;
	text-align: center;
}

#topNav{
	background-color:#000;
	color:#fff;
	text-align:center;
	width: 100%;
}
	#topNav ul{
	padding:0 5px 5px 0;
	margin: 0;
	}

	#topNav ul li{
	display:inline;
	list-style:none;
	padding-right:10px;
		
	}
	#topNav a{
		text-decoration:none;
	}
	#topNav a:link{
	color:#FFF;
	}
	#topNav a:visited{
		color:#fff;
	}
	#topNav a:hover{
		color:#9FF;
	}
	#topNav a:active{
		color:#9FF;
	}
	
#header {
	color: #FFF;
	clear: left;
} 
	#header img{
		border:none;
	}
	
#contentWrapper{
	clear: left;
	margin-top: 0px;
	padding-top: 0px;


}
h1{
	font-family:Verdana, Geneva, sans-serif;
	font-size:140%;
	border-bottom: 1px solid #333;
	}
h2{
		font-size:120%;
	}
	#boxLeft {
	float: left;
	width: 370px;
	padding: 10px 15px;
	background-color:#99b4cd;
	border-right: solid 1px #333;
	}

	#boxRight {
	float: left;
	width: 350px;
	padding: 10px 0 10px 20px;
	background-color:#c3c3a1;
	}
	#boxWide{
	padding: 10px 20px;
	width: 565px;
	border:1px solid #626231;
	background-color: #E8E8DB;
	border-top: none;
	margin: 0 auto;
	}
	
		#boxWide a:link{
		color:#039;
		}
		#boxWide a:visited{
		color:#039;
		}
		#boxWide a:hover{
		color:#960;
		}
		#boxWide a:active{
		color:#960;
		}
	
#footer {
	text-align: center;
	clear: both;
	font-size: 85%;
	background-color: #304A63;
} 
	#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0;
	color: #FFF;
	}
	#footer a{
		color:#fff;
	}
	#footer a:hover{
		color:#CFF;
	}

/*floats*/
.imgFloatLeft{
	float:left;
	padding:0 10px 5px 0;
}

.imgFloatRight{
	float:right;
	padding:0 0 5px 5px;
}
.clearIt{
	clear:both;
}
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.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;
}
/*borders*/
.divider{
	border-top:1px dotted #333;
	margin:10px 0;
}
.noBorder{
	border:none;
}
