

/*Page related styles for you to view*/
#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 520px !important;
height: 72px !important;
overflow-x: scroll;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
border:0px solid green;
 
padding:00px;margin-top:1px;width:510px; 
margin-left:2px
 
}

 


.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 580px;
height: auto;
position: relative;
color: black;
padding: 1px;
 
}

/* general page style ends here */

.flexcroll {
/* Typical fixed height and fixed width example */
width: 260px;
height: 200px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
 
}

/* hesido: notice the addition of emptyspace holder, it should slightly be bigger than the containing div */
/* and it should only be that big when fleXcroll is active for better degradation */
/* version 1.9.1 and up adds flexcrollactive class, but the script should work with 1.8.9 and up */
.flexcrollactive .emptyspace {
	height: 200px;
	}

/* you may optionally want to hide the scrollbars */
#mycustomscroll .vscrollerbase {
	visibility: hidden !important;
}

 