#overview-aside-nav {
    position: fixed;
    top: 50%;
    right: 6px;
    margin-top: -11.6875em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 9999;
}

#overview-aside-nav ul {
    list-style: none;
    display: block
}

#overview-aside-nav ul li {
    position: relative;
    width: 20px;
    height: 8px;
    padding: 7px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease
}

#overview-aside-nav ul li div {
    width: 8px;
    height: 8px;
    /*overflow: hidden;*/
    margin-left: auto;
    background: #C8C8C8;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    box-shadow: inset 0 0 1px #777;
    position: relative;
}

#overview-aside-nav ul li b {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 24px;
    white-space: nowrap;
    font-size: 12px;
    color: #0096FF;
    font-weight: 600;
    line-height: 1
}

#overview-aside-nav ul li:hover b {
    display: block !important;
    -webkit-animation: fadein 0.3s ease-out;
    -moz-animation: fadein 0.3s ease-out;
    -ms-animation: fadein 0.3s ease-out;
    -o-animation: fadein 0.3s ease-out;
    animation: fadein 0.3s ease-out
}

#overview-aside-nav ul li:hover div {
    background: #00A8FF
}

#overview-aside-nav ul li.on {
    height: 30px !important
}

#overview-aside-nav ul li.on div {
    background: #00A8FF;
    height: 30px !important
}

#overview-aside-nav ul li div p {
    position: absolute;
    color: #fff;
    left: -150px;
    margin-top: -5px;
    /*background-color: red;*/
    width: 140px;
    text-align: right;
    opacity: 0;
}