/* Sets appearance of links once they have been visited */
a:visited {
	color:#0066FF; /* light blue */
}

/* Sets appearance of links when mouse is over them */
a:hover {
	color:#0000FF;
	background-color:white;
}

/* All pages will display the same background image since
   the image is tied to the body tag.
   Sets FONT for all text: paragraphs, headings, tables, and lists */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px; /* allows tables to "kiss" the page */
	padding: 0px;
	background-image: url("images/site_mgmt/binder-yellow.JPG");
}

/* Sets DEFAULT FONT SIZE.
   Because the table tag does not inherit the font size from the body tag,
   the table tag must be clearly specified.
   Paragraph font size is included here because it is necessary to reset it's value
   when paragraphs are within lists where the list font size has been changed. 
   Lists font size, ul or ol, can be changed in order to adjust the size of 
   the bullets. If the paragraph font size was not clearly specified, it would 
   be inherited from the lists font size (when the paragraph is in a list). */
body, table, p {
	font-size: 11px;
}

/* Paragraph attributes define line spacing
   Margin values are: top right bottom left */
p {
	font-style: normal;
	font-weight: normal;
	text-align: left;
	line-height: 1.6em;
	margin: 0 0 1em 0;
	padding: 0;
}

h1 {
	font-size: 2em;
	font-style: normal;
	font-weight: bolder;
	border-top-width: thick;
	border-top-style: solid;
	border-top-color: #000099;
	color: #000099;
	line-height: normal;
	margin-bottom: 0px;
}

h2 {
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	line-height: normal;
	margin-bottom: 0.25em;
	margin-top: 2.5em;
	font-size: 1em;
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #000000;
}

h3 {
	font-size: 1em;
	font-style: italic;
	font-weight: normal;
	font-variant: normal;
	line-height: 100%;
	margin-bottom: 0.5em;
	margin-top: 1em;
}

h4 {
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	line-height: 100%;
	margin-bottom: 0em;
	margin-top: 1em;
	font-size: 0.95em;
}

ul {
	list-style-type: square;
	font-size: 1.5em;
}

/* All list elements, ordered or unordered,
   will have their text aligned */
li {
	list-style-position: outside;
}

.indent1 {
	margin-left: 2em;
}
.tight {
	margin-bottom: 0.25em;
	line-height: normal;
}
.indexitem {
	margin-bottom: 3px;
	line-height: normal;
}
.menu {
	font-size: 0.95em;
	line-height: 130%;
	margin-top: 0.75em;	
	margin-bottom: 3.5em;
	color: #000000;
}
.gotop {
	font-size: 0.85em;
}

.redtext {
	color: #990033;
}
.activemenutext {
	color:#999999;
}
.lastupdate {

	font-size: 0.85em;
}

/* To use for DIV sections to be hidden when printed
   ex. navigation, indexes */
.tohide {
	display=;
}.tablehead {
	background-color: #66CCFF;
}
