/* CSS Document */
a img { border:0; }
a.info {
   position: relative;
   color: #9fc13f;
   text-decoration: none;
   font-size:12px;
   font-weight:bold;
}
a.info span {
   display: none; /* on masque l'infobulle */
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   z-index: 500; /* 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: -380px; /* on positionne notre infobulle */
   left: 0px;
   background: #9fc13f;
   padding: 3px;
   border: 1px solid green;
   z-index:250;
}
a.info:hover span.fsc {
   display: inline; position: absolute; white-space: nowrap; top: -100px; left: 50px; background: #9fc13f; padding: 3px; border: 1px solid green; z-index:250;
}
a.info:hover span.pefc {
   display: inline; position: absolute; white-space: nowrap; top: -100px; left: 50px; background: #9fc13f; padding: 3px; border: 1px solid green; z-index:250;
}
a.info:hover span.fsc2 {
   display: inline; position: absolute; white-space: nowrap; top: -220px; left: 40px; background: #9fc13f; padding: 3px; border: 1px solid green; z-index:250;
}
a.info:hover span.pefc2 {
   display: inline; position: absolute; white-space: nowrap; top: -220px; left: 40px; background: #9fc13f; padding: 3px; border: 1px solid green; z-index:250;
}

