/* 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: 8px;
background: url(images/scrollbar.png) -35px 0px repeat-y;
/* 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. */
}
.vscrollerbase {
width: 8px;
background: url(images/scrollbar.png) 0px 0px repeat-y;
}
.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: 8px;
height: 0px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(images/scrollbar.png) -78px -28px no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 0px;
width: 8px;
background: url(images/scrollbar.png)  -78px 0px no-repeat;
}

.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: 0px;
z-index: 2;
}
.flexcroll {
overflow: auto; width: 975px; height: 300px; margin: 0px 0px 0px 0px; padding-top:0px; background: #ECECEB;
}
.flexcroll2 {
overflow: auto; width: 380px; height: 420px; margin: 0px 0px 0px 0px; padding-top:0px; background: #ECECEB;
}