/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height:628px;	
	
	/* decoration */
	padding:0px 10px;
	border:1px solid #ccc;
	background-color:#fff;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	
	/* decoration */
	margin-top:10px;
}

div.scrollable div.items div {
	text-align:center;
	width:120px;
	padding:0px 0px;
	border:1px outset #ccc;
	background-color: #fff;
	margin-bottom:10px;
}

div.scrollable div.items img {
	border: none;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}