.jspScrollable {
    outline: none;
}

.scroller-overflow-top,
.scroller-overflow-bottom {
    position: relative;
}

.scroller-overflow-top::before,
.scroller-overflow-bottom::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 16px;
    background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 80%, color-stop(0%, rgba(0, 0, 0, 0.15)), color-stop(80%, rgba(0, 0, 0, 0))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%); /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 80%); /* W3C */
    background-repeat: no-repeat;
    z-index: 10;
}

.scroller-overflow-top::before {
    top: 0;
    background-position: center -8px;
}

.scroller-overflow-bottom::after {
    bottom: 0;
    background-position: center 8px;
}
