/* CSS STYLES BY MAF 
7-8-08 - added Last Updated line and CSS element
2-4-08 - added margin properties for LI tag
5-24-07 - added body tag; 5-15-07 - created CSS code

A:link is unvisited link; A:visited is visited link; a:hover is for mouseover; a:active is when link is clicked.
*/

a:link		{color: blue; font-weight: bold; text-decoration: none}
a:visited	{color: purple; font-weight: bold; text-decoration: none}
a:hover		{color: green; font-weight: bold; text-decoration: underline}
a:active	{color: lime; font-weight: bold; text-decoration: none}

/* {background: url('../images/bk-gray-marble.jpg') fixed;
This image will be used in all html pages; for Firefox and IE, it does not scroll (fixed) 
*/
BODY {background: url('../images/bk-gray-marble.jpg') fixed; }


/* HEADINGS: use tahoma as preferred font (narrower than verdana */

h1
{font-size: 18.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #000080}

h2
{font-size: 16.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #000080}

h3
{font-size: 14.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #000080}

h4
{font-size: 12.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #000080}

h5
{font-size: 10.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #000000}


/* FONTS: use verdana 10 pt as preferred paragraph style */

p, li, td
{font-size: 10pt; font-family: verdana, tahoma, arial, sans-serif; font-weight: normal; color: #000000}

li
{margin-top: 12px; margin-bottom: 4px}

.bold {font-weight: bold;}

/* Table heads */

th
{font-size: 10pt; font-family: Verdana, Tahoma, Arial, sans-serif; font-weight: bold; color: #000000}


/* List element spacing */

/* Special Note: 
blue text, yellow background, teal text, borders with special effects; padding is spacing between the content and the border (top-right-bottom-left), margin is spacing outside the border (top-right-bottom-left) */

.specialnote {
	font-family: verdana, arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: teal;
	background-color: #FFFFCC;
	padding: 5px 5px 5px 5px;
	border-top: thick groove teal;
	border-bottom: thick ridge teal;
	margin: 0px 50px 0px 0px;
}


/* Text in page banner */
.banner
{font-size: 18pt; font-family: verdana, tahoma, arial, sans-serif; font-weight: bold; color: #DCDCDC }

/* signature text at bottom of page */
.signature 
	{
	font-family: georgia, 'times new roman', serif;
	font-size: 10pt;
	font-weight: bold;
	font-style: italic;
	color: #800080
	}

/* date at bottom of page */
.date 
	{
	font-family: verdana, tahoma, arial, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	font-style: normal;
	color: #A9A9A9
	}

/* COLORS 
The first font in the list is the first one used 
	font-family: verdana, arial, sans-serif; 
	font-family: "times new roman", times, serif; */

/* Makes text bold and blue */
.BoldBlueSans10 
	{
	font-family: verdana, arial, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#0000FF;
	}

.white
	{color:#FFFFFF}

.red
	{color:#FF0000}

.boldred
	{font-weight:bold;
	color:#FF0000}

.silver
	{color:#C0C0C0}

.maroon
	{color:#800000}

.purple
	{color:#800080}

.olive
	{color:#808000}

.teal
	{color:#008080}

.green
	{color:#008000}

.navy
	{color:#000080}

.blue
	{color:#0000FF}

