/*

 With this style sheets you can make hover links which change color
 to our color scheme

*/

A.hoverlink:link {
  color: #0482AC;
  text-decoration: none;
}

A.hoverlink:visited {
  color: #0482AC;
  text-decoration: none;
}

A.hoverlink:hover {
  color: #fed272;
  text-decoration: none; 
  background: #003F5D;
}
