/* CSS Document, These are the layout section divs top to bottom */
body {
	background-color: #333333;
	margin-top: 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666633;
	font-size: .9em;
}
/*main layout classes and divs, I kind of like the technique of using the word div.container or what have you to indicate that the class is a layout container of some sort*/
/*the main content container, fixed width automatic margins which results in a centered look, the wrapper*/
div.container
{
	width:850px;
	margin:0px;
	margin-right: auto;
	margin-left: auto;
	border:1px solid gray;
	background-color: #FFFFFF;
}
div.header
{
	padding:0;
	margin:0;
	border: none;
}
/*used an ID here for the nav because classes were giving me problems, occurs only once on the page anyway*/
#nav
{
	width:850px;
	margin:0px;
	height: 32px;
	background-color: #7A999B;
}
#nav a
{
float:left;
border-right:1px solid white;
}
/*end nav*/
/* this div floats that last image to the right, gonna be done away with shortly 6/13/06*/
#navright
{
	float:right;
}
/*this was to create the solid white one pixel border to the left of the right image button*/
#navright a
{
float:left;
border-left:1px solid white;
}
/*end right nav image*/
/*this was meant to be the text based nav for a section, full width under the main nav, seems to blow so I won't use it. On second thought this could be used as a section link area that appears like tabs much as I hate them*/
#sectionLinks
{
	font-family: Arial, Helvetica, sans-serif;
	background-color: #909483;
	border: none;
}
#sectionLinks a
{
	text-decoration:none;
	letter-spacing: 0.2em;
	font-size: .8em;
	padding-left: 10px;
	color: #000000;
	font-weight: normal;
}
#sectionLinks a:hover {background-color:#CCCCCC}


/*global links*/
#globalLinks
{
	padding: 0px;
	width:850px;
	margin:0px;
	background-color: #7A999B;
	float: left;
	
}
#globalLinks ul
{
	float:left;
	width:100%;
	padding:0;
	margin:0;
	list-style-type:none;
}
#globalLinks a
{
	float:left;
	text-decoration:none;
	padding:0.2em 0.6em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	display: block;
}
#globalLinks a:hover {background-color:#CCCCCC}
#globalLinks li {display:inline}




/*this is the main content area for this layout, the wrapper or main container along with the header div are at the top of this code*/
div.left
{
	float:left;
	width:500px;
	margin:0;
	padding:1em;
	clear: left;
}
div.right
{
	padding:1em;
	margin-left: 550px;
	background-color: #CCCCCC;
}
div.footer
{
	padding:0.5em;
	color:white;
	background-color:#7A999B;
	clear:left;
	font-size: 12px;
	text-decoration: none;
}
/*footer link styles in an ID called "footer", probably could lose the footer class and make it the same ID but what is wrong with bloated code anyway? whatever*/
#footer a:link, #footer a:visited{
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover{
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: underline;
}



/*html tags*/
/*now we enter the html area*/
a:link, a:visited, a:hover {
	color: #006699;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

a:hover {
	text-decoration: underline;
}
/* overrides decoration from previous rule for hovered links */


/*below here are the old styles for text formatting, not layout, those were eliminated as they were a chaotic combination of absolute positioned divs with serious usability problems, actually tables would be perfect for this site, I have dumped all of the spurious code, whatever, whatever, I do what I waa aaaant!*/
p {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: .9em;
	line-height: 2em;
	color: #666633;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #7A999B;
	letter-spacing: 1px;
	line-height: 38px;
}
h2 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 120%;
	line-height: 18px;
	color: #993333;
	letter-spacing: 1px;
	vertical-align: bottom;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #993300;
	letter-spacing: 1pt;
	left: 10px;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #333333;
	text-transform: uppercase;
	letter-spacing: 2px;
}
h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}
ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666633;
	text-align: left;
	text-indent: 5px;
	list-style-position: inside;
	list-style-type: square;
}
.cellpad {
	padding: 11px;
}
.text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
}
.news {
	margin: 5px;
	border: 2px groove #FF0000;
	display: block;
}
.navBottomBorder {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.shade {
	background-color: #CCCCCC;
	border: 1px solid #993333;
	padding-left: 3px;
}
#shade2 {
	background-color: #7A999B;
	border: 1px solid #993333;
	color: #FFFFFF;
	padding-left: 5px;
}
#shade2 a{
	color: #FFFFFF;
}
.caption {
	font-size: 0.7em;
	line-height: .9em;
	color: #000000;
}
.indent {
	margin-left: 25px;
}
.indent50 {
	margin-left: 50px;
}
