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

.vscrollerbase {
width:22px;
}
.vscrollerbar {
background-image: url("/images/misc_elements/scrollbar_handle.gif");
width: 30px;
/* following is the bit that allows us fixed height scrollbars */
height: 63px !important;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/

background-image: url("/images/misc_elements/scrollbar_handle.gif");
/* 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/misc_elements/scrollbar_handle.gif');
background-image: none;
}


/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {height: 22px;}
.hscrollerbar {height: 22px; background-color: #84ADD6;}

.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: 30px;
z-index: 10;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 30px;
height: 22px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #698AAA;
}

/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {line-height: 1px;font-size: 1px;position: absolute;top: 0; left: 0;}
.vscrollerbase {width: 15px;background-color: white;}
.vscrollerbar {width: 15px;background-color: black;}
.hscrollerbase {height: 15px;background-color: white;}
.hscrollerbar {height: 15px;background-color: black;}
.hscrollerbar {background: transparent url("/images/misc_elements/horizontal_scrollbar_segment.gif") 0px -30px repeat-x;}
.vscrollerbar {background: transparent url("/images/misc_elements/scrollbars.gif") -15px 0px repeat-y;}
.vscrollerbar, .hscrollerbar {padding: 10px;z-index: 2;}
.vscrollerbarbeg {background: url("/images/misc_elements/scrollbars.gif") -45px -30px no-repeat;width: 15px;height: 15px !important;}
.vscrollerbarend {background: url("/images/misc_elements/scrollbars.gif") -45px 0px no-repeat;width: 15px;height: 15px;}
.hscrollerbarbeg {background: url("/images/misc_elements/scrollbars.gif") -60px -15px no-repeat;height: 15px;width: 15px !important;}
.hscrollerbarend {background: url("/images/misc_elements/scrollbars.gif") -30px -15px no-repeat;height: 15px;width: 15px;}
.scrollerjogbox {width: 15px;height: 15px;top: auto; left: auto;bottom: 0px; right: 0px;background: #4E727C url("/images/misc_elements/horizontal_scrollbar.gif") 0px 0px;}
.vscrollerbase {background: transparent url("/images/misc_elements/scrollbars.gif") 0px 0px repeat-y;}
.vscrollerbasebeg {background: url("/images/misc_elements/scrollbars.gif") -30px -30px no-repeat;width: 15px;height: 15px !important;}
.vscrollerbaseend {background: url("/images/misc_elements/scrollbars.gif") -60px -30px no-repeat;height: 15px;width: 15px;}
.hscrollerbase {background:transparent url("/images/misc_elements/scrollbars.gif") 0px -15px repeat-x;}
.hscrollerbasebeg {background: url("/images/misc_elements/scrollbars.gif") -60px 0px no-repeat;height: 15px;width: 15px !important;}
.hscrollerbaseend {height: 15px;width: 15px;background: url("/images/misc_elements/scrollbars.gif") -30px 0px no-repeat;}
.scrollerjogbox:hover {background: #5E828C url("/images/misc_elements/scrollbars.gif") -45px -15px;}

