.jspContainer {
    overflow: show;
    position: relative;
}
/*
.jspContainer:after {
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 1000px;
    height: 10px;
    display: block;
    content: "";
    box-shadow: 0 -8px 10px #8e725b;;
}
*/
.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
}

.jspVerticalBar * {
    margin: 0;
    padding: 0;
}

.jspCap {
    display: none;
}

.jspTrack {
    position: relative;
    width: 11px;
    -webkit-transition: background-color .333s ease;
    -moz-transition: background-color .333s ease;
    -ms-transition: background-color .333s ease;
    -o-transition: background-color .333s ease;
    transition: background-color .333s ease;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 5px;
    margin-left: 3px;
    background: #554334;
    -webkit-box-shadow: 0 0 1px rgba(85, 67, 52, .3);
    -moz-box-shadow: 0 0 1px rgba(85, 67, 52, .3);
    -ms-box-shadow: 0 0 1px rgba(85, 67, 52, .3);
    -o-box-shadow: 0 0 1px rgba(85, 67, 52, .3);
    box-shadow: 0 0 1px rgba(85, 67, 52, .3);
    -webkit-transition: width .2s ease, margin-left .2s ease;
    -moz-transition: width .2s ease, margin-left .2s ease;
    -ms-transition: width .2s ease, margin-left .2s ease;
    -o-transition: width .2s ease, margin-left .2s ease;
    transition: width .2s ease, margin-left .2s ease;
}

.jspContainer:hover .jspTrack {
    background: #b0927a;
}

#scroll.hover .jspDrag {
    margin-left: 0;
    width: 11px;
}