@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;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 75%;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* 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 solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.oneColFixCtrHdr #header {
	padding: 0;
	background-image: url(images/header_bg.png);
	background-repeat: repeat-x;
	margin: 0px;
	width: 1000px;
	height: 153px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFF;
	top: auto;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: left;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.oneColFixCtrHdr #mainContent {
	background-color: #FFFFFF;
	background-image: url(images/main_content_pic.jpg);
	background-repeat: no-repeat;
	position: relative;
	padding-top: 300px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #850C00;
	margin: 0px;
	height: 600px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: left;
	font-size: 75%;
	padding-right: 10px;
}
.oneColFixCtrHdr #footer {
	padding: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url(images/footer_bg.png);
	background-repeat: repeat-x;
	margin: 0px;
	height: 50px;
	width: 1000px;
	font-size: 12px;
	color: #FFF;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
