/* ------- Menu de gauche ------- */
a.menu_gauche_accueil { /* définition de la classe "image" de la balise <a> */
 display: block; /* la balise a doit être en bloc */
 width: 93px; /* largeur de l'image réactive */
 height: 84px; /* hauteur de l'image réactive */
 background: url(images/it_IT/index_bt_accueil.jpg) no-repeat; /* source de l'image de départ */
}

a.menu_gauche_accueil:hover { /* définition de la classe "image" de la balise <a> au survol */
 background-image: url(images/it_IT/index_bt_accueil-over.jpg); /* source de l'image d'arrivée */
}

a.menu_gauche_visites {
 display: block;
 width: 93px;
 height: 84px;
 background: url(images/it_IT/index_bt_visites.jpg) no-repeat;
}

a.menu_gauche_visites:hover {
 background-image: url(images/it_IT/index_bt_visites-over.jpg);
}

a.menu_gauche_spectacles {
 display: block;
 width: 93px;
 height: 84px;
 background-image: url(images/it_IT/index_bt_spectacles.jpg);
 background-repeat: no-repeat;
}

a.menu_gauche_spectacles:hover {
 background-image: url(images/it_IT/index_bt_spectacles-over.jpg);
}

a.menu_gauche_transports {
 display: block;
 width: 93px;
 height: 84px;
 background-image: url(images/it_IT/index_bt_transports.jpg);
 background-repeat: no-repeat;
}

a.menu_gauche_transports:hover {
 background-image: url(images/it_IT/index_bt_transports-over.jpg);
}

a.menu_gauche_contact {
 display: block;
 width: 93px;
 height: 91px;
 background-image: url(images/it_IT/index_bt_contact.jpg);
 background-repeat: no-repeat;
}

a.menu_gauche_contact:hover {
 background-image: url(images/it_IT/index_bt_contact-over.jpg);
}

