@charset "UTF-8";
body  {
	font-family: Georgia, "Times New Roman", Times, 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;
	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-color: #D7E7D6;
}
.twoColFixLtHdr #container {
	width: 760px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/faux_col.gif);
	background-repeat: repeat-y;
	background-position: left;
	background-color: #FFFFFF;
} 
.twoColFixLtHdr #header {
	height: 154px;
	padding-top: 1px;
}

/*individual background images for separate pages*/
#home #header {
	background-image: url(images/home_hdrbackgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#shooting #header {
	background-image: url(images/shooting_hdrbackgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#about #header {
	background-image: url(images/about_hdrbackgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#contact #header {
	background-image: url(images/contact_hdrbackgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}



.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 228px;
	background-color: #008735;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-right: 15px;
} 
.twoColFixLtHdr #footer {
	padding-left: 20px;
	background-image: url(images/footer_background.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 15px;
	height: 63px;
	background-color: #D7E7D6;
} 
.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;
}
