@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffdc;
	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: #333;
}

p	{
	margin: 10px;
}

td	{
	padding: 2px 0 0 10px;
}

a.read-more	{
	font-style: italic;
	font-size: small;
	text-decoration: none;
	color: #333;
}

.img-left	{
	padding: 0 10px 0 0;
}

.img-right	{
	padding: 0 0 0 10px;
}

#container {
	width: 980px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#wrapper {
	float: left;
	width: 978px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border: 1px solid #086B18;
}


#header {
	float: left;
	width: 960px;
	padding: 0 0 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. */
}

#logo	{
	float: left;
	width: 250px;
	height: 150px;
	background: #ffffdc;
	background-image: url(../images/logo.gif);
	background-repeat: no-repeat;
}
#header-main	{
	float: right;
	width: 680px;
	height: 150px;
	background: #086B18;
	padding: 0;
	margin: 0 1px;
}

#header-main 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: 50px 0 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
	font-family: "Times New Roman", Times, serif;
	font-size: 48px;
	font-weight: normal;
	color: #ffffdc;	
}

#header-main h2	{
	font-family: "Arial Narrow",  Arial, Helvetica, sans-serif;
	font-size: 24px;
	text-align: right;
	font-style: italic;
	margin: 0;
	padding: 0 50px;
	color: #ffffdc;
	font-weight: normal;
	
}

#menu-container	{
	float: left;
	width: 978px;
	height: 30px;
	background: #086B18;
	border-top: 1px solid #ffffdc;
}

#menu	{
	float: left;
	width: 978px;
	height: 29px;
}

#menu ul	{
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu ul	{
	list-style: none;
	margin: 0;

}

#menu ul li	{
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-indent: 0;
}



#menu ul li  a:link, 
#menu ul li a:visited {
	display: block;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	height: 29px;
	width: 75px;
	color: #ffffdc;
	text-decoration: none;
	text-align: center;
	margin: 0; 
	float: left;
	font-size: small;
	font-weight: bold;
	border-right: 1px solid #ffffdc;
}

#menu ul li a:hover	{
	text-decoration: underline;
	background-color: #ffffdc;
	color: #086B18;
	height: 24px;
	border-top: 1px solid #086B18;
	border-bottom: 1px solid #086B18;
	padding-top: 4px;
}


#mainContent {
	float: left;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 938px;
	background: #ffffdc;
}

h1	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
	text-align: center;
}

#footer {
	float: left;
	padding: 0 10px; 
	background:#086B18;
	width: 958px;
}
#footer p {
	margin: 0; 
	padding: 10px 0; 
	color: #fff;
	font-weight: bold;
	font-size: small;
	text-align: center;
}

a:link, a:visited	{
	text-decoration: none;
	font-weight: bold;
	color: #333;
}

a:hover		{
	text-decoration: underline;
}


