@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* 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/burning_bush_v3-2.gif);
	background-color: #000;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;
}
.twoColFixLtHdr #container {
	width: 800px;
	height: auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/sidebarbackground.png);
	background-repeat: repeat;
} 
.twoColFixLtHdr #header {
	padding: 0;
	background-image: url(images/Lake_Banner_Pan_800_master.jpg);
	height: 260px;
	width: 800px;
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 155px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	height: auto;
	overflow: hidden;
	visibility: visible;
	z-index: auto;
	border: 0px solid #172431;
	background-color: #172431;
	background-attachment: fixed;
}
.twoColFixLtHdr #mainContent {
	height: auto;
	overflow: auto;
	width: 595px;
	margin: 0px;
	z-index: -1;
	color: #000;
	font-weight: bold;
	font-size: 14px;
	border: 0px solid #172431;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	text-align: left;
} 
h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #F64F6B;
	text-align: center;
}
h2 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #fff;
	text-align: center;
}
h4 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	color: #000;
}

.twoColFixLtHdr #footer {
	height: auto;
	width: 800px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	border: 0px solid #172431;
	clear: both;
	float: none;
	color: #FFF;
	font-weight: bold;
} 
.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 */
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
}
.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;
}

