/* MAIN CSS FOR THE SITE */

/*
div {
	border:1px dotted #000099;
}/* uncomment this block of code to help with layout debugging in browsers */

body, html {
	margin:0;
	padding:0;
}

body {
	background:#fff url(../images/site/body_bg.jpg) top center no-repeat;
	padding:20px 0 0 0;
}

#pageContainer {
	width:908px;
	margin:0 auto;
	text-align:left;
	padding:8px;
	
	background:url(../images/site/page_bg.jpg) top no-repeat;		
}

.clearer {
	clear:both;
	display:block;
	height:1px;
	margin-bottom:-1px;
	font-size:1px;
	line-height:1px;
}



#header {
	border-bottom:solid 1px #bbb;
}

/*------------------- NAVBAR -------------------*/
#navBar {
	position:relative;
	z-index:2;			/* necessary for IE6 if you want dropdowns  */
	
	background:#95a65e;
	font-size:16px;
	color:#fff;
	

	border-top:solid 1px #fff;
	border-bottom:solid 1px #fff;
}

#navBar a:link, #navBar a:visited {
	display:block;
	color:#fff;
	text-decoration:none;
	padding:4px 12px;
}

#navBar a:hover {
	color:#2b3211;
}

.navText {
	font-size:16px;
	color:#fff;
}

/*------------------- CONTENT AREAS -------------------*/

#mainPhoto {
	position:relative;
	z-index:1;
	border-top:solid 1px #bbb;
}

#content {
	position:relative;
	z-index:2;
	padding-bottom:20px;
	min-height:600px;
}
* html #content {	/* hack for IE6 */
	height:600px;
}
#mainCol {
	width:620px;
	position:relative;
	float:left;
	display:block;
	padding:0 35px;
}

#sideCol {
	z-index:2;
	position:relative;
	width:210px;
	float:right;
}

/*------------------- FOOTER -------------------*/
#footer {
	width:892px;
	margin:0 auto;
	text-align:left;
	padding:16px;
	font-size:8pt;
	color:#333;
	background:url(../images/site/footer_bg.jpg) top center no-repeat;
}

#footer a:link, #footer a:visited {
	color:#333;
	text-decoration:none;
}

#footer a:hover {
	color:#333;
	text-decoration:underline;
}

