/* Make body text dark green.
   The background should be pale green, and Image1.jpg should be used to tile it.
*/
body       { color: #003000;
             background-color: #ccffcc;
             background-image: url(Image1.jpg);
             margin-left: 35pt;
           }

div, h1, h2, h3, h4, h5, h6, p, ul, ol, dl         
             { color: #003000;
             }

/* First level headings should use News Gothic MT font.
*/
h1         { font-size: 24pt;
             font-family: News Gothic MT;
             font-weight: bold;
           }

/* Second level headings should use Arial or Helvetica fonts.
*/
h2         { font-size: 18pt;
             font-family: Arial, Helvetica;
             font-weight: bold;
           }

/* Third level headings.
*/
h3         { font-size: 14pt;
             font-weight: bold;
           }

/* Fourth level headings.
*/
h4         { font-size: 12pt;
             font-weight: normal;
             text-decoration: underline;
           }

/* Make links maroon.
   Make hover links dark pink.
   Make active links light pink.
   Make visited links dark maroon.
*/
a:link     { color: #ff0066; }
a:hover    { color: #ff3399; }
a:active   { color: #ff66cc; }
a:visited  { color: #920049; }

a:link    img { border-color: #ff0066; }
a:hover   img { border-color: #ff3399; }
a:active  img { border-color: #ff66cc; }
a:visited img { border-color: #920049; }

/* Make highlighted text royal blue.
*/
.hilite    { color: #4000b0; }

/* Display text in hyperlinks using Arial or Helvetica fonts.
*/
.linktext  { font-size: 10pt;
             font-family: Arial, Helvetica;
             font-weight: bold;
           }

/* Display green ticks and red crosses using Monotype Sorts font
*/
.greentick { font-family: Monotype Sorts, Webdings;
             color: #00ff00;
           }
.redcross  { font-family: Monotype Sorts, Webdings;
             color: #ff0000;
           }
