/*
 *
 *  links.css
 *
 */

a:link {
  border-bottom: 1px blue dotted;
  text-decoration: none;
  color: blue;
}

a:visited {
  border-bottom: 1px blue darkblue;
  text-decoration: none;
  color: darkblue;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/* EOF */
