a.tooltips {
    position: relative;
    display: inline;
}
a.tooltips span {
    font-size: 13px;
    font-family:"Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
    font-weight: bold;
    position: absolute;
    width:270px;
    color: #ffffff;
    background: #000000;
    height: auto;
    line-height: 20px;
    text-align: justify;
    visibility: hidden;
    border-radius: 6px;
    padding: 15px
}
a.tooltips span:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0; height: 0;
    border-top: 8px solid #000000;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
a:hover.tooltips span {
    visibility: visible;
    opacity: 0.8;
    bottom: 30px;
    left: 50%;
    margin-left: -76px;
    z-index: 999;
}
blockquote {
    line-height: 1.200;
}