I have this style in one of my pages:
a.User {color: #000000;BACKGROUND: #FFFFFF;text-decoration: none;}
a.User {font-family: Tahoma, Arial, Helvetica, sans-serif;}
a.User {font-weight=normal;}
a.User:active {color: #000000;BACKGROUND: #FFFFFF;text-decoration: none;}
a.User:active {font-family: Tahoma, Arial, Helvetica, sans-serif;}
a.User:active {font-weight=normal;}
a.User:visited {color: #000000;BACKGROUND: #FFFFFF;text-decoration: none;}
a.User:visited {font-family: Tahoma, Arial, Helvetica, sans-serif;}
a.User:visited {font-weight=normal;}
a.User:hover {color: #FF0000;BACKGROUND: #FFFFFF;text-decoration: none;}
a.User:hover {font-family: Tahoma, Arial, Helvetica, sans-serif;}
a.User:hover {font-weight=normal;}
It works great if I open this page alone... but if I include it into another with a different definition for the links... it doesn't. It uses Forecolor and Font-weight of the non-hover link, and all the complete definition for the hover link.
The visited is working correctly... the links are shown as they shoul. But the links that were not visited yet, are bold and dark-blue.
????
How can I fix this?