/* unvisited link */
a:link {
   text-decoration: none;
  color: black;
}

/* visited link */
a:visited {
   text-decoration: none;
  color: black;
}

/* mouse over link */
a:hover {
   text-decoration: none;
  color: darkgray;
}

/* selected link */
a:active {\
   text-decoration: none;
  color: black;
}
