@charset "UTF-8";
/* CSS Document */
/*I'll try and keep everything with detailed comments. I'm going to keep everything in one CSS file, for easy reference, but depending on how many rules you have for some pages, I would suggest splitting up the CSS files and only calling them when necessary. I'll separate this whole page into sections, labeled and everything.*/


/*******************
********************
MAIN STYLES FOR THE
HEADER, LOGO AND MAIN
BG AND LOGO BEGIN
*******************
******************/

/*reset margin & padding*/
html, body, div {
	margin: 0px;
	padding: 0px;
}
/*main bg style*/
body {
	background: #edf0f4 url(../images/build/mainbg.gif) repeat-y center top;
	margin-right: auto;
	margin-left: auto;
}
/*wraps text + everything else, places in middle of browser*/
#wrapper {
	font: small/1.4em Arial, Helvetica, sans-serif;
	color: #000000;
	width: 769px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*positions background for logo; next style positions the link and logo*/
#logobox {
	background: url(../images/build/logobox.gif) no-repeat;
	height: 175px;
	width: 300px;
	position: absolute;
	top: 0px;
	left: 18px;
	z-index: 25;
}
/*position anchor and logo graphic inside it*/
#logobox a {
	position: absolute;
	top: 30px;
	left: 43px;
}
/*cancel out styling for logo that is link, by using specificity*/
#wrapper #logobox a, #wrapper #logobox a:link, #wrapper #logobox a:hover, #wrapper #logobox a:visited, #wrapper #logobox a:active {
	text-decoration: none;
	background: none;
	border: none;
}
#header {
	background: #062355;
	height: 76px;
}
/*sizing and positioning for tagline*/
#header h2 {
	position: absolute;
	top: 30px;
	right: 68px;
	font-size: 1.2em;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0px;
	padding: 0px;
	color: #ffffff;
}
/********** End Main Layout Styles *******/




/********** BEGIN LINK STYLES **********/
a, a:link {
	text-decoration: underline;
	color: #475771;
	padding: 1px;
}
a:visited {
	text-decoration: underline;
	color: #5a6e8f;
}
a:hover {
	text-decoration: none;
	color: #0A49B7;
}
a:active {
	text-decoration: none;
	color: #FFFFFF;
	background-color: #062355;
}
/******* END LINK STYLES **********/







/*********************
MAIN NAV BAR STYLES
*********************/
#navbarmain {
	background: url(../images/build/nav/navbg.gif) repeat-x left top;
	height: 42px;
	position: relative;
	z-index: 5;
	padding: 5px 0px 3px 310px;
}
#navbarmainM {
	background: url(../images/build/nav/navbg.gif) repeat-x left top;
	height: 42px;
	position: relative;
	z-index: 5;
	padding: 5px 0px 3px 580px;
}
#leftsidebg {
	background: url(../images/build/nav/leftend.gif) no-repeat left top;
	height: 42px;
	width: 9px;
	position: absolute;
	left: 0px;
	top: 0px;
}
#rightsidebg {
	background: url(../images/build/nav/rightend.gif) no-repeat right top;
	height: 42px;
	width: 9px;
	position: absolute;
	right: 0px;
	top: 0px;
}
#navbarmain a, #navbarmain a:link, #navbarmain a:visited, #navbarmainM a, #navbarmainM a:link, #navbarmainM a:visited {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	padding: 0px 25px;
}
#navbarmain a:hover,#navbarmainM a:hover, {
	color: #062355;
	text-decoration: underline;
}
#navbarmain a:active, #navbarmainM a:active {
	color: #ffffff;
	text-decoration: underline;
	background: none;
}
#navbarmain .navpipe {
}
/*********************
END MAIN NAV BAR STYLES
*********************/












/*no border for images that are links*/
a:visited img, a:hover img, a:link img, a:visited img {
	border-width: 0px;
	border-style: none;
}
.clear {
	clear: both;
}