/* 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:27px;
background:url(../img/slider.jpg);
}
.vscrollerbar {
background-image: url(../img/slider_button.jpg);
width: 19px;
/* following is the bit that allows us fixed height scrollbars */
height: 14px !important;
left:4px;
/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
/* 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='./img/slider_button.jpg');
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: 27px;
z-index: 2;
}

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

.vscrollerbasebeg {
    background: url("../img/top_arrow.jpg") no-repeat scroll 0px 0px transparent;
    height: 19px !important;
    width: 27px;
}

.vscrollerbaseend {
     background: url("../img/down_arrow.jpg") no-repeat scroll 0px 0px transparent;
    height: 19px;
    width: 27px;
}


/* Scroll Bar Master Styling Ends Here */
#mycustomscroll {
/* Typical fixed height and fixed width example */
	width:458px;
	height: 550px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	padding-right:20px;
	/*background-color: #E7EADE;*/
}