

    /* Infobulle */
 
    #tooltip {
        position:fixed;
        z-index:9999;
        color:#ffffff;        
        width:180px;
    }
     
    /* hack IE */
    *html #tooltip .tipBody {margin-bottom:-6px;}
     
    #tooltip .tipBody {
        background-color: rgba(0, 0, 0, 0.6);
        padding:5px;
        font-family: "Birdibeuk";
        font-size:18px;
        text-align:center;
        
        -webkit-border-top-right-radius: 20px;
        -webkit-border-bottom-left-radius: 20px;
        -moz-border-radius-topright: 20px;
        -moz-border-radius-bottomleft: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        
        border:2px black solid;
    }