/* Make all body text brown-colored 10 point Arial
   with 16 point verticalspacing between lines of text
   and 10-point margins. 
*/
body {font-size: 10pt;
      font-family: "Arial";
      color: #793d00; 
      line-height: 16pt;
      margin-left: 10pt;
      margin-right: 10pt;}

/* Indent paragraphs */
p {margin-left: 24pt;
   margin-right: 24pt;}

/* Make headings Times Roman bold with generous line spacing.
   If user doesn't have Times Roman, use Arial.
*/
h1 {font: 24pt Times New Roman, Arial;
    color: brown;
    font-weight: bold;
    line-height: 30pt;}

h2 {font: 18pt Times New Roman, Arial;
    color: #aa1100; 
    font-weight: bold;
    line-height: 22pt;}

/* Don't underline blanks, and make all links blue.
   Make links flash black when activated.
*/
a {text-decoration: none;}
a:link {color: blue;}
a:visited {color: purple;}
a:active {color: green;}

/* Format footnotes as 9-point  Arial, and center the. */
div.footnote {font-size: 9pt;
              line-height: 12pt;
              text-align: center;}
