/* 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:url(../images/site/body_bg.jpg) top center;
}

#topBg {
	background:url(../images/site/top_bg.jpg) top center repeat-x;
	padding:15px 0 0 0;
}

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

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



#header {
}

#mainPhoto {
	position:relative;
	z-index:2;
}

/*------------------- NAVBAR -------------------*/
#navBar {
	position:relative;
	z-index:3;			/* necessary for IE6 if you want dropdowns  */
	height:25px;
	margin:-10px 10px 0 10px;
	padding:3px;
	
	font-size:9pt;
	color:#fff;
	font-weight:bold;
	
	background:url(../images/site/navBar_bg.jpg) repeat-y;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
	padding:0px 30px 15px 30px;
	min-height:550px;
}
* html #content {	/* hack for IE6 */
	height:550px;
}

#mainCol {
	width:625px;
	position:relative;
	float:left;
	display:block;
	text-align:left;
	border-right:solid 1px #ccc;
	padding-right:20px;
	min-height:550px;
}
* html #mainCol {	/* hack for IE6 */
	height:550px;
}


#sideCol {
	width:215px;
	position:relative;
	float:right;
	text-align:left;
	padding:0px;
}

/*------------------- FOOTER -------------------*/
#footer {
	font-size:8pt;
	color:#fff;
	background:#000;
	padding:5px 10px;
}

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

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

