div.scroller { 
	/* modify width and height of scrolling section if necessary	*/		
	width: 225px; 
	height: 200px;
	overflow: hidden;
}
	div.scroller div.section {
		/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
		width:225px;
		height:200px;
		overflow:hidden;
		float:left;
		padding:0;
	}
	div.scroller div.content {
		width: 10000px;
	}

	div#section2 {
		background:#666666;
		color:#ffffff;
	}
	
	/* */
	
	div.controls{
		padding:5px 10px;
		font-size:12px;
		color:#fff;
	}
	div.controls a:link,div.controls a:visited{
		color:#fff;
	}
	div.controls a:hover,div.controls a:active{
		color:#6ff;
	}
	
	div#arrow{
		padding:5px;
		height:20px;
		margin-top:-25px;
	}
		div#arrowLeft{
			width:50%;
			height:20px;
		}
			div#arrowLeft img{
				display:block;
				height:15px;
				width:15px;
				float:left;
			}
			
		div#arrowRight{
			width:50%;
			height:20px;
		}
			div#arrowRight img{
				display:block;
				height:15px;
				width:15px;
				float:right;
			}