@charset "utf-8";
/* CSS Document */

/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
	font-size:11px;
	position: absolute;
	top: 0; left: 0;
}

.vscrollerbase {
	width: 5px;
}
.vscrollerbar {
width: 5px;
background: #f7751a;
}

.flexcroll {
/* Typical fixed height and fixed width example */
height: 222px;
width:446px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
padding: 0px 10px 15px 0;
}

/* 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 */

/* you may optionally want to hide the scrollbars */
#mycustomscroll .vscrollerbase {
	background:url(../images/scroll-bg.gif) repeat-y;
	width:5px;
}
