/*valid.css*/
a.valid:link, a.valid:visited, a.valid:hover, a.valid:active
{color:#87CEEB;}
/*
#87CEEB is "skyblue" The CSS validator will reject skybluebut not #87CEEB.
If you want to have different colors or styles for certain links you need
to assign those links a class and write the styles for each class.
"valid" was the class assigned to the above a:LVHA.
The correct code in the HTML document is:
<link rel="stylesheet" type="text/css" href="valid.css">
<a href="http://validator.w3.org/check?uri=referer" class="valid">.</a>
*/
