#mycustomscroll {
/* percentage width without the fix*/
width:970px;
height:400px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin-left:10px;
margin-top:0px;
padding: 0px;
}

#mycustomscroll2 {
/*percantage width: make it 100% to match container*/
width:970px;
height:400px;
overflow:auto;
background-color:#565656;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin-left:10px;
/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding-left:5px;

}

/*
percentage width: the real percentage is done by the wrapper
this is to fix various IE6 bugs
*/
.percentagewrap {
	width: 100%;
	margin: 0px;
	padding: 0px;
	}
	
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 550px;
height: auto;
position: relative;
background: #333333;
margin: 0px;
padding: 0px;
}

