@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;
	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: #562F32;
	background-color: #104864;
	font-family: Arial, Helvetica, sans-serif;
}
.oneColFixCtrHdr #container {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	height: auto;
	background-color: #333333;
}
.oneColFixCtrHdr #header {
	padding: 10px 10px 0px 0px;
	background-color: #333333;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #ffffff;
	height: auto;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #CCCCCC;
}
.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: 20px 20; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #CCCCCC;
}
.style2 {color: #FFFFFF}
.style3 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
}
a:link {
	color: #562F32;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #104864;
}
a:active {
	text-decoration: none;
}
