a:link{ 
color : #ffcc00; text-decoration: none;
font-family:Tahoma; font-weight:bold; font-size:11px;
 } 
a:visited { 
color : #ffcc00; text-decoration: none;
font-family:Tahoma; font-weight:bold; font-size:11px;
} 
a:active{ 
color : #ffcc00; text-decoration: none;
font-family:Tahoma; font-weight:bold; font-size:11px;
} 
a:hover { 
color : #FFCC00; text-decoration: underline; 
font-family:Tahoma; font-weight:bold; font-size:11px;
}
/*lien magique*/
a.info {
   position: relative;
   color: #e2af00;
   text-decoration: none;
}
a.info span {
   display: none; /* on masque l'infobulle */
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   z-index: 100; /* on définit une valeur pour l'ordre d'affichage */
}
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: absolute;
   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: 25px; /* on positionne notre infobulle */
   left: 40px;
   background: white;
   color: #53211d;
   padding: 3px;
   border: 1px solid #53211d;
   border-left: 1px solid #53211d;
}

