#graph{
    width: 602px;
    margin-top: 15px;
    height: 300px;
    border: solid 1px #ccc;
    position: relative;
    overflow: hidden;
}
.graph-marker{
    border: solid 3px #f00;
    background-color: #CCC;
    color: #CCC;
}
#points{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.point{
    position: absolute;
    z-index: 997;
    width: 10px;
}
.point:hover{
    width: 300px;
}
.pointGraph{
    height: 8px;
    width: 8px;
    border-radius: 8px;
    border: solid 2px #177BBB;
    background-color: #fff;
    z-index: 998;
}
.pointGraph:hover{
    border-width: 3px;
    height: 12px;
    width: 12px;
    margin-left: -2px;
    margin-top: -2px;
}
.hint{
    position: absolute;
    z-index: 9999;
    /*width: 150px !important;*/
    height: 35px;
    text-align: left;
    border: solid 2px #177BBB;
    background-color: #fff;
    border-radius: 4px;
    display: none;
    font-size: 11px;
    padding: 5px 10px;
}
.point:hover .hint{
    display: inline-block;
}