/* Make all body text blue-colored 12 point Arial
  with 16-point vertical spacing between lines of text
  and 10-point margin.
*/
body {font-size: 10pt;
      font-family: Helvetica, Arial;
      color: rgb(00,00,153);
      background: rgb(255,255,204);
      line-height: 16pt;
      margin-left: 10pt;
      margin-right: 10pt;}

/* Indent paragraphs */
p {margin-left: 24pt;
   margin-right: 24pt;
      font-size: 10pt;
      font-family: Helvetica, Arial;
      color: rgb(00,00,153);
      line-height: 16pt;
      margin-left: 10pt;
      margin-right: 10pt;}

/*Make headings Arial bold with generous line spacing.
  If user doesn't have Tahoma, use Arial.
*/
h1 {font: 24pt Helvetica, Arial;
    font-weight: bold;
    line-height: 30pt;
    color: rgb(00,00,153);}

h2 {font: 18pt Helvetica, Arial;
    font-weight: bold;
    line-height: 22pt;
    color: rgb(00,00,153);}

h3 {font: 12pt Helvetica, Arial;
    font-weight: bold;
    line-height: 14pt;
    color: rgb(00,00,153);
    text-align: center}

h4 {font: 12pt Helvetica, Arial;
    font-weight: bold;
    line-height: 14pt;
    color: rgb(00,00,153);}
    

/* Don't underline links, and make all links red.
   Make links flash orange when activated.
*/
a {text-decoration: none;}
a:link {color: red;}
a:visited {color: red;}
a:active {color: rgb(255,107,0);}

/*Format footnotes as 9-point Tahoma, and center them.
*/
div.footnote {font-size: 9pt;
              line-height: 12pt;
              text-align: center}
/*formats other text as */

