@charset "utf-8";
body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #cccccc;
	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 */
	
}
.oneColFixCtr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* min-height: 800px; */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border:#0264b0 1px solid;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #masthead {
	height:110px;
	border-bottom:1px solid #FFFFFF;
	background:#0264b0;
	color:#FFFFFF;
	padding:10px 20px 0 10px;
}
.oneColFixCtr #masthead h1{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:280%;
	/*font-weight:bold;*/
	padding:5px;
	margin:0;
	border:#FFFFFF 1px solid;
	width:250px;
}
.oneColFixCtr #container2 {
	
	height:auto;
	display:block;
	position:relative;
	padding: 30px;
}
.oneColFixCtr #mainContent {
	/*position:relative;
	top:30px;
	left:30px;
	width:800px;*/
	background-color: #eeeeee; 
	
	border:#0264b0 1px solid;
	/*-moz-border-radius: 30px;
	border-radius: 30px;
	-webkit-border-radius: 30px;*/
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtr #mainContent h2{
	color:#0264b0;
	}
.oneColFixCtr #mainContent img{
	margin 5px;
	padding 5px;
	}
.oneColFixCtr #nav {
padding: 0;
margin: 0;
list-style: none;
background-color:#FFFFFF;
height:20px;
}
.oneColFixCtr #nav ul {
padding: 0;
margin: 0;
list-style: none;
background-color:#330e2f;
}
.oneColFixCtr #nav li {
/*float the main list items*/
float: left;
position: relative;
width: 8em;
border-bottom: 1px solid #ffffff;
background-color: #330e2f;
color: #FFFFFF;
font-size: 100%;
margin-right: 1em;
}
.oneColFixCtr #nav a:link, .oneColFixCtr #nav a:visited {
display: block;
text-decoration: none;
padding-left: 1em;
color: #FFFFFF;
}
* html .oneColFixCtr #nav a {
width: 100%;
}

.oneColFixCtr #nav li > ul {
	top:auto;
	left:auto;
}
.oneColFixCtr #nav li:hover { 
	display: block; 
	width:8em;
	background-color: #FF00FF;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	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;
}
.oneColFixCtr #siteInfo{
	clear: both;
	border: 1px solid #cccccc;
	font-size: 75%;
	color: #0264b0;
	padding: 10px 10px 10px 10px;
	text-align:center;
}