@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: small;
	background: #28181C;
	margin: 27 0 0 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: #FFFFFF;
}
.oneColFixCtrHdr #container {
	width: 757px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #3D2B22;
	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. */
}
html>body #container {
	width: 757px
}
.oneColFixCtrHdr #header {
	background-image:url(../images/headerbg.gif);
	height: 120px;
	text-align: right;
	vertical-align: super;
	letter-spacing: 2px;
	font-size:11.5px;
}
.oneColFixCtrHdr #logoheader {
	position: relative;
	top: 0;
	left: 0;
	height: 79px;
	padding: 0 25px;
	/*background: #3D1908;*/
}
#logobox {
	position:absolute;
	width:220px;
	height:73px;
	z-index:2;
}
.oneColFixCtrHdr #logoheader p {
	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: 55px 10px 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.submenu p {
	text-align:right;
	padding: -50px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #header a{
	text-decoration: none;
	color:#FFFFFF;
}
.oneColFixCtrHdr #header a:hover {
	text-decoration: underline;
}
.oneColFixCtrHdr #mainContent {
	padding: 10px 10px 10 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #3D2B22;
	color:#FFFFFF;
}
.underline {
text-decoration:underline;
}
.underline a{
text-decoration:underline;
}	

