@charset "UTF-8";
body {
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	background: #dd0015;
	background-image:url(images/background.jpg);
	background-attachment:fixed;
	background-repeat:repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding-top: 20px;
	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;
}

img {
	border:none;
	}

.oneColFixCtrHdr #container {
	width: 775px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background-image:url(images/header.gif);
	background-position:right;
	background-repeat:no-repeat;
	height:120px;
	width:775px; 
	  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.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 {
	border-color:#c10116;
	padding:1px 20px 1px 20px;
	border-width:8px;
	border-right-style:solid;
	border-left-style:solid;
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	margin:0 auto;
	width:775px;
	background-image:url(images/footerback.gif);
	background-repeat:no-repeat;
	height:37px;
}
.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 30px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFFFFF;
	
}
.oneColFixCtrHdr #boxhead {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	width:775px;
	height:31px;
	background-image:url(images/boxtop.gif);
	background-repeat:no-repeat;
}
.oneColFixCtrHdr #boxfoot {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding-top:0px;
	width:775px;
	height:29px;
	background-image:url(images/boxbottom.gif);
	background-repeat:no-repeat;
}