@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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;
	width: 800px;
	height: auto;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left;
	margin: 0;
	padding: 0px;
	height: auto;
}
.oneColFixCtrHdr #header {
	background-color: #750118;
	background-image: none;
	width: 800px;
	height: 190px;
	margin: 0px;
	padding: 0px;
}
.oneColFixCtrHdr #header h1 {
	margin: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 800px;
	padding: 0px;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	width: auto;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 20px;
	height: auto;
}
.oneColFixCtrHdr #footer {
	width: 800px;
	margin: 0px;
	padding: 0px;
	position: inherit;
	left: inherit;
	top: inherit;
}
.oneColFixCtrHdr #footer p {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	width: 800px;
	padding: 0px;
	background-color: #750118;
}
