@charset "UTF-8";
body {
	font: 95% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF url(images/gradient.jpg) repeat-x;
	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: #3F2500;
}
.oneColFixCtrHdr #container {
	position:absolute;
	top: 136px;
	left: 50px;
	width: 800px;
	/*margin: 0 auto;*/ /* the auto margins (in conjunction with a width) center the page */
/*	border: 1px solid #24420E;
*/	text-align: left; /* this overrides the text-align: center on the body element. */
/*	background-color: #F7F2E2;
*/}
.oneColFixCtrHdr #header {
	background: #F7F2E2;
	padding: 0 0px 0 0px;  /* 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. */
}
.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 #mainContent {
	padding: 20px;
	background-color: #F7F2E2;
}
.oneColFixCtrHdr #footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
}
.oneColFixCtrHdr #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 */
}

#topTrees {
	background:url(images/backgroundTop.jpg) repeat-x;
	position:absolute;
	top: 0px;
	width: 100%;
	height: 78px;
	margin: 0px;
	left: 0px;
}

#logo {
	background:url(images/nutmegMasthead.png) no-repeat;
	position:absolute;
	top: 65px;
	left: 50px;
	width: 654px;
	height: 61px;
	margin: 0px;
}
#naxBox {
	width: 800px;
	height: 30px;
	margin: 0px;
	padding: 0px;
}

#nav {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	width: 800px;
	float:left;
}
#nav li {
	margin: 0px;
	padding: 0px;
	float: left;

}

#nav a {
	float: left;
	width:160px;
	text-align:center;
	color:#24420E;
	text-decoration:none;
	line-height: 2;
	background: url(images/tab.png) no-repeat;
}

#nav a:hover {
	color:#24420E;
	background-position: -320px 0;
}

#nav li.current a {
	color:#3F2500;
	background-position: -160px 0;
}
	
	
	
	