/*You'll find notes below some items detailing their usefulness, and their characteristics.  
Style sheets make defaults; if you wish to change a default, you can do it with an in-line style 
command.  I'll be glad to show you how to override the style sheet.*/

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
    line-height: 1.6;
	background-color: white;
	vertical-align: text-top;
	margin-left : 1px;
	margin-right : 1px;  }

 /*The above means that unless otherwise specified, all body text will be 12px, 
 and there will be some spacing between lines, will occur on a white background, and will 
 be indented on either side just a smidge*/   

    /*/*/a{}
    body {
      font-size: x-small;
      voice-family: "\"}\"";
      voice-family: inherit;
      font-size: x-small;
      }
      html>body {
         font-size: small;
      }
      /* */

/*The funny bit of code above tells different types of browsers to allow scaling of 
text, for accessibility.  For more info - http://diveintoaccessibility.org/day_26_using_relative_font_sizes.html*/

P {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
    line-height: 1.6;
	text-align: left;
	padding-left : 10px;
	padding-right: 6px;  }
    /*/*/a{}
    p {
      font-size: x-small;
      voice-family: "\"}\"";
      voice-family: inherit;
      font-size: x-small;
      }
      html>body p {
         font-size: small;
      }
      /* */

/*All paragraphs, by default will indent 6px from both sides, will be justified, 
and will have a little more than single spacing.*/

UL {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.5; }
   

OL {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.5; }
   
TD {
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
   /*/*/a{}
    td {
      font-size: x-small;
      voice-family: "\"}\"";
      voice-family: inherit;
      font-size: x-small;
      }
      html>body td {
         font-size: small;
      }
      /* */
   
A:link  {
	color: #003366;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;  }
   
A:visited  {
	color: #CC0033;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;  }

A:active  {
	color: #DD0005;
	font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
	text-decoration : underline;  }

A:hover  {
	color: #DD0005;
	font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
	text-decoration: underline;  }

/*All links will be in bold and not underlined . . . */

.headerlinks  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	  }
   
.table  { 
	
	font-family:  Verdana, Arial, Helvetica, sans-serif; }

.tablelist  {
	
	font-family:  Verdana, Arial, Helvetica, sans-serif;	
	text-decoration : none;  }

.footer {
	font-family:  Verdana, Arial, Helvetica, sans-serif;	
	font-style: normal;
	
	A: 10px; }

/*Footers are in smaller type, and so are their links.*/

H1 {font: 16pt verdana, arial, helvetica, sans-serif; color: #003366; font-weight: 900; text-indent: 10px; }
H2 {font-size: 15pt; font-weight: 900; color: #003366; font-family: Verdana, Arial, Helvetica, sans-serif;  text-indent: 10px; }
H3 {font: 14pt verdana, arial, helvetica, sans-serif; color: #003366; font-weight : bold; text-indent: 10px; }
H4 {font: 12pt verdana, arial, helvetica, sans-serif; color: #003366; font-weight : bold; text-indent: 10px; }
H5 {font: 10pt verdana, arial, helvetica, sans-serif; color: #003366; font-weight : bold; line-height: 12px; }
H6 {font: 9pt verdana, arial, helvetica, sans-serif; color: #990000; }

/*Headers decrease in size; all are bold except H6, all indent 10px except H5, which goes a little further.  All are 
blue except H6, which is red.*/
