@charset "UTF-8";

/* @override 
	http://www.fotoservice.it/css/scrollable-horizontal-prodotti.css
*/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.box_prodotti .scrollable {
	height: 150px;
	width: 670px;
	margin: 0 0 20px;
	overflow: hidden;
	position: relative;
}

/*
	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.
*/

.box_prodotti .scrollable .items {
/* this cannot be too large */
	width: 20000em;
	position: absolute;
	clear: both;
}

/* single scrollable item */
.box_prodotti .scrollable a {
	float: left;
	padding: 0;
	cursor: pointer;
	width: 125px;
	clear: none;
	margin-right: 10px;
	text-decoration: none;
}

.box_prodotti .scrollable h3 {
	text-transform: uppercase;
	font-size: 10px;
	width: 125px;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	color: black;
}

/* active item */

.box_prodotti .scrollable .active {
	z-index: 9999;
	position: relative;
}

/* this makes it possible to add next button beside scrollable */

.box_prodotti .scrollable {
	float: left;
}

/* custom */
.box_prodotti .scrollable img {
	width: 125px;
	margin: 0;
}

.box_prodotti .scrollable img.hover {
	background-color:#fff;	
}
