@charset "UTF-8";
body  {
	font: Arial, Helvetica, sans-serif;
	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: #5D5D5D;
	background-image: url(body_bg.gif);
	background-repeat: repeat-x;
}
.twoColFixLtHdr #container {
	width: 800px;  /* 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: 0 auto;
	background-image: url(container_bg_index.gif);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	padding: 0;  /* 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. */
	background-color: #6D6E72;
	width: 800px;
	height: 73px;
} 
.twoColFixLtHdr #flasharea {
	background-color: #666666;
	border-top: solid #fff 1px;
	border-bottom: solid #fff 1px;
	
} 
.twoColFixLtHdr #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 */
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 0px 25px;
	font-size: 12px;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #sidebar1 a{
	font-size: 12px;
	line-height: 14px;
	color: #074E7B;
	text-decoration: none;
	font-style: italic;
}
.twoColFixLtHdr #sidebar1 a:hover{
	font-size: 12px;
	color: #CCCCCC;
}
.twoColFixLtHdr #sidebar1 h3{
	font-size: 12px;
	line-height: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 226px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 25px 0px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
	line-height: 16px;
	font-family: Arial, Helvetica, sans-serif;
} 
.twoColFixLtHdr #mainContent h1{
	font-size: 12px;
	line-height: 16px;
	color: #00355A;
	font-family: Arial, Helvetica, sans-serif;
} 
.twoColFixLtHdr #mainContent a{
	color: #004E7B;
	text-decoration: none;
	font-style: italic;
	
} 
.twoColFixLtHdr #mainContent a:hover{
	color: #CCCCCC;
	
} 
.twoColFixLtHdr #footer {
	background:#00355A;
	width: 800px;
	clear: left;
	font-family: Arial, Helvetica, sans-serif;
} 
.twoColFixLtHdr #footer a{
	color: #CCCCCC;
	text-decoration: none;

} 
.twoColFixLtHdr #footer a:hover{
	color: #FFFFFF;

} 
.twoColFixLtHdr #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: 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #CCCCCC;
	font-size: 10px;
	line-height: 16px;
}

#top_fade {
	background-color: #FFFFFF;
	width: 800px;
	height: 20px;
}
