/* ------------- "generic" styles */

body {
	margin: 0; padding: 0;
	background: #006699; color: #fff;
	font: 0.75em Arial, Helvetica, sans-serif;
}
/* note the body color is covering the entire page*/

a {
	text-decoration: none;
}

a img {
	border: 0;
}
/* the a link takes away the underline and also eliminates a border around an image created by some browsers*/

p {
	margin: 0 0 1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
}
/* the above eliminated the space on top of the paragraph but provides a 1em margin on the bottom (margin collapse elim)*/


/* ------------- masthead styles */

#divWrapper {
	height: 600px;
	width: 900px;
}
#divLogo {
	margin-bottom: 1.75em; padding-top: 1px;
	background: #006699;
}
/* this gives some margin and padding and a background color consistant with the logo*/

#divNavigation{
	margin: 0; padding: 0.5em 3em 0.5em 10em;
	background: #006699; color: #FFF;
}
/* the background color is for the block of the ul, however, the color only effects a decoration as link is blue.  The padding will take effect after the following inline display, giving padding (20ems)to the first Li*/

#navlinks li {
	display: inline;
	margin-right: 0.5em;
	padding-right: 0.75em;
	border-right: 1px solid #99C;
	font-weight: bold;
}
/* here we take the navlink li and display them inline add marg&pad & put in a border between the li*/

#navlinks li.last {
	border-right: 0;
}
/* the above eliminated the border after the last li  and the one below changes the color of the links*/

#navlinks a {
	color: #D4EC84;
}
#navlinks a:hover {
	color:#000000;
}

/* ------------- main column styles */

#content {
	float: left;
	/*margin: 0px 0px 0px 3px;*/
	background-color: #006699;
	height: 510px;
	width: 268px;
	text-align: justify;
}

#content h1 {
	margin: 0 5% 0em 0.5em; padding: 0em 2em 0em 1.5em; color: #ffffff;
	font-size: 1.25em;
}

#content h1 b {
	color: #B0D742;
}

/* the above h1 & hi b (seperate color for part of the text) styling is not used on the home page.  Note the 33% right margin which puts the white background space 1/3 across the screen and notice the -2em left margin which pulls in the text*/

#content h2 {
	margin: 0.5em 0 0.25em;
	font-size: 1.15em;
}
#content h3 {
	margin: 0.5em 0 0.25em;
	font-size: .9em;
}

/* ------------- sidebar styles */

#sidebar {
	background-color: #006699;
}
#sidebar2 {
	padding-left: 10em;
}
#sidebar3 {
	float: left;
	margin: 0em;
	padding-top: 8em;
	padding-left: 10em;
	font-size: 1.4em;
}
#divFooter {
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FFFF00;
	clear: both;
	margin-bottom: 10px;
	text-align: left
}
#divFooter a {
	color: #ffff00;
	}
