a.infotuto
{
position: relative;
}
a.infotuto span
{
display: none; /* on masque l'infobulle */
}
a.infotuto:hover
{
background: none; /* correction d'un bug IE */
z-index: 500; /* on définit une valeur pour l'ordre d'affichage */
}
a.infotuto:hover span
{
display: inline; /* on affiche l'infobulle */
position: absolute;
top: 20px; /* on positionne notre infobulle */
left: 20px;
}

a.infoeve
{
position: relative;
text-decoration: none;
}
a.infoeve span
{
display: none; /* on masque l'infobulle */
}
a.infoeve:hover
{
background: none; /* correction d'un bug IE */
z-index: 500; /* on définit une valeur pour l'ordre d'affichage */
}

a.infoeve:hover span
{
display: inline; /* on affiche l'infobulle */
position: absolute;
font-weight: normal;
white-space: nowrap;
padding: 10px;
background-color: rgb(244,249,253);
border: 2px ridge black;
color: #000000;
top: 15px; /* on positionne notre infobulle */
left: -10px;
}