@charset "utf-8";
body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #006699;
	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;
}


.oneColFixCtrHdr #wrapper {
	width:100%;
	height:100%;
	background: #006699 url(../images/LakecrewBanner_right.png) repeat-x;	
}

.oneColFixCtrHdr #banner_left {
	background: url(../images/LakecrewBanner_left.png) repeat-x;	
	width: 50%;
	height:370px;
/*	height: 350px; */ /* height of bg! */
	position: absolute;
	top: 0;
	left: 0;
}

.oneColFixCtrHdr #container {
	width: 1004px;  /* using 20px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #b7d9e3;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
	position: relative;			/* required */
	z-index: 1; 				/* only opera needs this! */
}

.oneColFixCtrHdr #header {
/*	height:120px; */
	height:140px;
	background: #006699 url(../images/LakecrewBanner.jpg) no-repeat; 
}
.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 #menu {
	width: 1004px;  /* using 20px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#8ca468 url(../images/LakecrewBannerBG.jpg) no-repeat;	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
	position: relative;			/* required */
	z-index: 5; 				/* only opera needs this! */	
}

.oneColFixCtrHdr #mainContent {
	padding: 0 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:auto;
	min-height:300px;
	line-height:1.4em;
}

.oneColFixCtrHdr #footer {
	margin: 0px; padding:0;
	background-color:#006699; background-image:url(../images/LakecrewFooter.jpg); background-repeat:no-repeat;
	width:1004px;
	height:50px;
}
.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 */
}