/* ---------- basic theme: these are the most necessary styles --------------------------------- */
.scrollbar-pane {
    margin-right: 20px;
}
.scrollbar-handle-container {
    background: #B2B2B2;
    width: 6px;
}
.scrollbar-handle {
    width: 6px;
    background: #FFF;
}
.scrollbar-handle:hover {
    background: #666;
}
.scrollbar-handle.move {
    background: #666;
}
.scrollbar-handle-up {
    width: 0px;
    height: 0px;
    background: #DDD;
	display: none;
}
.scrollbar-handle-up:hover {
    background: #666;
}
.scrollbar-handle-down {
    width: 0px;
    height: 0px;
    background: #DDD;
	display: none;
}
.scrollbar-handle-down:hover {
    background: #666;
}
/* ---------- simple theme --------------------------------------------------------------------- */
.simple .scrollbar-pane {
    margin-right: 16px;
}
.simple .scrollbar-handle-container {
    background: #EEE;
    width: 15px;
}
.simple .scrollbar-handle-container.hover,
.simple .scrollbar-handle-container.move {
    background: #E6E6E6;
}
.simple .scrollbar-handle, 
.simple .scrollbar-handle-up, 
.simple .scrollbar-handle-down {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAHCAYAAACcLcTKAAAAMklEQVR42mP4TwRgIBJQwwyGQWkZrR0+GDxPUO9gC2Gi3UNpqFArpIdFUh3UGZqY0gwAQe422HjkstgAAAAASUVORK5CYII=);
	background-repeat: no-repeat;
}
/* handle */
.simple .scrollbar-handle {
    width: 13px;
    border: 1px solid #CCC;
	background-color: #CCC;
	background-position: -16px 50%;
}
.simple .scrollbar-handle:hover {
    border: 1px solid #666;
}
.simple .scrollbar-handle.move {
    border: 1px solid #666;
    background-color: #999;
}
/* arrow up */
.simple .scrollbar-handle-up {
    width: 13px;
    height: 13px;
    border: 1px solid #CCC;
    background-color: #CCC;
	background-position: -34px 2px;
	margin-bottom: 1px;
}
.simple .scrollbar-handle-up.hover,
.simple .scrollbar-handle-up:hover {
    border: 1px solid #666;
}

.simple .scrollbar-handle-up.move {
    background-color: #999;
}
/* arrow down */
.simple .scrollbar-handle-down {
    width: 13px;
    height: 13px;
    border: 1px solid #CCC;
    background-color: #CCC;
	background-position: 2px 4px;
	margin-top: 1px;
}
.simple .scrollbar-handle-down.hover,
.simple .scrollbar-handle-down:hover {
    border: 1px solid #666;
}
.simple .scrollbar-handle-down.move {
    background-color: #999;
}