/* 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:10px;
 background-image: url(img/vscrollbg.gif); 
}

.vscrollerbar {
width: 10px;
/* following is the bit that allows us fixed height scrollbars */
height: 50px !important;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
background-color: #4f4f4f;
/* 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.*/
}



/* 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(img/hscrollbg.gif); 
}
.hscrollerbar {
height: 10px;
/* following is the bit that allows us fixed height scrollbars */
width: 50px !important;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
background-color: #4f4f4f;
/* 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: 10px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #4f4f4f;
}

/* Scroll Bar Master Styling Ends Here */

#mycustomscroll, #mycustomscroll2, #mycustomscroll3 {
/* Typical fixed height and fixed width example */
	width: 99%;
	height: 354px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
 /*background-color: #E7EADE;*/
	margin: 0px;
	padding: 0px;	
	padding-right: 10px;
}

