/* full css tip */
span[data-tip] {
    border-bottom:1px dotted #888;
    cursor: help;
}

[data-tip] {
    display: inline-block;
}

[data-tip]:hover {
    position: relative;
    z-index:9999;
}

[data-tip]:hover:before {
    content: attr(data-tip);
    position: absolute;
    width:300px;
    padding: 15px;
    background-color:#434343;
    left: -10px;
    top: 24px;
    font-size:14px;
    line-height:18px;
    font-weight:300;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #fff;
    z-index:9999;
}

[data-tip]:hover:after {
    content: "";
    position: absolute;
    border-bottom: 8px solid #434343;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    left: 0;
    top: 16px;
}
