/* We support the following params for the following elements: */
/* */
/* background-color (color-unit) */
/* color (color-unit) */
/* font-family ([name] and/or serif, sans-serif, monospace) */
/* font-size ([number]pt) */
/* font-weight (normal, bold, bolder, 100-900) */
/* text-align (left, center, right) */
/* text-decoration (underline, none) */
/* text-transform (capitalize, uppercase, lowercase, none) */
/* vertical-align (top, bottom, middle) */
/* padding-bottom ([number]px) */
/* !important means style setting overides any inherited style settings */


body {
	color: navy;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	background-color: white;
	}

p, ul, ol {
	color: navy;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	}

li {
	padding-bottom: 10pt
}

/* primarily used in the header section of page */
h1 {
	color: Darkred;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 21pt;
	}

/* introduces major sections of a page */
/* should have same text colour as bodycellone background colour */
h2 {
	color: Darkred;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16pt;
	}

.subhead {
	color: Darkred;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	}


h3 {
	color: Darkred;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
 	}

.smalltext {
	font-size: 10pt;
	}

//tables....

td {
	color: navy;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	vertical-align: top;
	}	

.menu {
	background-color: white;
	}


/* block one and two should be inverse of each other */
.blockone {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: beige;
      background-color: green;
	vertical-align: top;
        }

.blocktwo {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
      background-color: lightblue;
	vertical-align: top;
        }

/* LINKS (only a:link works in Navigator)*/
/*  */
/* color */
/* text-decoration */

/* appearance of a link with no mouse over it */
a:link {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: purple;
        text-decoration: underline;
}

a:visited {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: darkorchid;
        text-decoration: underline;
}

/* appearance of a link with the mouse over it */
a:hover {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        text-decoration: none !important;
}

.headerlink:link {
	text-decoration: underline;
}

.headerlink:visited {
	text-decoration: underline;
}

.headerlink:hover {
      text-decoration: none !important;
}

.photo:link, .photo:visited, .photo:hover  {
	color: black !important;
}	
