/* 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: 5px;
	height: 10px !important;
	/* 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. */
	background: #666666;
}
.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 10px !important;
/* ...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: 10px;
background: #B1B8E2;
}
.vscrollerbarend {
/* height of this element should be set */
height: 0px;
width: 0px;
}

.vscrollerbase {
	width: 5px;
	background: #666;
	background-position: center bottom;
}
.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: 5px;
height: 5px !important; /*Again, the safari fix, normally this line is not needed.*/
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 5px;
width: 5px;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
height: 5px; background-color: white;
}
.hscrollerbar {
height: 5px; 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: 5px;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 36px;
height: 16px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #37917A;
}


/* Scroll Bar Master Styling Ends Here */
#mycustomscroll {
	/* Typical fixed height and fixed width example */
width: 462px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	padding-right: 5px;
	min-height: 680px;
	margin-bottom: 5px;
}
#mycustomscroll_large {
	/* Typical fixed height and fixed width example */
width: 629px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	padding-right: 5px;
	min-height: 600px;
	margin-bottom: 5px;
}

.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 462px;
height: auto;
position: relative;
color: black;
padding: 1px;
}
