Ho un problema con i browser.
Ho fatto un pulsante a tre stati (che cambia colore).
Fatto sta che con Firefox, quando il cursore del mouse va sul pulsante (hover), il pulsante cambia colore mentre con explorer no. Quale può essere il problema?

HTML

<div id="skin"> CAMBIA SKIN</div>


CSS
#skin a{
float: left;
width: 122px;
height:30px;
display: block;
background: url(immagini/pulsanti3.png);
margin-right:2px;
position:relative;
left: 845px;
bottom: 90px;
font-family:Georgia, "Times New Roman", Times, serif;
font-size:10px;
color: #666666;
text-decoration:none;
text-align:center;
padding-top: 23px; }

#skin a:hover{
background-position: center;
font-family:Georgia, "Times New Roman", Times, serif;
font-size:10px;
color: #000000; }

#skin a.selezionato,{
background-position: bottom; }