/* 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 {
	padding:30px 0;
	background:#fff url(../images/site/body_bg2.jpg) top center no-repeat;
}

#background {
	
}

#pageContainer {
	width:840px;
	margin:0 auto;
	text-align:left;
	padding:30px;
	
	background:#f0f0ee;		
	border:solid 1px #e2e2e2;
}

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



#header {
	padding:15	px 0 10px 0;
}

/*------------------- NAVBAR -------------------*/
#navBar {
	position:relative;
	z-index:2;			/* necessary for IE6 if you want dropdowns  */
	height:34px;
	
	font-size:12px;
	color:#fff;
	
	background:url(../images/site/navBar_bg.jpg) repeat-x;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
	min-height:400px;
}
* html #content { /* hack for IE6 */
	height:400px;
}

#mainPhoto {
	text-align:center;
}

#mainCol {
	width:590px;
	position:relative;
	float:left;
	display:block;
}

#sideCol {
	width:240px;
	position:relative;
	float:right;
	padding:0;
	padding-top:20px;
}

/*------------------- FOOTER -------------------*/
#footer {
	width:900px;
	margin:0 auto;
	padding:10px 0;
	font-size:8pt;
	color:#333;
}

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

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

=