/* 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 */

/* Scroll Bar Master Styling Ends Here */
* html .vscrollerbar {
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='images/scrollbar.png'); /* IE7 is not affected by this trick, as it perfectly handles the normal png */
}

.hscrollerbar {
	background-color: #84ADD6;
	height: 9px;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
	height: 9px;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
	background: #698AAA;
	bottom: 0px;
	height: 9px;
	left: auto;
	right: 0px;
	top: auto;
	width: 9px;
}

.scrollgeneric {
	font-size: 1px;
	left: 0;
	line-height: 1px;
	position: absolute;
	top: 0;
}

.vscrollerbar {
	background-image: url(images/scrollbar.png);
	background-image: url(images/scrollbar.png); /* unfortunately, due to limitations of CSS, we cannot provide a color for the background when we are
using alpha images, thay have to be transparent.*/
	height: 39px !important; /* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
	width: 9px; /* following is the bit that allows us fixed height scrollbars */
}

.vscrollerbar, .hscrollerbar {
	padding: 0px; /* 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 */
	z-index: 2;
}

.vscrollerbase {
	width: 9px;
}
