@charset "utf-8";
/* Login Structure */
body  {
	font: .75em Arial, Helvetica, sans-serif;
	background: #696959;
	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: #696959;
	line-height:150%;
}

/* Defautl a tags */
a:link {color: #E09800;	text-decoration: underline;}
a:visited {color: #E09800; text-decoration: underline;}
a:hover {color: #64959C; text-decoration: underline;}
a:active {color: #E09800; text-decoration: underline;}

.oneColFixCtrHdr #container {
	width: 968px;  /* 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 */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image:url(../graphics/bg_main.gif);
	
}


.oneColFixCtrHdr #header {
	background-image:url(../graphics/header_main.gif);
	background-repeat:no-repeat;
	height:179px;
}

.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #696959;
	background-image:url(../graphics/footer_main.gif);
	background-repeat:no-repeat;
	height:102px;
}
/* This makes the text left justified in the CS debug area */
.cfdebug {text-align:left;}
