body {
	background-image:url(images/background.gif);
	background-repeat:repeat-y;
	background-position:center top;
	font-family: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: #000000;
	background-attachment: fixed;
	background-color: #b19b71;
}

.twoColFixLtHdr #container { 
width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: none;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 0px solid #000000;
text-align: left; /* this overrides the text-align: center on the body element. */
}
 

.twoColFixLtHdr #header{
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #ffffff; /*bottom horizontal line that runs beneath tabs*/
	background: #660000;
	padding: 0 0 0 0;
	margin-bottom:0px;
	}

	#header ul{
	margin-left: 40px;
	padding: 0;
	padding-left: 10px; /*offset of tabs relative to browser left edge*/
	font-size:12px;
	font-weight:bold;
	list-style-type: none;	
	text-align:center;
	background: #660000;
	}

	#header li{
	display: inline;
	margin: 0;
	background: #660000;
	}

	#header li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;	
	padding: 7px 8px; /*padding inside each tab*/
	border-right: 1px solid #660000; /*right divider between tabs*/
	color: white;
	background: #660000; /*background of tabs (default state)*/
	}

	#header li a:visited{
	color: white;
	background: #660000;
	}

	#header li a:hover{ 
	background: #ffffff;
	color:#660000;
	}
	
	#header li a.current {
	background: #ffffff;
	color:#660000;
	}

/*top nav table*/

	.topnav {
	height: 29px;
	padding: 0;
	background: #660000; /*background of tabs (default state)*/
	color: white;
	text-decoration: none;
	font-size:12px;
	font-weight:bold;
	list-style-type: none;	
	text-align:center;
	}

	#header td a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;	
	padding: 5px 5px; /*padding inside each tab*/
	color: white;
	background: #660000; /*background of tabs (default state)*/
	text-align:center;
	}

	#header td a:visited{
	color: white;
	background: #660000;
	}

	#header td a:hover{ 
	background: #ffffff;
	color:#660000;
	}
	
	
.twoColFixLtHdr #mainContent { 
margin: 0 0 0 0; /* 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: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
	#mainContent H1 {
	font-size:18px;
	color: #660000;
	font-weight:bold;
	margin-bottom:0px;
	margin-top: 0px;
	} 

	#mainContent H2 {
	font-size:12px;
	color: #660000;
	font-weight:bold;
	margin-top:0px;
	} 

	#mainContent p {
	font-size:11px;
	color: #000000;
	font-weight:normal;
	line-height:14px;
	}
	
	#mainContent h3 {
	font-size:11px;
	line-height:15px;
	color:#333333;
	margin-top:0px;
	}

	#mainContent h6 {
	font-size:11px;
	line-height:15px;
	color:#333333;
	margin-top:2px;
	margin-bottom:2px;
	margin-left:5PX;
	}
	
	#mainContent h4 {
	font-size:14px;
	color:#660000;
	font-weight:bold;
	margin-bottom:10px;
	margin-top:0px;
	}
	
	#mainContent h5 {
	font-size:11px;
	line-height:15px;
	color:#660000;
	margin-top:0px;
	font-weight:normal;
	}

	#mainContent  a {
	color:#333333;
	text-decoration:none;
	}

	#mainContent  a.visited {
	color:#333333;
	text-decoration:none;
	}
	
	#mainContent ul li {
	color:#660000;
	font-size:13px;
	line-height:15px;
	margin-bottom:5px;
	}
	

	
	
.twoColFixLtHdr #footer { 
padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
background:#ffffff; 
} 
	#footer p {
	margin: 0;
	color:#000000;
	font-size:9px;
	}
	
	#footer h1 {
	margin: 0;
	color:#660000;
	font-size:9px;
	}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
