/* 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: 9px;
height: 5px;
/* do not forget to put colors for backgrounds for before image(s) can load , this is more important for
the scrollbar itself than the scrollbase, as user can live without an image on the base but cannot see
any scrollbar when images cannot load. */
}
.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 9px;
/* ...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: 9px;
}
.vscrollerbarend {
/* height of this element should be set */
height: 9px;
width: 9px;
}

.vscrollerbase {
width: 9px;
height: auto;
background: #FFFFFF;
}
.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: 9px;
height: 9; /*Again, the safari fix, normally this line is not needed.*/
background: url(justinpics/ScrollUp.png) no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 9px;
width: 9px;
background: url(justinpics/ScrollDown.png) no-repeat;
}

/* 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 {
	z-index: 2;
	height: 20px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	background: url(justinpics/ScrollBarBack.png);
	max-height: 75px;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 9px;
height: 9px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #37917A;
}