Here are the various ways you can use CSS to style links.
a:link {color: value;}
a:visited {color: value;}
a:hover {color: value;}
a:active {color: value;}
Note: you must declare the a:link and a:visited before you declare a:hover. Futhermore, you must declare a:hover before you can declare a:active.