<style type = "text/css">
  .dummy{} /*a dummy declaration prevents a bug in some browsers that causes the first declaration to be ignored*/

/*Headings*/
  h1{
      Color: navy;
      font-family: "Times New Roman", serif;
      font-size:  130%;
     }

  h2 {
      Color: navy;
      font-family: "Times New Roman", serif;
      font-size:  110%;
     }


/*JavaScript Pull-down pools*/
  SELECT {
            color: teal;
         }


/*Javascript Tree*/
  td {                       
            background: navy;
     }

   /*mouseover*/
   .bright {
            color: teal ; 
            font-size: 8pt; 
            font-family:Verdana,Arial,Helvetica;
           }

   /*link*/
   .dark {
          color: white; 
          font-size: 8pt; 
          font-family:Verdana,Arial,Helvetica;
         }
  

/*Links*/
  /*All links*/
  a { text-decoration: none;
      font-size:  75%;
    }

  :link { color: teal }     /* for unvisited links */
  :visited { color: gray }            /* for visited links */
  :active { color: navy } /* when link is clicked */
  :hover { color: black }   /* when mouse is over link */


  /*Email Links*/
  a.emaillink{
     font-size: 110%;
  }

  a.emaillink:link{ color: red }
  a.emaillink:hover{ color: teal }

</style>