 /* unvisited link */
a:link {
  color: #00b300;
}

/* visited link */
a:visited {
  color: #00b300;
}

/* mouse over link */
a:hover {
  color: #ffb600;
}

/* selected link */
a:active {
  color: blue;
} 

