        /*-------------*/
        /* Infobulle   */
        /*-------------*/		


            
            /* Position et couleur bulle */
            a span{ 
                position:absolute;	
				width:400px;				
                margin-top:80px; 
                margin-left:-435px; 				
				font-family:Georgia; 
				font-size:0.95em;					
                color:#fff; 
                background:rgba(106, 90, 205, 0.8); 
                padding:18px; 
                border-radius:3px; 
				z-index:50;				
                
                /* Faire disparaire infobulle par défaut */
                /* On determine l'origine de la rotation */ 
                transform:scale(0) rotate(-180deg);
                /* Faire durer l'effet */
                transition:.75s  .85s;
                /* Effet sur la transparence */ 
                opacity:0;
            }
 

            /* Apparition de la bulle avec le scale à 1 */ 
            a:hover span, a:focus span{ 
                transform:scale(1) rotate(0);
                /* Effet sur la transparence */ 
                opacity:2;
            }
		
