 /* Make all body text white, 12 point Book Antiqua
    with 16-point vertical spacing between lines of text
    and 10-point margins. */
 body {
   font-size:12pt;
   font-family:Book Antiqua;
   color:white;
   line-height:16pt;
   margin-left:10pt;
   margin-right:10pt;
   background:;
 }

 /* Indent paragraphs */
 p {
   margin-left:24pt;
   margin-right:24pt;
 }

 /* Make headings Prose Antique bold with generous line spacing.
    If user doesn't have Prose Antique, use Lucida Handwriting. */
 h1 {
   font:24pt Prose Antique, Lucida Handwriting;
   font-weight:bold;
   line-height:30pt;
 }

 h2 {
   font:18pt Prose Antique, Lucida Handwriting;
   font-weight:bold;
   line-height:22pt;
 }

 /* Don't underline links, and make all links blue.
    Make links flash red when activated. */
 a {
   text-decoration:none;
 }

 a:hover {
   color:red;
 }
 a:visited {
   color:#66FF33;
 }
 a:active {
   color:red;
 }
 a:link {
   color:#66FF33;
 }    
      
