Ich vermute mal, daß Du eine (ältere) Mozilla-Engine hast, und diese verhält sich leider nicht korrekt bei den Sub-Classes. "Vererbung" etc. wird nicht richtig gehandhabt.
Code:
a {
color: #00CC33;
font-family: Times;
font-weight: bold;
}
a:link {
color: #00CC33;
font-family: Times;
font-weight: bold;
text-decoration:none;
}
a:visited {
color: #00CC33;
font-family: Times;
font-weight: bold;
text-decoration:none;
}
a:hover {
color: #00CC33;
font-family: Times;
font-weight: bold;
text-decoration:underline, overline;
}
a:active {
color: #00CC33;
font-family: Times;
font-weight: bold;
text-decoration:underline;
}
...
...