@charset "utf-8";
body {
	background: #666666;
	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 */
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.oneColFixCtrHdr #header {
	background-color: #CE1000;
	background-image: url(../images/scarlet.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}

.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 */
	color: #FFF;
	font-weight: lighter;
	font-size: 30pt;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	clear: both;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-right: 20px;
}
.oneColFixCtrHdr #footer {
	padding: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	clear: both;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.8em;
	text-align: center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#tabs {
	height: 30px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-right: 10px;
	background-image: url(../images/topflash.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
}
#tabs ul {
	list-style: none;
	font-size: 0.8em;
	width: 100%;
	height: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0;
	padding: 0;
}
#tabs li {
	float: left;
	border-bottom-width: 0;
	margin: 0;
	border-right-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FFF;
	font-size: 1em;
	font-weight: normal;
	height: 100%;
	width: auto;
}


#tabs a {
	text-decoration: none;
	display: block;
	color: #FFF;
	text-align: center;
	padding-top: 0.24em;
	padding-right: 0.5em;
	padding-bottom: 0.24em;
	padding-left: 0.5em;
	font-weight: bolder;
} 
#tabs a:hover{
	background-color:#FFF;
	color: #D40000;
}
