@charset "utf-8";
body {
	background: #000000;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oneColFixCtrHdr #container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}
.oneColFixCtrHdr #flashnav {
	position: absolute;
	width: 750px;
	height: 350px;
	background: none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	z-index: 1;
}
.oneColFixCtrHdr #header {
	background: #DDDDDD; 
	
}
.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 {
	padding: 10px 20px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000000;
	background-color: #000000;
	width: 710px;
	background-image: url(images/panel_body.gif);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
}

.oneColFixCtrHdr #mainContent h1 {
	color: #B87333;
	font-weight: bold;
	font-size: 14px;
}
.oneColFixCtrHdr #mainContent h2 {
	color: #A0A0A4;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 0;
}
.oneColFixCtrHdr #mainContent h3 {
	font-size: smaller;
	color: #808080;
	font-style: italic;
	text-align: center;
}
.oneColFixCtrHdr #mainContent p {
	margin-top: 0;
}
.oneColFixCtrHdr #mainContent a:link {
	color: #B87333;
	text-decoration: none;
}
.oneColFixCtrHdr #mainContent a:visited {
	color: #a0a0a4;
	text-decoration: none;
}
.oneColFixCtrHdr #mainContent a:hover {
	color: #DA8A67;
	text-decoration: underline;
}
.oneColFixCtrHdr #mainContent a:active {
	color: #a0a0a4;
	text-decoration: underline;
}

.oneColFixCtrHdr #footer {
	background:#000000;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #000000;
	margin-top: 0;
	font-size: 11px;
	color: #808080;
	text-align: center;
}
.oneColFixCtrHdr #footer a:link {
	color: #B87333;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:visited {
	color: #808080;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:hover {
	color: #DA8A67;
	text-decoration: underline;
}
.oneColFixCtrHdr #footer a:active {
	color: #a0a0a4;
	text-decoration: underline;
}
