/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 10px;
background-color: white;
}
.vscrollerbar {
width: 10px;
background-color: black;
}
.hscrollerbase {
height: 10px;
background-color: #bbb;
}
.hscrollerbar {
height: 10px;
background-color: #444;
padding: 12px;
z-index: 2;
}

.xscrollerjogbox {
width: 10px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}

.hscrollerbasebeg {
/* Horizontal scrollbar's left-cap */
/* This may be used for holding the left arrow */
background: url(/image/scrollLeft.png) -0px 0px no-repeat;
height: 10px;
/* width of this element is normally auto set by the script to fit the scrollbase, to cover the base... */
width: 11px !important; /* Safari BG repeat fix */
}

.hscrollerbaseend {
/* Horizontal scrollbar's right-cap */
/* This may be used for holding the right arrow */
height: 10px;
width: 11px !important;
background: url(/image/scrollRight.png) -0px 0px no-repeat;
}


