﻿/* Hover help tip */
.tip {
    border-bottom: none;
    position: relative;
    cursor: help;
    text-decoration: none;
    color: inherit;
}
.tip > span:nth-child(2) {
    display: none;
    z-index: 100;
    position: absolute;
    padding: .6em;
    padding-left: 1em;
    top: 1.5em;
    left: 2.4em;
    width: 30em;
    background-color: #efefef;
    color: #0039a6;
    border: 1px solid #999999;
    border-radius: 0.5em;
    box-shadow: 5px 5px 25px #666666;
}
.tip h3 {
    color: white;
    background-color: #418bca;
    margin-top: 0px;
    box-shadow: none;
    text-align: center;
}
.tip span i {
    font-size: 75%;
}
.tip span hr {
    border-top: 1px dashed #418bca;
    margin: 10px 0px 5px 0px;
}
.tip:hover > span {
    display: inline-block;
    /*display: inline;*/
}

