/* 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;
	height:100%;
}

body {
	background:#150802 url(../images/site/body_bg2.jpg) top center repeat-y;
}

#background {
	background:url(../images/site/page_bg.jpg) no-repeat top;		
	min-height:100%;
	position:relative;
}

* html #background {	/* hack for IE6 */
	height:100%;	
}

#pageContainer {
	width:740px;
	margin:0 auto;
	text-align:left;
}

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



#header {
	text-align:center;
	padding:90px 0 15px 0;
}

/*------------------- NAVBAR -------------------*/
#navBar {
	position:relative;
	z-index:2;			/* necessary for IE6 if you want dropdowns  */
	height:40px;
	padding:6px 5px;
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12pt;
	color:#500;
	font-weight:normal;
	
	background:url(../images/site/nav_bg.jpg) top center no-repeat;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
	padding-bottom:20px;
	min-height:350px;
	background:#fff;
}
* html #content {		/* IE6 hack */
	height:350px;
}

#mainCol {
	width:550px;
	position:relative;
	float:right;
	display:block;
	text-align:left;
}

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

/*------------------- FOOTER -------------------*/
#footer {
	font-size:8pt;
	color:#555;
	text-align:center;
	padding:10px 0;
	font-family:Arial, Helvetica, sans-serif;
}

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

#footer a:hover {
	color:#555;
	text-decoration:none;
}

