@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #8C6842;
	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;
}
#navbar {
	background-color: #8C6842;
	margin: 0px;
	padding: 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
}
#navbar ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#navbar ul li {
	list-style-type: none;
	display: inline;
	margin-right: 8px;
	margin-left: 8px;
}
#navbar a:link {
	text-decoration: none;
	color: #000;
}
#navbar a:visited {
	color: #000;
	text-decoration: none;
}
#navbar a:hover {
	color: #DEDBD6;
	text-decoration: none;
}
.oneColFixCtrHdr #header {
	background-color: #8C6842;
	padding: 0px;
	margin-right: 20px;
}
.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 #container {
	width: 866px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #8C6842;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 800px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.oneColFixCtrHdr #mainContent {
	background-color: #8C6842;
	margin-top: 100px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
