  /*//////////////////////////////////////
   // BULLE DE PRESENTATION DES MODELES  //
   //////////////////////////////////////*/
   
   a.bulle {
	text-align: center;
	color: rgb(113, 115, 115);
	font-family: Gill Sans, HelveticaNeue, Helvetica Neue, Arial, sans-serif; 
	font-size: 10px; 
	position: relative; 
	scale: 0;
}
a.bulle:hover {
	z-index: 50; 
	zoom: 1;
}
a.bulle span /* parametre de la bulle fantome sans le hover */
{
	border-radius: 10px; 
	left: -50px; 
	top: -80px; 
	width: 340px; 
	text-align: justify; 
	font-weight: normal; 
	display: block; 
	position: absolute; 
	opacity: 0; 
	scale: 0;
	filter:alpha(opacity=0);
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

a.bulle span::before /* Fleche haut */
{
	left: 125px; 
	top: -10px; 
	width: 0px; 
	height: 0px; 
	border-right-color: transparent; 
	border-bottom-color: rgb(224, 227, 228); 
	border-left-color: transparent; 
	border-right-width: 10px; 
	border-bottom-width: 10px; 
	border-left-width: 10px; 
	border-right-style: solid; 
	border-bottom-style: solid; 
	border-left-style: solid; 
	position: absolute; 
	content: "";
}

a.bulle:hover span /* Bulle survol */
{
	background: rgb(224, 227, 228); 
	padding: 3px; 
	left: -50px; 
	top: -50px; 
	display: block; 
	position: absolute; 
	zoom: 1; 
	opacity: 0.98; 
	box-shadow: 0px 5px 25px rgba(0,0,0,0.3), 0px -1px 0px rgba(255,255,255,0.4); 
	scale: 1;
	z-index: 50; 
	filter:alpha(opacity=100);
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}