﻿
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable-container
{
	position: relative;
	width: 180px;
	height:96px;	
	float: left;
	margin: 0 8px 0 0;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 180px;
	height:96px;
}

/*
	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 .scroll-items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scroll-items div {
	float:left;
}

/* single scrollable item */
.scrollable .scroll-item
{
	float: left;
	margin:0;
	width:180px;
	height:96px;
	padding: 0 31px;
}

.scrollable .no-right-padding
{
	padding-right: 0;
	border-right: none;	
}




