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

/* mouse over link */
a:hover {
color: green;
}
/* selected link */
a:active {
color: green;
}
