.vscroller {
   
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    height: 615px;
	margin-top:20px;
}

.vscroller-content {
    position: relative;
    padding: 15px;
    margin-right: 15px;
}

.vscroller-scroll-body {
    position: absolute;
    right:0px;
    top: 10px;
    background: #666;
    width: 10px;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
}

.vscroller-drag .vscroller-scroll-body,
.vscroller-scroll-body:hover {
    opacity: 1;
}

.vscroller-scroll {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #999;
    width: 10px;
    height: 45px;
    border-radius: 8px;
    transition: background-color 0.25s;
    -webkit-transition: background-color 0.25s;
    z-index: 99;
    cursor: pointer;
}

.vscroller-scroll:focus {
    background: #ccc;
}
