/* 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:#1c3660;
}

#pageContainer {
	width:950px;
	margin:0 auto;
	padding:0 30px;
	text-align:left;
	
	background:#1c3660 url(../images/site/body_bg.jpg) top center repeat-y;	
}

.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  */
	
	font-size:9pt;
	color:#fff;
	font-weight:bold;
	
	background:#555;
	height:2.5em;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
	border-top:solid 1px #777;
	background:#fff url(../images/site/content_bg.jpg) top left no-repeat;
	min-height:450px;
}

* html #content {	/* hack for IE6 */
	height:450px;
}

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

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

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

