/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	overflow:hidden;
	height:222px;
	background-color:#212121;
	position: relative;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 3000px;
}
#prev  {
	width: 30px;
	height: 19px;
	margin-left: 350px;
}
#next {
	width: 30px;
	height: 19px;
	margin: 0px;
}

#diaporama {
	margin-top: 40px;
	margin-left: 0px;
	padding-bottom: 0px;
	z-index: 20;
	left: 0px;
	top: 0px;
	overflow: hidden;
	width: 100%;
	margin-right: 0px;
	margin-bottom: 0px;
	float: left;
}


/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {
	position:absolute;
	clear:both;
	margin-top: 0px;
	padding-top: 0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	width:404px;
	margin-right: 9px;
	background-color: #292929;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
}

/* active item */
div.scrollable div.items div.active {
}

