/* 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;
}

.vscrollerbar { 
background: url(images/scrollbar.png) -1px 0px no-repeat;
width: 28px;
/* following is the bit that allows us fixed height scrollbars */
height: 20px !important;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
/* 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.*/
cursor:pointer;
}

.hscrollerbar {
background: url(images/hscrollbar.png) 0px 1px no-repeat;
width: 20px !important;
/* following is the bit that allows us fixed height scrollbars */
height: 29px;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
/* 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.*/
cursor:move;
}

.vscrollerbase, .vscrollerbar {
width: 29px;
}

.hscrollerbase, .hscrollerbar {
height: 29px;
}

.vscrollerbar{
/*padding information of these elements are only used for
padding of the scroll-bar with respect to the scroll base,
the padding will automatically be turned off by the script*/
padding: 5px 0px;
/* z-index for scrollbars no longer has to be given as of version
1.7.5 for correct operation, but it is still recommended, as this
decides the z-index for content.*/
z-index: 2;
}

.hscrollerbar {
/*padding information of these elements are only used for
padding of the scroll-bar with respect to the scroll base,
the padding will automatically be turned off by the script*/
padding: 0px 5px;
/* z-index for scrollbars no longer has to be given as of version
1.7.5 for correct operation, but it is still recommended, as this
decides the z-index for content.*/
z-index: 2;
}

/*top image holder for vertical scroll bar*/
/*.vscrollerbarbeg {
background: url(images/vscroller.png) 0px -10px;
width: 29px;
}*/
/* height is auto set by the script to fit the scrollbar */

/*bottom image holder for vertical scroll bar*/
/*.vscrollerbarend {
background: url(images/vscroller.png);
width: 29px; height: 0px;
}*/

/* Following are OPTIONAL */

.vscrollerbase {
/*background-color: #FFFFFF;*/
background-image: url(images/scrollbaseback.png);
}

.hscrollerbase {
/*background-color: #FFFFFF;*/
background-image: url(images/hscrollbaseback.png);
}

.hscrollerbasebeg {
height: 29px;
background: url(images/scrollbases.png) -53px -12px no-repeat;
cursor:pointer;
/* width is auto set to fill the base */
}

.hscrollerbaseend {
height: 29px; width: 7px;
background: url(images/scrollbases.png) 2px	-12px no-repeat;
cursor:pointer;
}

.vscrollerbasebeg {
width: 29px;
background: url(images/scrollbases.png) -15px -29px no-repeat;
cursor:pointer;
/* height is auto set to fill the base */
}

.vscrollerbaseend {
height: 7px; width: 29px;
background: url(images/scrollbases.png) -15px -20px no-repeat;
cursor:pointer;
}

/* Scroll Bar Master Styling Ends Here */
