#scrollable {
/* Typical fixed height and fixed width example */
 width: 375px;
 height: 414px;
 overflow: auto;
 /* IE overflow fix, position must be relative or absolute*/
 position: relative;
 /*background-color: #E7EADE;*/
 margin: 0;
 padding: 0 25px 0 0;
}


.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
 width: 550px;
 height: auto;
 position: relative;
 color: black;
 padding: 1px;
}

/*  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: 10px;
 background-image: url(/images/scrollbar_bg.png);
 cursor: pointer;
}
.vscrollerbar {
 background-image: url(/images/scrollbar_bar.png);
 width: 10px;
 height: 22px !important; /* the bit that allows us fixed height scrollbars. for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
 background-image: url(/images/scrollbar_bar.png);
 cursor: pointer;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
 height: 10px;
 background-image: url(/images/scrollbar_bg_h.png);
}

.hscrollerbar {
 width: 22px;
 height: 10px;
 background-color: #fff;
}

.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;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
 width: 1px;
 height: 1px;
 top: auto; left: auto;
 bottom: 0px; right: 0px;
 background: transparent;
}

