@charset "utf-8";
/* CSS Document */

body  {
	font: 1em Arial, Verdana, Helvetica, sans-serif;
	background: #ccc url(img/body_bg.jpg) center top repeat-x;
	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;
}
#container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
 	background: url(img/header_bg.jpg) center top no-repeat;
	padding: 0 20px;  /* 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. */
	height: 270px;
} 
#navlinks {
	margin: 0;
	padding: 10px 0;
	text-align: center;
}
#navlinks a { text-decoration: none; color: #666600; }
#navlinks a:hover { border-bottom: 2px solid #cc6600; }
#navlinks li {
	font: 16px Verdana, Arial, Helvetica, sans-serif;	
	font-weight: bold;
	display: inline;
	list-style: none;
	margin-right: 8px;
	border-right: 1px solid #999;
	padding-right: 12px;
}
#navlinks li.last {
	margin-right:0;
	border-right: 0;
}
#mainContent { 
	background: url(img/content_bg.jpg) repeat-y;
	margin: 0 20px; 
	padding: 0 20px 40px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height:400px;
} 
#mainContent p {
	line-height: 1.4;	
	margin-top: 0;
}
#mainContent h1 {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
}

#footer { 
	margin: 0;
	padding: 40px 0px 10px 100px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(img/footer_bg.jpg) no-repeat bottom;
	font: 12px Arial, Helvetica, sans-serif;
	line-height: 16px;
	color: #666;
	text-align: left;
} 
#footer p { margin: 0; padding: 0; }
#footer li { list-style: none; display: inline; padding-right: 12px;}
#footer a { text-decoration: none; color: #666600; }
#footer a:hover { border-bottom: 2px solid #cc6600; }

#footer #nav li {
	display: inline;
	list-style: none;
	margin-right: 8px;
	border-right: 1px solid #999;
	padding-right: 11px;
}
#footer #nav li.last {
	margin-right:0;
	border-right: 0;
}


.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: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}
.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;
}



