/* CSS Document */
/* LAYOUT */

/* background blue: #2a556a */

html, body {
/* establish page height and background color, position */
	height: 100%;
	background-image: url(../images/bkg_1px.jpg);
	background-repeat: repeat-x;
	background-color: #1F3D55; /*385068*/
	margin: 0;
	padding: 0;
}

#pagewrapper {
/* put in the background vertical graphic */
/* allow height to flex more than 100 percent */
	width: 100%;
	min-height: 100%;
	height: auto; /* for FF/Moz/Safari */
	_height: 100%; /* for IE */
	background-image: url(../images/bkg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	margin: 0px auto;
}

#homepagewrapper {
/* put in the background vertical graphic */
/* allow height to flex more than 100 percent */
	width: 100%;
	min-height: 100%;
	height: auto; /* for FF/Moz/Safari */
	_height: 100%; /* for IE */
	background-image: url(../images/bkg_home.jpg); /* has shadows */
	background-repeat: no-repeat;
	background-position: top center;
	margin: 0px auto;
}

#navwrapper {
/* restrict content size */
	width: 840px;
	height: 75px;
	margin: 0px auto;
	top:30px;
	position: relative;
}

#pagecontent {
/* content box parameters */
	width: 774px;
	margin: 40px auto 6px auto;
	padding: 34px;
	background-color: #FFFFFF;
	min-height: 550px;
}

#homepagecontent {
	/* specific to the home page */
	width: 880px;
	padding: 0px;
	margin-top: 8px;
	margin-right: auto;
	margin-bottom: 8px;
	margin-left: auto;	/*background-color: #FFFFFF;*/
}

#leftcol {
/* narrow left col */
	 float:left; 
	 width:525px; 
	 margin: 0 25px 0 0;
	 padding: 0;
}

#rightcol {
	 float:left; 
	 width:224px; 
	 margin: 5px 0 0 0; padding: 0; 
	 background-image:url(../images/bkg_rightCol.gif); 
	 background-repeat: repeat-y;
}

#rightcolcontent {
	 padding: 20px;
}

#rightcolempty {
/* use when there is no content in the right col */
	 float:left; 
	 width:224px; 
	 margin: 0; padding: 0; 
}

#fullcol {
/* full width col */
	 float:left; 
	 width:774px; 
	 margin: 0 26px 0 0;
	 padding: 0;
}

#homeleftshadow {
/* home left shadow */
	 float: left; 
	 width: 20px;
	 height: 298px;
	 margin: 0;
	 padding: 0;
}

#homeleft {
/* home left col */
	 float: left; 
	 width: 334px;
	 height: 298px; 
	 margin: 0 6px 0 0;
	 padding: 0;
	 background-image:url(../images/bkg_homeLeft.gif);
	 background-repeat:	repeat-y;
}

#homeright {
/* home right col */
	 float: left; 
	 width: 500px;
	 height: 298px;
	 margin: 0;
	 padding: 0;
	 background-color: #FFFFFF;
}

#homerightshadow {
/* home right shadow */
	 float: left; 
	 width: 20px;
	 height: 298px;
	 margin: 0;
	 padding: 0;
}

#homenews {
/* home news area col */
	 float: left; 
	 width: 310px;
	 margin: 12px 32px;
	 padding: 0;
}


#footer {
/* make it float at the bottom */ /* commented out */
	width: 840px;
	margin: 9px auto;
	height: 30px;
	text-align: right;
}

