 These classes set the colors and styles for the text on each page
as normally would be set by the alink, vlink, link attributes of the body tag 
a:active {  font-family: Verdana, Arial, Helvetica; 
color: #FFFFFF
}
a:hover {  font-family: Verdana, Arial, Helvetica; 
color: #FF5A00;
font-size: 11pt
}
a:link {  font-family: Verdana, Arial, Helvetica;
color: #000000
}
a:visited {  font-family: Verdana, Arial, Helvetica;
color: #007683
}

 These next three tags format the text in their respective tag parameters so that
the result in the browser will be the same in both IE and NS. Where no color is specified
then the color properties will be taken from the body text tag. 
textarea {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-size: 8pt;
color: #000000;
bgcolor: #ffffff;
text-align: center;
}
input {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-size: 8pt;
}
select {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-size: 8pt;
}

 The next class sets the attributes for the H1 header tag.
It is possible to override these attributes by creating a separate class
with its own attributes, and amending the heading tag to read 
<h1 class="...">...</h1> 
H1 {
Font-family: Arial, Verdana, Helvetica;
Font-style: italic;
Font-weight: bold;
Font-size: 24pt;
color: #FF5A00;
text-align: center;
}
H2 {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-weight: bold;
Font-size:16pt;
color: #007683;
text-align: left;
}
.c8 {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-size: 8pt;
color: #000000;
bgcolor: #ffffff;
text-align: center;
}
.c9 {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-weight: normal;
Font-size: 9pt;
color: #000000;
text-align: center
}
.c9c {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-weight: normal;
Font-size: 9pt;
color: #000000;
text-align: center;
}
.l9b {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-weight: normal;
Font-size: 9pt;
color: #000000;
text-align: left;
}
.l10b {
Font-family: Verdana, Arial, Helvetica;
Font-style: normal;
Font-weight: bold;
Font-size: 9pt;
color: #000000;
text-align: left;
}
.footertext{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
}
a.footertext:link{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration:none;
}
a.footertext:visited{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration:none;
}
a.footertext:active{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration:none;
}a.footertext:hover{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #000000;
	text-decoration:underline;
}
#form label, #form input { display: block; width: 150px; float: left; margin-bottom: 10px; font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;}
#form label, #form textarea { display: block; width: 180px; float: left; margin-bottom: 10px; font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000; }
#form label, #form select { display: block; width: 150px; float: left; margin-bottom: 10px; font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;}
#form label { text-align: left; width: 90px; padding-right: 20px; font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;}
#form br { clear: left; }
#form span.requireditem { color: #FF0000; }

