/*** Menu and Buttons ***/
/* Uso lettere progressive A, B, C... perchè IE ha problemi se il nome del button è più lungo di un carattere */
/* IE ha problemi anche se il nome del button è diverso da A */

/* A: bottone contorno grigio con sfondo bianco e mouseover grigio, scritte nere */
A.button {
    float: left;
    width:80%;
    height:12%;
    padding: 5px 10px;
    border: 1px solid #E0E0E0;
    background: #ffffff url(images/button_sprites.png) repeat-x 0 0;    
    text-decoration: none;
    font-size: 12px;
    font-weight: none;
    font-family: Verdana;
    line-height: 20px;  
    color: #202020;    
}
A.button:hover {
    border: 1px solid #E5E5E5;
    background: #E5E5E5 url(images/button_sprites.png) repeat-x 0 -30px;
}