@charset "utf-8";
body  {
	font: 100% Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0 auto; /* 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-image:url(../images/bgGradient.png);
	background-repeat:repeat;
}
h1 {
 	font-size: 160%;
	color: #058003;
}
h2 {
	font-size: 110%;
	font-weight:bold;
	text-align:center;
	}
p.after {
	padding: 0;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: -1em;
	margin-left: 0;
	}
p.afterHalf {
	padding: 0;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: -.5em;
	margin-left: 0;
	}
li {
	padding-bottom:.75em;
}
.copyright {
	font-size: 50%;
	font-style: italic;
	color: #058003;
}

.twoColFixLtHdr #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px auto;  /* add "auto" to margins (in conjunction with a width) to center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-top: 1px;
	background:url(../images/bgrdTree.jpg);
	border: thick #FFF outset;
}

.twoColFixLtHdr #mainContent { 
	margin: 0px 20px 0px 20px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixLtHdr #footer {
	font-weight: normal;
	height:200px;
}

.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;
}
/*********************************************************************/
/*                         Menu Selectors                            */
/*********************************************************************/
.chromestyle{
	font-size:90%;
	font-weight: bold;
	font-family:Tahoma, Geneva, sans-serif;
	text-align:center
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

.chromestyle ul{
	width: 100%; 
	padding: 4px 0;
	margin: 0;
	text-align: left; /*set value to "left", "center", or "right" */
}

.chromestyle ul li{
	display: inline;
}

.chromestyle ul li a{
	color: #FFF; /* white */
	padding: 0px 9px;
	margin: 0;
	text-decoration: none;
	z-index:-1;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ 			/*script dynamically adds a class of "selected" to the current active menu item*/
	font-style:italic;
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	border: 1px solid #BBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font-size:90%;
	font-weight: bold;
	font-family:Tahoma, Geneva, sans-serif;
	z-index:100;
	background-color:#406a23;
	width: 125px;
	visibility: hidden;
	text-align:center;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #BBB; 
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	color:#FFF;
}

* html .dropmenudiv a{		 /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover{
	background-color: #ff0000;
}
