@charset "utf-8";
/* CSS Document */

/*info bulle texte*/

.link_bulle {
cursor: default;
color: #660099;
text-decoration:underline;
border-bottom: 1px dotted green; 
}

.infos_bulle {
position: absolute;
top: -999px;
width:300px;
visibility: hidden;
opacity: 0.9;
-moz-opacity: 0.9;
-khtml-opacity: 0.9;
filter: alpha(opacity=90);
color: #003300;
 background-color:#CCFF99; 
 z-index: 20;
 font-family: "Book Antiqua", Verdana, Arial, sans-serif;
 font-size:14px;  
 }
 
a.info span {
   display: none; /* on masque l'infobulle */
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   z-index: 20; /* on définit une valeur pour l'ordre d'affichage */
   cursor: help; /* on change le curseur par défaut en curseur d'aide */  
}
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: fixed;   
   line-height:1.2em;
   font-style: normal;
   white-space: normal;
   font-weight: normal;
   /* (white-space: nowrap; si infobulle sans "width", si l'on veut  qu'il n'y ait pas de retour à la ligne non-désiré */
   font-size:18px;
   color: 003300;
   top: 30px; /* on positionne notre infobulle */
   left: 20px;
   background:#CCFF99;   
   border: 1px solid green; 
   text-align:center;                  
}

.infoBulle{
	position: absolute;
	visibility : hidden;
	border:1px solid green;
	text-align: justify;
	padding:4px;			
	opacity: 0.9;
	-moz-opacity: 0.9;
	-khtml-opacity: 0.9;
	filter: alpha(opacity=90);
	line-height: 1.4em;	 		
}
 
.titreBulle{
font-family: "Book Antiqua", Verdana,Arial,sans-serif;
font-size:14px;
background:#CCFF99;
color:#006633;
text-align: justify;
 font-weight:inherit;
  }
 
.corpsBulle{
	font-family:Verdana,Arial,sans-serif;
	font-size:12px;
	color:#006633;
	text-align:center;
	background-color: #CCFF99;					
}

.notaBulle{
    font-family:"Book Antiqua", Verdana,Arial,sans-serif;
    font-size:12px;
	background:#CCFF99;
    color: #6633FF;
    text-align:right;
    font-style:italic;    
   }


a {
text-decoration:underline;}
  


