@charset "UTF-8";

html {
	height: 100%;;
}
body > #container {height: auto; min-height: 100%;	}




body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #00A7FF;
	background-attachment: fixed;
	background-image: url(images/bluetextureSTRIP.gif);
	background-repeat: repeat-x;
	height: 100%;
}

#container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
	background-image: url(images/tree2.gif);
	background-repeat: no-repeat;
        filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);


	margin: 0 auto;
	padding: 0;
	height: 100%;
} 
#header {
		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-indent: -10000px;
	height: 10px;
} 
#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 */
}

#main {padding-bottom: 50px;}  /* must be same height as the footer */

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 330px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	text-align: center;
	color: #FFF;
	margin: 120px 50px 0 100px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px 0px;
	height: 300px;
        line-height: 130%;
	vertical-align: top;
}
#mainContent {
	margin: 0px;
	padding: 0;
    	float: right;
	text-align: left;
	width: 410px;
	line-height: 100%;
} 

#footer {
	position: relative;
	margin-top: -50px; /* negative value of footer height */
	height: 50px;
	clear:both;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	color: #006533;
} 
#footer #footercopy p {
	text-align: left;
}
#footer #footercopy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #006533;
	width: 800px;
	margin: 0 auto;
	padding: 0;
	vertical-align: bottom;
}



.twoColFixLtHdr #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 */
	
}
.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;
}

ui {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: left;
}
h1 {
	text-indent: -3000px;
	font-size: 9px;
	font-weight: normal;
	line-height: 0px;
}

li {
	list-style-type: none;
	line-height: 2.3em;
}
.nav ul li a {
	line-height: 180%;
}
#nav {
	float: right;
	text-align: left;
	width: 430px;
	line-height: 100%;
}
a:link {
	color: #063;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #063;
}
a:hover {
	text-decoration: underline;
	color: #063;
}
a:active {
	text-decoration: none;
	color: #063;
    position: relative;
    top: 1px;

}
.indent     {

	padding-left: 20px;
}
.indent2 {
	padding-left: 5px;
	margin-left: 23px;

}
/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


