@charset "UTF-8";
body {
	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: "Times New Roman", Times, serif;
	font-size: 100%;
	background-color: #666666;
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	margin: 0px;
	background-position: left top;
}
.oneColFixCtrHdr #container {
	width: 880px;
	margin: 0 auto;
	text-align: left;
	background-color: #FFFFCC;
	border: thin solid #000033;
}
.oneColFixCtrHdr #header {
	background-color: #000033;
	height: 168px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.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 {
	background-color: #F7E3B4;
	border-top-width: medium;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000033;
	background-image: url(images/wvc.gif);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}
.oneColFixCtrHdr #footer {
	padding: 0;
	background-color: #000B2F;
	height: 55px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

