
  <STYLE type="text/css">
    H1 { color: red }

	a:link { color : black ; }
	a:visited { color : black ;  }
	a:active { color : black ;  }


       A { text-decoration : none; }
    BODY { 
      font-family: "Gill Sans", sans-serif;
      font-size: 10pt;
      margin: 0em; 
    }
  
         UL { 
        background: blue; 
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
                                     /* No borders set */
      }
      LI { 
        color: black;                /* text color is black */ 
        background: white;            /* Content, padding will be gray */
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px; /* Note 0px padding right */
        list-style: none             /* no glyphs before a list item */
                                     /* No borders set */
      }
      LI.withborder {
        border-style: dashed;
        border-width: medium;        /* sets border width on all sides */
        border-color: black;
      }
    
    
  </STYLE>
  
