@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: left;
	background-color: #CCC;
}	
.oneColFixCtrHdr #container {
	width: 799px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #900;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
}
.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	height: 120px;
	overflow: visible;
	background-color: #900;
	background-image: url(../images/header1.png);
	background-repeat: no-repeat;
	position: relative;
}
.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 #header ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float:left;
	vertical-align: inherit;
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 575px;
	height: 33px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.oneColFixCtrHdr #header li {
	float:left;
	vertical-align: bottom;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.oneColFixCtrHdr #header li a {
	display:block;
	padding: .2em .5em;
	text-decoration:none;
	margin-right: 0.5em;
	color: #FFF;
	vertical-align: bottom;
}
.oneColFixCtrHdr #header li a:link {
	color: #FFF;
}
.oneColFixCtrHdr #header li a:visited {
	color: #CCC;
}
.oneColFixCtrHdr #header li a:hover {
	color: #000;
}
.oneColFixCtrHdr #mainContent {
	background: #FFF;
	margin-right: 1.5em;
	margin-left: 1.5em;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.25em;
	color: #900;
	padding-right: 30px;
	padding-left: 30px;
}
.oneColFixCtrHdr #mainContent h1 {
	font-size: 1.75em;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: lighter;
	color: #900;
	text-align: center;
}
.oneColFixCtrHdr #mainContent h2 {
	font-size: 1.5em;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: lighter;
	color: #000;
}
.oneColFixCtrHdr #mainContent table tr th p {
	text-align: left;
}
.oneColFixCtrHdr #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	line-height: 1.25em;
	color: #000;
	text-align: center;
	font-weight: lighter;
}
.oneColFixCtrHdr #footer {
	padding: 0 30px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#900;
}
.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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 1.25em;
	color: #FFF;
	text-decoration: none;
	text-align: right;
}
.oneColFixCtrHdr #footer a:link {
	color: #FFF;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:visited {
	color: #CCC;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:hover {
	color: #000;
}
.oneColFixCtrHdr #wrapper #container #mainContent h1 {
	text-align: right;
}
