/* CSS Document */
/*External CSS document setting all font-families, colors, and alignments for section headers and paragraphs throughout the site as well as body colors and link behaviors.  All fonts are relative for resizing (accessibility) and selected for printability*/

h1 {
	font-family:Georgia, "Times New Roman", Times, serif;
	color: #000099;
	text-align: center;
	background-color: #FFFFFF;
}

h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #0000CC;
}

h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	color: #FF0000;
	background-color: #FFFFFF;

}

h4 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #000099;
	text-align: center;
	background-color: #FFFFFF;

}

p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #000099;
	background-color: #FFFFFF;
}

/*begin css for body color and link colors*/

body,td,th {
	color: #000000;
	background-color: #FF0000;
}
body {
	background-color: #FF0000;
}

/*css for links*/
a:link {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #0000CC;
}

/*css for visited links*/
a:visited {
	color: #FFFF99;
	text-decoration: none;
	background-color: #0000CC;
}

/*css on mouse hover over link*/
a:hover {
	text-decoration: underline;
	color: #66FF66;
	background-color: #0000CC;
}

/*css on mouse click on link*/
a:active {
	text-decoration: none;
	color: #990099;
	background-color: #0000CC;
}
