/* 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:#0e3460 url(../images/site/body_bg.jpg) top center repeat-x;
}

#pageContainer {
	width:944px;
	margin:0 auto;
	text-align:left;
	
	background:#fff;
	border:solid 4px #fff;		
}

.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;
	background:url(../images/site/navBar_bg.jpg);
	border-top:solid 4px #fff;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
	padding:15px;
}

#pageTitle {
	text-transform:uppercase;
	color:#fff;
	display:relative;
	z-index:2;
	margin-top:-63px;
	padding-left:20px;
}

#mainCol {
	width:650px;
	position:relative;
	float:left;
	display:block;
	text-align:left;
	min-height:550px;
}

* html #mainCol { /* hack for IE6 */
	height:550px;
}

#sideCol {
	width:230px;
	position:relative;
	float:right;
	text-align:left;
}

/*------------------- FOOTER -------------------*/
#footer {
	font-size:8pt;
	color:#fff;
	text-align:center;
	background:#2e6884;
}

#footer a:link, #footer a:visited {
	color:#fff;
	text-decoration:none;
}

#footer a:hover {
	color:#fff;
	text-decoration:underline;
}

