/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 534px;
	height:333px;
	/* custom decorations */

	float: left;
	margin-left: 16px;
	display: inline;
	margin-right: -30px;
}

/*
	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;
	text-align: left;
}

/* single scrollable item */
.scrollable img {
	float:left;
	cursor:pointer;
	width:534px;
	height:333px;
	text-align: left;
}




/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable2 {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 656px;
	height:126px;
	/* custom decorations */

	float: left;
	display: inline;
}

/*
	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.
*/
.scrollable2 .items2 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	text-align: left;
}

/* single scrollable item */
.scrollable2 img {
	float:left;
	cursor:pointer;
	width:164px;
	height:125px;
	text-align: left;
}

