#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 300px;
height: 250px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: #E7EADE;

}

#mycustomscroll2 {
	/* IE overflow fix, position must be relative or absolute*/
	height: 175px;
	width: 585px;
	position: absolute;
	top: 80px;
	left: 25px;
	overflow: auto;
}

#mycustomscroll3 {
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	height: 380px;
	width: 430px;
	padding-left: 20px;
	position: absolute;
	margin-left: 15px;
}
