/*
	This is the jQuery Tools standalone demo, the fastest way to get started.
	You can freely copy things on your site. All demos can be found here:
	http://flowplayer.org/tools/demos/
*/
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/


.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:120px;
	float:left;
	margin:0 0 0 2px;

}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:16px 16px 0px 5px;
	cursor:pointer;
	width:112px;
	height:102px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable .items img {
	cursor:pointer;
}
