#mycustomscroll {
	/* Typical fixed height and fixed width example */
width: 110px;
	height: 300px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	background-color: #1E100A;
	padding: 15px;
	text-align: left;
	margin-bottom: 5px;
	;
}

#mycustomscroll2 {
	/* Typical fixed height and fixed width example */
width: 110px;
	height: 250px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: relative;
	background-color: #FDDFEF;
	margin: 0.1em auto;
	padding: 5px;
}


.fixedwidth {
	/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 110px;
	height: auto;
	position: relative;
	color: black;
	padding: 1px;
}
