@charset "utf-8";
body {
	background: #666666;
	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;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.oneColCtrHdr #container {
	width: 800px;
	background: #FFFFFF;
	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. */
}
.oneColCtrHdr #header {
	background-color: #00284A;
} 
.oneColCtrHdr #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 */
}
.oneColCtrHdr #mainContent {
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	color: #222222;
}
.oneColCtrHdr #mainContent p {
	text-align:left;
}
.oneColCtrHdr #footer {
	padding: 0 30px;
	clear: both;	/* prevents content from slipping by on either side of the element */
	background-color: #FFFFFF;
} 
.oneColCtrHdr #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: 20px 0 50px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #355A88;
	font-size: 80%;
}
.oneColCtrHdr #slogan {
	float: right;
	width:500px;
	height:109px;
	background-image:url(../images/head_image.jpg);
	overflow: hidden;
}
.oneColCtrHdr #slogan p {
	margin:0;
	padding: 65px 10px 0 10px;
	color: #17273B;
}
.oneColCtrHdr #companylogo {
	width: 300px;
	margin: 0;
	padding: 10px 0;
	text-align:center;
}
.oneColCtrHdr #navigation {
	margin: 0;
	padding: 5px 0;
	height: 40px;
	overflow: hidden;
	clear:both;
	background-image:url(../images/nav_back.gif);
	background-repeat:repeat-x;
	color: #FFFFFF;
	font-size: 80%;
}
.oneColCtrHdr #navigation a {
	background-color: transparent;
	color: #FFFFFF;
	text-decoration:none;
	height: 20px;
	padding: 5px 10px 4px 10px;
	border-right: solid 1px #8A9FBA;
}
.oneColCtrHdr #navigation a.current {
	text-decoration:underline;
}
.oneColCtrHdr #navigation a:hover {
	background-color: #17273B;
}
.oneColCtrHdr #readmore {
	margin: 18px 0 0 0;
	padding: 6px 25px 6px 0;
	float: right;
	width:235px;
	background-image:url(../images/footer_arrow.gif);
	text-align:right;
	background-repeat: no-repeat;
	font-size: 12px;
}
.oneColCtrHdr #readmore a {
	background-color: transparent;
	color: #FFFFFF;
	font-weight:bold;
	text-decoration:none;
}
.oneColCtrHdr h1,h2,h3,h4,h5,h6 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

