#mycustomscroll {
	/* Typical fixed height and fixed width example */
width: 365px;
	height: 435px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
	padding: 6px;
	margin-top: 0.3em;
	margin-right: auto;
	margin-bottom: 0.3em;
	margin-left: auto;
	text-align: justify;
	top: 158px;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 31px;
	height: 160px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	background-color: #f6f6f6;
	margin: 0.3em auto;
}


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

