a.tooltips {
    cursor: pointer;
    color: #0000FF;
    position: relative;
    display: inline;
}
a.tooltips span {
    position: absolute; 
    width: 240px;
    color: #FFFFFF; font-size:14px; 
    background: #0AA5FF;
    height: default;
    line-height: default;
    text-align:justify; 
    visibility: hidden;
    border-radius: 4px;
    padding:8px;
}
a.tooltips span:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0; height: 0;
    border-top: 8px solid #0AA5FF;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
a:hover.tooltips span {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
    left: 50%;
    margin-left: -76px;
    z-index: 999;
}
