
/*  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:15px;


}
.vscrollerbar {

background:#a19f9f ;
width: 17px;
margin-top:10px;margin-bottom:10px;
/* following is the bit that allows us fixed height scrollbars */
height: 20px !important;
/* 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.*/
position:relative;
}

* 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='scrollbar.png');
  

}


/* 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;}


/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 40px;
height: 25px;
top: auto; left: auto;
bottom: 0px; right: 0px;
display:none;
}


#mycustomscroll[id] {
/* Typical fixed height and fixed width example */
	width: 340px;
	height: 340px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px 0px 0px 0px ;
	background:url(../images/scrol lbg.png) no-repeat right top;
		border-right:2px solid gray;
}
#mycustomscroll {
/* Typical fixed height and fixed width example */
	width: 340px;
	height: 340px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px 0px 0px 0px ;
	background:url(../images/scro llbg.png) no-repeat 50px 45px;
	border-right:2px solid gray;
	
}




#mycustomscroll1[id] {
/* Typical fixed height and fixed width example */
	width:550 px;
	height: 350px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px 0px 0px 0px ;
	background:url(../images/scrol lbg.png) no-repeat right top;
		border-right:2px solid gray;
		float:left; border:1px solid gray;
}
#mycustomscroll1 {
/* Typical fixed height and fixed width example */
	width: 550px;
	height: 350px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px 0px 0px 0px ;
	background:url(../images/scro llbg.png) no-repeat 50px 45px;
	border-right:2px solid gray;
	float:left; border:1px solid gray;
}



#mycustomscroll2[id] {
/* Typical fixed height and fixed width example */
	width:930px;
	height: 350px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px ;
	background:url(../images/scrol lbg.png) no-repeat right top;
		border-right:2px solid gray;
		float:left; border:1px solid gray;
}
#mycustomscroll2 {
/* Typical fixed height and fixed width example */
	width: 930px ;
	height: 350px;
		/* IE overflow fix, position must be relative or absolute*/
	/*background-color: #E7EADE;*/
	padding: 0px ;
	background:url(../images/scro llbg.png) no-repeat 50px 45px;
	border-right:2px solid gray;
	float:left; border:1px solid gray;
}







.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
	width: 550px;
	height: auto;
	position: relative;
	color: black;
	padding: 1px;
}


.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 */

z-index: 20000 ;
position:relative ;

background:gray;
cursor:pointer;

}
