div.scroller {
	/* modify width and height of scrolling section if necessary	*/		
	width: 900px;
	height: 300px;
	;
	overflow: hidden;
	margin-left: 11px;
	margin-top: 7px;
}
	div.scroller div.section {
	/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
		width:900px;
	height:300px;
	overflow:hidden;
	float:left;
		}
	div.scroller div.content2 {
		width: 10000px;
		}

div.scroller-mini { 
	/* modify width and height of scrolling section if necessary	*/		
	width: 200px; 
	height: auto;;
	overflow: hidden;
}
	div.scroller-mini div.section-mini {
		/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
		width:200px;
		height:auto;
		overflow:hidden;
		float:left;
		padding:1em;		
		}
	div.scroller-mini div.content-mini {
		width: 10000px;
		}

