/*
-----------------------------------------------
RUMC Base Styles
Author:  Craig Tabor
Version: 29 January 2007
----------------------------------------------- */

a:link    {
  /* Applies to all unvisited links */
  text-decoration:  none;
  font-weight:      bold;
  /* background-color: #ddd; */
  color: navy;
  } 
a:visited {
  /* Applies to all visited links */
  text-decoration:  none;
  font-weight:      normal;
 /*  background-color: #ddd; */
  color: navy;
  } 
a:hover   {
  /* Applies to links under the pointer */
  text-decoration:  underline;
  font-weight:      bold; 
  /* background-color: blue; */
  color: FireBrick;
  } 
a:active  {
  /* Applies to activated links */
  text-decoration:  underline;
  font-weight:      normal;
/*   background-color: black; */
  color: black;
  } 
