@charset "UTF-8";


body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
/* CSS Document */

* html #footer {
 height:1px;
}
h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	text-transform: uppercase;
	color: #442c00;
}

h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	color: #9a6730;
}
#container {
	width: 960px;
	background: #fdf7e6;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #ffffff;
	text-align: left;
}
#header {
	background: #DDDDDD;
	padding: 0;  /* 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: 100px;
	border-bottom: 1px solid #ffffff;
}
#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 */
}
#navbar {
	background-color: #442c00;
	height: 24px;
	text-decoration: none;
}

#navbar ul {
display: inline;
list-style-type: none;
	font-size: .9em;
	
}

#navbar ul li {
float: left;	
	
}
#navbar ul li a {
	padding: 4px 10px;
	display: block;
	background-color: #442c00;
	text-decoration: none;
	color: #ffffff;
	font-size: 12px;
}

#navbar ul li a:hover {
	background-color: #9a6730;
	display: block;
}
#navbar ul li a:active {
	background-color: #9a6730;
	display: block;
}
#mainContent {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	height: 260px;
}
#mainintro {
	background-color: #ffffff;
}
#maincols {
	padding: 20px;
}
#leftcol {
	width: 460px;
	background-color: #fdf7e6;
	float: left;
}
#rightcol {
	width: 460px;
	background-color: #fdf7e6;
	float: right;
}
#mainContent2 {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer {
	background:#DDDDDD;
	height: 20px;
	clear: both;
}
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 0.6em;
	padding: 4px;
	color: #333;
}
.left {
	float: left;
}
.namelist {
	line-height: 1.6em;
	font-size: 0.7em;
}
.intro {
	line-height: 1.6em;
	font-size: 0.8em;
	font-family: Verdana, Geneva, sans-serif;
}
.name {
	font-weight: bold;
	color: #442c00;
}
.imgbrdr {
	padding-right: 20px;
}
/* BEGIN style9 */
 #navcontainer
{
	padding: 0;
	height: 18px;
	background-color: #432C07;
}

#navcontainer ul
{
	border: 0;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}

#navcontainer ul li
{
	display: block;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;
}

#navcontainer ul li a
{
	background: #432C07;
	width: 100px;
	height: 18px;
	padding: 0;
	margin: 0 0 10px 0;
	color: #ffffff;
	text-decoration: none;
	display: block;
	text-align: center;
	font: normal 10px/18px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}

#navcontainer ul li a:hover
{
	color: #FFF;
	background: #9a6730;
}

#navcontainer a:active
{
	background: #9a6730;
	color: #fff;
}

#navcontainer li#active a
{
	background: #9a6730;
	color: #fff;
}

