#tooltip{ /* Всплывающая подсказка */
        background:#fff;
        color:#000;
        text-align:center;
        position:absolute;
        max-width:500px;
        z-index:9999;
        display:none;
        border-radius:3px;
        box-shadow:4px 4px 8px rgba(0, 0, 0, 0.3);
        padding:5px 8px;
        font-size:12px;
        text-shadow:none;
        margin-top:-10px;
        margin-left:-10px;
    }
    #tooltip:before{ /* Всплывающая подсказка */
            position: absolute;
            width: 0;
            height: 0;
            line-height: 0;
            border-top: 0px dashed #fff; 
            border-right: 16px dashed #fff;
            border-bottom: 22px dashed #fff;
            border-left: 0px dashed #fff;
            top: -20px;
            left:10px;
            border-bottom-style: solid;
            border-top: none;
            border-left-color: transparent;
            border-right-color: transparent;
            content:'';
    }