#tooltip{
    text-align: center;
    color: #fff;
    background: #0D7CC1;
    position: absolute;
    z-index: 100;
    padding: 8px 10px 8px 10px;
    font-size:12px;
    border-radius: 5px;
    /*text-shadow: 1px 1px 2px rgba(0, 0,0, 1);*/
    line-height:15px;
    z-index: 9999;
}

#tooltip:after /* triangle decoration */
{
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #0D7CC1;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    margin-left: -7px;
}

#tooltip.top:after
{
    border-top-color: transparent;
    border-bottom: 7px solid #0D7CC1;
    top: -20px;
    bottom: auto;
}

#tooltip.left:after
{
    left: 7px;
    margin: 0;
}

#tooltip.right:after
{
    right: 7px;
    left: auto;
    margin: 0;
}