
#mycustomscroll {
	/* percentage width without the fix*/
width: 660px;
height: 475px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin-top: 0.3em;
margin-right: 0;
margin-bottom: 0.3em;
margin-left: 10px;
padding-top: 5px;
padding-right: 15px;
padding-bottom: 15px;
padding-left: 0px;
}

/*
percentage width: the real percentage is done by the wrapper
this is to fix various IE6 bugs
*/
.percentagewrap {
width: 80%;
margin: 0 auto;
padding: 10px;
	}
	
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 550px;
height: auto;
position: relative;
color: #A64686;
padding: 1px;
}

