/* links.css                                                          */
/*                                                                    */
/* The form of the anchor selector is A:state.                        */
/*    LINK is normal state.                                           */
/*    VISITED for a link that has been visited.                       */
/*    ACTIVE for when the link is clicked                             */
/*    HOVER for when the cursor is over the link.                     */
/* They are all identical with the exception of the color for HOVER.  */
/* It is set to red; however, the effect is only seen by IE users.    */ 
a:link
   { text-decoration: underline;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }
a:visited
   { text-decoration: underline;
     color: rgb(0,102,204);    /* medium blue #0066CC */
   }
a:hover
   { text-decoration: underline; 
	  color: rgb(0,51,153);    /* dark blue #003399 */
   }
a:active
   { text-decoration: underline;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }
/*                                                                     */
/* different properties for links in the left navigation bar.          */
/*                                                                     */
a.nav:link
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }
a.nav:visited
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }

a.nav:hover
   { font-family: arial, helvetica, verdana;
     text-decoration: underline;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }
a.nav:active
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: rgb(0,51,153);    /* dark blue #003399 */
   }
/*                                                                       */
/* different properties for top-level links in the left navigation bar.  */
/*    (more visible, high contrast)                                      */
/*																		 */
a.vis:link
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: #003399;
   }
a.vis:visited
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: #003399;
   }

a.vis:hover
   { font-family: arial, helvetica, verdana;
     text-decoration: underline;
     color: #003399;
   }
a.vis:active
   { font-family: arial, helvetica, verdana;
     text-decoration: none;
     color: red;
   }
  