@charset "UTF-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable,
.scrollable-wallpaper {
	/* required settings */
	position:relative;
	overflow:hidden;
	height:72px;
	width: 625px;
	margin: 0 auto;
	/* custom decorations */
}

.scrollable-wallpaper {
	height: 112px;
	width: 633px;
}

/*
	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 .oggetti {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.oggetti div {
	float:left;
	width:625px;
}

.scrollable-wallpaper .oggetti div {
	width:633px;
}

/* single scrollable item */
.scrollable img,
.scrollable-wallpaper img{
	float:left;
	border:1px solid #eaeaea;
	width:123px;
	height:70px;
}

.scrollable-wallpaper img {
	width:209px;
	height:110px;
}

/* active item */
.scrollable .active {
	border:1px solid #e2001a;
	position:relative;
	cursor:default;
}


