.copyright { COLOR: #666666; }

BODY, TD, .text1 {
font-family: Verdana,Arial;
color: #303030;
font-size: 8pt;
font-weight:normal;
text-decoration:none;
}
H1, .header1 {
font-family: Arial;
color: #4F78AE;
font-size: 21px;
font-weight:normal;
text-decoration:none;
}
H2, .header2 {
font-family: Arial;
color: #4F78AE;
font-size: 17px;
font-weight:normal;
text-decoration:none;
}
H3, .header2, {
font-family: Arial;
color: #4F78AE;
font-size: 14px;
font-weight:normal;
text-decoration:none;
}
.link1 {
font-family: Arial;
color: #FFFFFF;
font-size: 8pt;
font-weight:normal;
text-decoration:none;
padding-left:5px;
padding-right:5px;
}
.link1:hover {
font-family: Arial;
color: #FFFFFF;
font-size: 8pt;
font-weight:normal;
text-decoration:underline;
padding-left:5px;
padding-right:5px;
}

.link2 {
font-family: Arial;
color: #6F8DBA;
font-size: 8pt;
font-weight:normal;
text-decoration:none;
padding-left:3px;
padding-right:3px;
}
.link2:hover {
font-family: Arial;
color: #006699;
font-size: 8pt;
font-weight:normal;
text-decoration:underline;
padding-left:3px;
padding-right:3px;
}

.inputbox {
font-family: Verdana,Arial;
color: #303030;
font-size: 8pt;
font-weight:normal;
text-decoration:none;
}



#menu 
{
 background-color:  blue;

 text-align: left;
 margin: 0;
}

#menu ul 
{
 list-style: none;
 padding: 0;   /* padding to buttons */
 margin: 0 ;   /* indent from outside div */
}

#menu li 
{
 margin: 0 ;   /* indent from outside div */
 float: left;     /* left for horizonal menu, otherwise its vertical. */
}

#menu a, #menu a:visited, #menu a:active 
{
 font-weight: bolder;
 color: white;
 float: left;     /* left for horizonal menu, otherwise its vertical. */
 text-decoration: none; /* remove typical underline */
 font-size: 10px;    /* menu text size */
 display: block;    /* treats layout of buttons like they're table cells rather than list items */
 padding: 7 15 7 15 ;   /* padding of text within button */
 height: 25;
 margin: 0;   /* padding of button within list item */
}

#menu a.menuactive 
{
 font-weight: normal;
 font-style: italic;
}


#menu a:hover {  /* override as neccesary for mouse over effects */
 color: white; 
 text-decoration: underline;
 background-color: #003366;
}


#menu ul ul {  /* this one is the dropdown */
 background-color: #CCC;
 position: absolute; /* so we can hide it */
 left: -999em;  /* by default it is hidden */
 width: 120;  /* width of the entire dropdown */
 margin: 25 -50;  /* relative position of the menu to the button... 0=tight on bottom.. */
 padding: 0;
}

#menu ul ul li {  /* this one is the dropdown */
 width: 120;
 margin: 0 ;   /* indent from outside div */
 display: block;
}

#menu ul ul a {  /* override colours for drop down buttons */
 background-color:#CCC;
 color:black;
 width: 120;
 padding:4px;
}

#menu ul ul a:hover {  /* override colours for drop down buttons */
 color: black;
 background-color: #CCC;
}

#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li.sfhover ul ul, 
#menu li.sfhover ul ul ul 
{
 left: -999em;
}

#menu li:hover ul, 
#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li.sfhover ul, 
#menu li li.sfhover ul, 
#menu li li li.sfhover ul {
 left: auto;
}