Dotted outline on links
To remove the dotted outline on the anchor that's visible when you click on a link in your browser, simple add this to your css
a {
outline: none;
}
since this is handy when it comes to using images for navigation, I've also added it to "#navigation ul li a", having it only for the a tag was not working in this case.