div.scroller 
{ 
	/* modify width and height of scrolling section if necessary	*/		
	width: 500px; 
	height: 400px;
	overflow: hidden;
	border:0px solid #cccccc;
}
div.scroller div.section 
{
	/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
	width: 500px;
	height:400px;
	overflow:hidden;
	float:left;
	padding:1em;		
}
div.scroller div.content 
{
	width: 10000px;
}

