/* Tooltips */

#powerTip a {
    color: #bbb;
}

#powerTip {
    cursor: default;
    background-color: #333;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    color: #fff;
    display: none;
    padding: 10px;
    position: absolute;
    z-index: 1000;
    max-width: 400px;
}

#powerTip:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    margin-top: -5px;
    border-right: 10px solid #333;
    border-right: 10px solid rgba(0, 0, 0, 0.8);
}