#mycustomscroll {
	/* Typical fixed height and fixed width example */
width: 660px;
	height: 370px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	margin: 30px auto 0.3em 20px;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 5px;
	padding-left: 25px;
	outline:none
}
#mycustomscroll1 {
	/* Typical fixed height and fixed width example */
width: 660px;
	height: 370px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	margin: 0px auto 0.3em 20px;
	text-align: left;
	padding-top: 15px;
	padding-bottom: 5px;
	padding-left: 20px;

}
.fixedwidth {
	/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 350px;
	height: auto;
	position: relative;
	color: black;
	padding: 1px;
}

