/* 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: 17px;
background: transparent url(img/scroll_bg.png) center center repeat-y;
/*filter:alpha(opacity=99);-moz-opacity:.99;opacity:.99;*/
}
.vscrollerbar {
width: 17px;
background: transparent url(img/scroll_bar_bg.png) 0px 0px repeat-y;
filter:alpha(opacity=49);-moz-opacity:.49;opacity:.49;
cursor:move;
}

/*.vscrollerbarbeg {
height: 17px !important;
width: 17px;
background: url(img/scroll_begin.png) 0 0 no-repeat;
}
.vscrollerbarend {
height: 17px;
width: 17px;
background: url(img/scroll_end.png) 0 0 no-repeat;
}
*/

.vscrollerbasebeg {
/* height of this element is auto set to fit the scrollbase, to cover the base */
/* this element can be used to place a faux top arrow image */
width: 17px;
height: 17px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(img/scroll_begin.png) 0 0 no-repeat;
}

.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 17px;
width: 17px;
background: url(img/scroll_end.png) 0 0 no-repeat;
}

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 20px;
z-index: 2;
}


.hscrollerbase {
height: 5px;
background-color: #666667;
}
.hscrollerbar {
height: 5px;
background-color: black;
}

.scrollerjogbox {
width: 15px;
height: 5px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}