I can make Firefox not display the ugly dotted focus outlines on links with this:
a:focus { outline: none
button::-moz-focus-inner { border: 0; }
Where button can be whatever CSS selector for which you want to disable the behavior.
button