/*
    css/tooltips.css -- fancy tooltips
    (taken from http://loadaveragezero.com/vnav/labs/CSS/tooltips.php)
*/

a.tooltip {
    position: relative;
    cursor: help;
    font-size: 10px;
    text-decoration: none;
    font-weight: normal;
}

a.sup {
    vertical-align: super;
}

a.tooltip span.tip {
    vertical-align: baseline;
    display: none;
    color: black;
}

a.tooltip:hover span.tip {
    display: block;
    z-index: 2;
    position: absolute;
    top: 1.6em;
    width: 300px;
    padding: 3px 7px 4px 6px;
    border: 1px solid #336;
    background-color: #f7f7ee;
    text-align: left;
}

.tip_right {
    top: 10px;
    right: 10px;
}

.tip_left {
    left: 0px;
}

.tip_title {
    font-weight: bold;
}