/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #333333;
	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-color: #333333;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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: #DDDDDD;
	padding: 0 0px 0 0px;
}
h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	font-weight:bold;
	color:#71764E;
	padding-top:14px;
}
h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#484B32;
	padding-top:10px;
}
h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#71764E;
	padding-top:10px;
}
h4 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#71764E;
	padding-top:0px;
	padding-left:20px;
	line-height: .1;
}
#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:26px;
	font-weight:bold;
	color:#6D7A45;
	text-align:center;
}
#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: 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:22px;
	font-weight:bold;
	color:#6E774A;
	text-align:center;
}
#mainContent {
	padding: 0 40px 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #333333;
	line-height:1.4;
	background-image: url(../css/background.footer.jpg);
}
#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 */
	text-align:center;
}

#menu {
	background-color: #000000;
	width: 701px;
	margin: auto;
	margin-left: 41px;

}
#menu selected {
	background-color: #79876D;
}
#menu div.top {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	padding-top: 1px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0px;
	width: 100%;
}
#menu div.section {
	position: absolute;
	display: inline;
	z-index: -1;
}
#menu div.box {
	background-color: #505050;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 6px;
	padding-right: 10px;
	border-color: #666666;
	border-width: 1px;
	border-style: none none solid none;
	position: relative;
	visibility: hidden;
	width: 200px;
}
#menu a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
}
#menu a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #feed67;
	text-decoration: none;
	white-space: nowrap;
}
.PageTitle {
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	color:#71764E;
	padding-top:15px;
}
a {
	text-decoration: none;
	color:#408480;
}
a:hover {
	text-decoration: underline;
	color:#3E847C;
}
a:active {
	text-decoration: none;
}
