* { font-family: Tahoma, Verdana, Arial, serif; text-decoration: none; }

a.info {    /* on souligne le texte */
}
a.info span { display: none; /* on masque l'infobulle */
}
a.info:hover { background-image: none; background-repeat: repeat; background-attachment: fixed; background-position: right 0; text-decoration: none; /* on change le curseur par défaut en curseur d'aide */
}
a.info:hover span { background-image: none; background-repeat: repeat; background-attachment: fixed; background-position: left 0; display: inline; /* on affiche l'infobulle */
   position: fixed; white-space: nowrap; /* on change la valeur de la propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */

   top: 20px; /* on positionne notre infobulle */
   right: 150px; }

