@charset "UTF-8";
/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */
#mycustomscroll {
	/* Typical fixed height and fixed width example */
	width: 370px;
	height: 70px;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	clear: both;
	margin-top: 5px;
	margin-right: -20px;
	margin-bottom: 0em;
	margin-left: 0px;
	overflow: hidden;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#mycustomscroll2 {
/* Typical fixed height and fixed width example */
	width: 340px;
	height: 250px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	background-color: #B4C2DA;
	margin: 0.3em auto;
	padding: 15px;
}


/*  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:30px;
	background-image: url(../images/scrollbar2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	height: 70px;
}
.vscrollerbar {
	width: 30px;
	/* following is the bit that allows us fixed height scrollbars */
height: 20px !important;
	padding: 0px;
	margin: 0px;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
	height: 10px;
}
.hscrollerbar {
	height: 10px;
}

.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: 0px;
z-index: 2;
}

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


/* Scroll Bar Master Styling Ends Here */
