a:link {
	text-decoration:none;
	color:#ea6211;
	font-weight:bold;
}

a:visited {
	color:#ea6211;
	text-decoration:none;
	font-weight:normal;
}

a:hover {
	font-style:italic;
	color:#ea6211;
	font-weight:bold;
}

a.info {
   position: relative;
   color:#ea6211;
   text-decoration: none;
  }
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 */
   cursor:pointer;

 }
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: fixed;
   top: 375px; /* on positionne notre infobulle et on détermine sa largeur */
   left: 160px;
   width:600px;
   background:#fff5e5; /*on change l'aspect du texte*/
   color:black;
   text-decoration:none;
   font-weight:normal;
   font-style:normal;
   padding: 3px;
   border: 1px solid #ea6211;
 
}
