@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #EEE;
	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 */
	background-position: centered;
	color: #000000;
}

.oneColFixCtrHdr #baseContainer {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border:0px;
	border-style:none;
	text-align: center; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #contentContainer {
	width: 800px;
	min-width: 800px;
	max-width: 800px;
	overflow: auto;
	position: absolute;
	top: 2px;
	bottom: 31px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-style:none;
	padding: 0;
	border:0px;
	z-index: 1;
}

.oneColFixCtrHdr #header {
	background-image: url(../img/design/header01.jpg);
	background-repeat: no-repeat;
/*	position: absolute; */
	top: 0;
	height: 90px;
	overflow: hidden;
	z-index: 2;
}

.oneColFixCtrHdr #footer {
	position: absolute;
	bottom: 0;
	width: 800px;
	height: 31px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-style:none;
	overflow: hidden;
	background-image: url(../img/design/footer01.jpg);
	z-index: 2;
}

.oneColFixCtrHdr #footer p {
	padding-top:3px;
	padding-right:40px;
	text-align:right;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	font-family:'Comic Sans', 'Comic Sans MS', cursive;
	font-weight: bold;
}

