#area {
	width: 100%;
}
/* root element for scrollable */
#scroller {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollables have typically larger height than width but not now */
	height: 73px;
	width: 100%;
	margin: 7px 0 20px;
}
/* root element for scrollable items */
#scroller .items {
	position:absolute;
	/* this time we have very large space for the height */
	width: 100%;
}
#scroller .items img{ border:1px solid #e4e4e4;}