a:link{ 
color : #ff8000;
text-decoration: underline;
 } 
a:visited { 
color : #ff8000; text-decoration: underline;
} 
a:active{ 
color : #ff8000; text-decoration: underline;
} 
a:hover { 
color : #ff8000; text-decoration:none; 
}
/*lien magique*/
a.info {
   position: relative;
   color: #ff8000;
   text-decoration: none;
   z-index: 0;
}
a.info span {
   display: none; /* on masque l'infobulle */
}
a.info:hover {
   background: none; /* correction d'un bug IE */
   color: #313131;
   z-index: 100; /* on définit une valeur pour l'ordre d'affichage */
}
a.info:hover span {
   display: inline; /* on affiche l'infobulle */
   position: absolute;
   top: 30px; /* on positionne notre infobulle */
   left: 60px;
   background: white;
   color: #313131;
   padding: 3px;
   border: 1px solid #f2f2f2;
   border-left: 1px solid #f2f2f2;
   width:200px;
}
a.loupe img, a.loupe  {
	cursor:url(/fichiers/css/loupe.cur), auto;
	padding-bottom:15px;
	color:#000000;} 

