Step 13: Text Decoration
This step could have been done before as well.
My actual StyleSheet is more complicated than this for text decoration. Setting text-decoration
changes the underline and overline on hyperlinks. I set it to none
for simplicity.
a, a:link, a:visited {
text-decoration: none;
}