﻿abbr {
    cursor: pointer;
}

.tooltipV1 {
    position: absolute;
    background-color: black;
    z-index: 100;
    border: 1px solid black;
    font-size: smaller;
    color: white;
    padding: 4px;
    width: 150px;
    font-size: 12px;
    opacity: 0.8;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

a.tooltipBZ {
    position: relative;
    display: inline;
    cursor: pointer;
}

    a.tooltipBZ span {
        position: absolute;
        width: 300px;
        color: #FFFFFF;
        background: #000000;
        height: 120px;
        font-size: 14px;
        line-height: 30px;
        text-align: center;
        visibility: hidden;
        margin-left: 10px;
        border-radius: 5px;
    }

a:hover.tooltipBZ span {
    visibility: visible;
    opacity: 0.7;
    left: 100%;
    top: 50%;
    margin-top: -15px;
    margin-right: 15px;
    z-index: 999;
}
