
/*
 * Info Bulle
 * couleur
 * background #ffc ,
 * bordures #bbb ,
 * largeur
 * bordures 1px
 * taille de l'image (7px x 11px)
 */

.infoBulle em {
    display    : none;
    text-align : left;
}
.infoBulle:hover {
    z-index         : 500;
    position        : relative;
    border          : 0;
    text-decoration : none;
}
.infoBulle:hover em {
    display    : block;
    position   : absolute;
    top        : 20px;
    left       : 50%;
    /*max-width  : 150px;*/
    min-width  : 100px;
    padding    : 5px;
    border     : 1px solid #bbb;
    background : #ffc;
    color      : #000;
    font-style : normal;
}
.infoBulle:hover em span {
    position   : absolute;
    top        : -7px;
    left       : 5px;
    height     : 7px;
    width      : 11px;
    margin     : 0;
    padding    : 0;
    border     : 0;
    background : transparent url("../image-infoBullePointe.gif");
}
