/* 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:#5c534d url(../images/site/body_bg.jpg) top left repeat-y;
}

#pageContainer {
	width:850px;
	text-align:left;
	
	background:url(../images/site/page_bg.jpg) top left no-repeat;		
}

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



#header {
}

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

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

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

/*------------------- CONTENT AREAS -------------------*/
#content {
}

#mainCol {
	width:595px;
	padding:0 50px 20px 0;
	position:relative;
	float:right;
	display:block;
	text-align:left;
	min-height:650px;
}
* html #mainCol { /* hack for IE6 */
	height:650px;
}

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

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

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

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

