/* 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: 12px;
	background: #000 url(../images/basebarcaps_verticalbarbody.png) 0px 0px repeat-y;
}
.vscrollerbar {
	width: 12px;
	background: #FFF url(../images/basebarcaps_verticalbarbody.png) -15px 0px repeat-y;
	padding: 15px;
	
}
.hscrollerbase {
height: 15px;
background-color: white;
}
.hscrollerbar {
height: 15px;
background-color: black;
	padding: 15px;

}
.vscrollerbarbeg {
/* Top image holder for vertical scrollbar*/
background: url(../images/basebarcaps_verticalbarbody.png) -45px -30px no-repeat;
width: 12px;
/* Height of this class is normally set by the script, to fit the scrollbar, but Webkit (Safari's rendering
engine) currently has a bug on no-repeat for negatively positioned backgrounds, causing the top
image to repeat on certain sizes. In this style, we do not need our script to strech the
vscrollerbarbeg, so we can fix the problem by forcing the size using CSS with an !important decleration: */
height: 15px !important;
}
.vscrollerbarend {
/* Bottom image holder for vertical scrollbar*/
background: url(../images/basebarcaps_verticalbarbody.png) -45px 0px no-repeat;
width: 12px;
height: 15px;
}
.vscrollerbasebeg {
/* Vertical scrollbar's base top-cap */
/* This may be used for holding the up arrow */
background: url(../images/basebarcaps_verticalbarbody.png) -30px -30px no-repeat;
width: 12px;
/* height of this element is normally auto set by the script to fit the scrollbase, to cover the base... */
height: 15px !important; /*  Safari BG repeat fix */
}
.vscrollerbaseend {
/* Vertical scrollbar's base bottom-cap */
/* This may be used for holding the down arrow */
background: url(../images/basebarcaps_verticalbarbody.png) -60px -30px no-repeat;
height: 15px;
width: 12px;
}
.scrollerjogbox {
width: 10px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}
