/* Scroll Bar Master Styling Starts Here */
/* comments can freely be removed from this file */

/* do not modify .scrollgeneric class, required for proper operation */
.scrollgeneric {
line-height: 1px; font-size: 1px;
position: absolute; top: 0; left: 0;
}

.vscrollerbase, .vscrollerbar {
width: 5px;
}
.vscrollerbar {
padding:0;
background-image: url(images/vscroller.png);
width: 5px;
/* following is the bit that allows us fixed height scrollbars */
height: auto;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/

background-image: url(images/vscroller.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.*/
}

* html .vscrollerbar {
/* IE6 alpha png trick */
/* IE7 is not affected by this trick, as it perfectly handles the normal png */
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='images/vscroller.png');
background-image: none;
}

.hscrollerbarbeg {
/*left image holder for horizontal scroll bar*/
background: url(images/hscroller.png) -10px 0px;
height: 15px;
/* width is auto set by the script to fit the scrollbar */
}

.hscrollerbarend {
/*right image holder for horizontal scroll bar*/
background: url(images/hscroller.png);
height: 15px; width: 10px;
}

/* Following are OPTIONAL */

.vscrollerbase, .hscrollerbase {
	background-image: url(images/scrollbaseback.gif);
	width:5px;
}

.hscrollerbasebeg {
height: 0;
background: url(images/scrollbases.png) -22px 0px no-repeat;
display:none;
/* width is auto set to fill the base */
}

.hscrollerbaseend {
height: 15px; width: 7px;
background: url(images/scrollbases.png) 0% 0% no-repeat;
}

.vscrollerbasebeg {
width: 0;
height:auto;
display:none;
background: url(images/scrollbasesbeg.jpg) top center no-repeat;
/* height is auto set to fill the base */
}

.vscrollerbaseend {
width: 0;
height:auto;
display:none;
background: url(images/scrollbasesend.jpg) bottom center no-repeat;
}

.scrollerjogbox {
width: 13px; height: 15px;
top: auto; left: auto; bottom: 0px; right: 0px;
background: white url(images/scrolljog.png) 50% 50%;
}
/* Scroll Bar Master Styling Ends Here */
