@charset "utf-8";
* {
	margin:0;
	padding:0;
}
body {
	background: #669934;
	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: #FFF;
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
	letter-spacing: 1px;
}
a {
	color:#F93;
	text-decoration:none;
}
a:hover {
	color:#CC0;
}
.oneColFixCtrHdr #container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #663334;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	padding: 15px;
	background-color: #663;
	background-image: url(back.png);
	background-repeat: no-repeat;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;

}
.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 #footer {
	background:#669934;
	margin-top: 10px;
	margin-bottom: 10px;
}
.oneColFixCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
p {
	text-align: justify;
	line-height: 16px;
	margin: 10px 0px 10px 10px;
}
h1, h2 {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h1 { color:#FC6; font-size:30px; }
h2 { color:#FF9; }
#mainContent {
	margin-top: 20px;
}
#mainContent ul {
	list-style:none;
	width:750px;
	padding:10px 15px;
	margin:10px 0px;
	float:left;
	clear:both;
	border-top:1px solid #E5CF8C;
	border-bottom:1px solid #E5CF8C;
}
#mainContent ul li {
	float:left;
	font-weight:bold;
	border-right:1px solid #E5CF8C;
	padding:0px 13px;
}
#mainContent ul li#end { border-right:0px; }
