Which CSS rule removes the default underline from a link on hover?
a:hover { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:link { text-decoration: none; }