/* This stylesheet is for style rules that apply to the the site as a whole and-or for style rules with no other home */



/* These style rules set the main default style settings for the site */

body.pt8 {
	background: #777263;
	color: black;
	font-family: Verdana, sans-serif;
	font-size: 8pt;
	}

body.pt10 {
	background: #777263;
	color: black;
	font-family: Verdana, sans-serif;
	font-size: 10pt;
	}



/* These style rules...
	1) set all links, whether visited or not visited, to blue with no underline
	2) add an underline to the link when a user hovers over it
	*/

a {
	color: #0000A0;
	text-decoration: none;
	}

a:hover {
	color: #0000A0;
	text-decoration: underline;
	}



/* These style rules modify link and image borders */

.border0 { border: 0; }

.border0-verticalbottom {
	border: 0;
	vertical-align: bottom;
	}

.border1 {
	border-color: #672F00;
	border-width: medium;
	}



/* This style rule is used by the first table tag on each page and will center the page automatically for the user no matter what the screen size */

.autocenter {
	margin-left: auto;
	margin-right: auto;
	}

