/* MAIN CSS FOR THE SITE */

/*
div {
	border: 1px dotted #000099;
}/**/

/*------------------- LINKS -------------------*/
a:link, a:visited
{
	color: #900;
	text-decoration:none;
}

a:hover
{
	text-decoration: underline;
}

/*====================================== PAGE LAYOUT ======================================*/
body, html
{
	margin: 0;
	padding: 0;
}

body
{
	background-image: url(../images/site/body_bg.jpg);
	background-repeat: repeat-y;
	background-position: center;
	background-color: #567790;
	
	color: #4f5456;
	line-height: 1.4em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-align: left;
}

#pageContainer
{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: left;
	
	background-image: url(../images/site/top_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

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



#header
{
	padding: 25px 0 0 0;
	width: 778px;
	height:120px;
	margin: 0 auto;
	text-align: center;	
}

/*------------------- NAVBAR -------------------*/
#navBar
{	
	width: 778px;
	height: 23px;
	margin: 0 auto;
	background-image: url(../images/site/navBar_bg.jpg);
	background-repeat: repeat-x;
}

.navButton 
{
	font-size: 9pt;
	line-height: 18pt;
	color: #2f3a4d;
	font-weight: bold;
	text-align: center;
	
	position: relative;
	display: block;
	height: 23px;
	
	border-right-color: #9cadbc;
	border-right-width: 1px;
	border-right-style: solid;	
}

a.navButton:link, a.navButton:visited 
{
	color: #2f3a4d;
	text-decoration: none;
}
a.navButton:hover 
{
	color: #2f3a4d;
	text-decoration: none;
	background-image: url(../images/site/navBar_bg_f2.jpg);
	background-repeat: repeat-x;
}


/*------------------- CONTENT AREAS -------------------*/
#content
{
	width: 778px;
	margin: 0 auto;
	padding-bottom: 75px;
}

#mainCol
{
	width: 584px;
	min-height: 350px;
	padding: 0;
	position: relative;
	float: left;
	display:block;
	text-align:left;
	
	background-image: url(../images/site/mainCol_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/* A CSS hack that only applies to IE*/
* html #mainCol
{
	height: 350px;
}	

#mainColContent
{
	padding: 0 15px 0 15px;
}

#sideCol
{
	width: 164px;
	padding: 0 0 0 30px;
	min-height: 516px;
	position: relative;
	float: right;
	
	font-size: 9pt;
	text-align: left;
	
	background-image: url(../images/site/sideCol_bg.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

* html #sideCol
{
	height: 516px;
}	

/*------------------- FOOTER -------------------*/
#footer
{
	width: 778px;
	height: 58px;
	margin: 0 auto;
	padding: 7px 0 0 0;
	font-size: 9pt;
	line-height: 1.4em;	
	color: #4c7e82;
	text-align: center;
	
	background-image: url(../images/site/footer_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

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

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


