/* CSS Document */

a.tooltip{
align: center;
}

a:hover.tooltip{
        padding: 0;
}

.tooltip:hover span span{
        display: block;
}

.tooltip span{
        position: absolute;
        text-decoration: none;
}

.tooltip span span{
        display: none;
        position: absolute;
        background-color: #8c0505;
        border: 1px black;
        font-weight: bolder;
        text-transform: capitalize;
        padding: 5px;
        color: #FFFFFF;
        text-decoration: none;
        width: 70px;
        z-index: 200;
        top: 35px;
        left: -30px;
}

