
#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 460px;
height: 205px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: absolute;
margin: 0.2em auto;
padding: 2px;
	text-align: left;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 460px;
height: 405px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.2em auto;
padding: 2px;
}

#mycustomscroll3 {
/* Typical fixed height and fixed width example */
width: 226px;
height: 360px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.2em auto;
padding: 2px;
}



.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 465px;
height: auto;
position: relative;
color: black;
padding: 2px;
}
