To remove the focus ring that appears in Firefox when you click a link, do this in CSS:
a:focus { -moz-outline: none; outline: none; }
Note, outline: none; is just for future.
outline: none;