Anchors ("a" elements) used only for the name attribute should not
change color on hover, only those that are link sources (href
attributes).
diff --git a/Doc/html/style.css b/Doc/html/style.css
index 3f8b3e8..762d1c4 100644
--- a/Doc/html/style.css
+++ b/Doc/html/style.css
@@ -39,7 +39,7 @@
                           background-color: #ffffff; }
 
 a:active                { color: #ff0000; }
-a:hover                 { background-color: #bbeeff; }
+a[href]:hover           { background-color: #bbeeff; }
 a:visited               { color: #551a8b; }
 a:link                  { color: #0000bb; }