@charset "utf-8";
body  {
	margin: 15px 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: #43422E;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
}

a:link, a:visited{
	text-decoration:none;
	font-weight: bold;
	color: #566D52;
}
a:hover {
	text-decoration:underline;
	font-weight: bold;
	color: #5F6800;
}

.fcc #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.fcc #header {
	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. */
	background-image: url(../img/header.gif);
	background-repeat: no-repeat;
	height: 90px;
} 

.fcc #bodyarea {
	margin: 0;
}

.fcc #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.fcc #navbox {
	width: 233px;
	background-image: url(../img/nav-bottom.gif);
	background-repeat: no-repeat;
	background-position: bottom left;
	margin: 0 0 20px 0;
}
.fcc #navbottom {
	width: 233px;
	padding: 0;
	margin: 0;
}	
.fcc #contactbox {
	width: 233px;
	background-image: url(../img/contact-bottom.gif);
	background-repeat: no-repeat;
	background-position: bottom left;
	margin: 0 0 20px 0;
}
.fcc #contactcontent {
	padding: 0 25px 110px 18px;
	font-size: 12px;
}
.fcc #navcontent {
	padding: 0 25px 20px 18px;
	font-size: 12px;
	text-decoration: none;
}
.fcc #sidebox {
	width: 233px;
	padding: 0;
	margin: 0 0 20px 0;
}
.fcc #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(../img/bodylower1.jpg);
	background-position: bottom left;
	background-repeat: no-repeat;
} 

.fcc #bodycontent {
	padding: 0 40px 130px 30px;
	font-size: 80%;
}
.fcc #menucontainer {
	width: 600px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 80%;
} 
.fcc #menuheader {
	margin: 0;
	padding: 0 0 0 0;
} 
.fcc #menunav {
	line-height: 1.5;
	background-image: url(../img/navmenu.gif);
	padding: 10px 20px 0 10px;
	margin: 0;
	height: 70px;
	background-repeat: none;
	font-size: 90%;
}
.fcc #menucontent {
	padding: 0 20px 0 10px;
	font-size: 100%;
	background-image: url(../img/menubody.gif);
	background-position: bottom left;
	background-repeat: no-repeat;
	margin: 0;
}
.style1 {
	font-size: 80%
}
.style2 {
	color: #336633;
	font-weight: bold;
}
.fcc #footer {
	padding: 0 10px 0 20px;
	background-image: url(../img/footer.gif);
	background-repeat: no-repeat;
	height: 110px;
	margin-top: 10px;
} 
.fcc #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 */
	font-size: 70%;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
