@charset "UTF-8";
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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #3C9134;
}
.oneColFixCtrHdr #container {
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #006600;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
	background-color: #FFFFFF;
}
.oneColFixCtrHdr #header {
	background-color: #EEEEEE;
	background-image: url(../images/banner2.jpg);
	background-repeat: no-repeat;
	height: 130px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.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 #mainContent {
	clear: both;
	width: 95%;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
#mainContent #ltDiv {
	float: left;
	width: 32%;
	margin-right: 10px;
}
#mainContent #cntDiv {
	float: left;
	width: 33%;
}
#mainContent #rtDiv {
	float: right;
	width: 32%;
}
.oneColFixCtrHdr #footer {
	background:#DDDDDD;
	clear: both;
	width: 930px%;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006600;
	margin: auto;
}
.oneColFixCtrHdr #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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#container #footer a:link {
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
#header #volDiv {
	padding-left: 700px;
	font-size: 200%;
	padding-top: 30px;
	line-height: 1.5em;
}
#header #volDiv a:link {
	color: #003300;
	text-decoration: none;
}
#header #volDiv a:visited {
	color: #003300;
	text-decoration: none;
}
#header #volDiv a:hover {
	color: #990000;
	text-decoration: none;
}
#header #menuDiv {
	padding-top: 12px;
}
#container #footer a:visited {
	font-size: 10px;
	color: #666666;
	text-decoration: none;
}
#container #footer a:hover {
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: none;
}

