/***CSS_BULLES.css ***/
/***************************/
/*** Doc dans CSS_documentation.css ***/
/*** extrait de http://classe.bilingue.free.fr/fr/TDM-html/memento/info-bulles.html ***/

:root { /* Variable CSS */
	/*--bodyColor: #100000; /* Couleur de fond du body de la page */
}

a.bulle { /* a. parce que c'est un lien */
position:relative;
color:#C800F0;
text-decoration:none;
font-family:arial, verdana, sans-serif;
text-align:center;
}
a.bulle:hover {
background: none;
/*z-index: 50;*/
}

a.bulle span {
display: none;
}

a.bulle:hover span {
display: block;
position: absolute;
top: -40px; 
left: 0px; 
font-family:arial, verdana, sans-serif;
text-align:left;
font-size:17px;
color:#0CBFA7;
font-weight:normal;
width:200px;
background: white;
padding: 5px;
border: #62c0f4 solid 1px ;
text-indent: 0;
}