In your HTML code try:
<A class="another" href="somewhere.html">Link</A>

and then wherever you set your styles:
A.another {color:teal; text-decoration:none}
A.another:Hover {color:yellow; font-weight:bold}
...etc.

Hope that helped.