#scroll {
/* Typical fixed height and fixed width example */
	width: 257px;
	height: 240px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	/*background-color: #252525;*/
	margin: 5px;
	padding: 5px;
}
/*  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; right: 0;
}

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

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

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

.scrollgeneric {
line-height: 1px; font-size: 1px;
position: absolute; top: 5; left: 0; right: 0;
}

.vscrollerbar, .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: 2px;
/* 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;
}


.vscrollerbase, .hscrollerbase {
background-color: #000000;
}


/* Scroll Bar Master Styling Ends Here */

