/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbar {
width: 13px;
	background: #999 url(cssscroll/vsbmiddle.jpg) no-repeat 0 28px;
}
.vscrollerbarbeg {
/* ...unless we force the size using an !important decleration */
/* forcing would not be required if Webkit-Safari did not have a background-repeat bug*/
/* this may be fixed by the time Safari 3.0 is released. */
width: 13px;
	background: url(cssscroll/vsbtop.png) no-repeat 0;
	height: 28px !important;
}
.vscrollerbarend {
width: 13px;
	background: url(cssscroll/vsbbottom.png) no-repeat 0;
	height: 28px;
}

.vscrollerbase {
width: 13px;
	background: white 0px 0px;
}
.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: 13px;
height: 28px !important;
	background-color: silver;
}
.vscrollerbaseend {
width: 13px;
	background: silver 0 0;
	height: 28px;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
height: 16px; background-color: white;
}
.hscrollerbar {
height: 16px; background-color: black;
}

.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: 0;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 13px;
height: 16px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #37917A;
}


/* Scroll Bar Master Styling Ends Here */

