/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#instyle_cucine_inner{
	position: relative;
	margin-bottom: 12px;
}
#instyle_cucine{
	position: relative;
	margin-bottom: 12px;
}
#instyle_cucine .name {
	color:#BB0707;
	display:block;
	font-weight :bold;
	font-size:14px;
	text-align:center;
}

.scrollable  {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 280px;
	height:110px;

	/* custom decorations 
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
	*/
}
.scrollable3 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 670px;
	height:160px;

	/* custom decorations 
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
	*/
}
/*
	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,.scrollable3 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable div.items div {
	float:left;	
	cursor:pointer;
	margin:10px 10px 10px 31px;	
	
	
}
.scrollable3 div.items div {
	float:left;	
	cursor:pointer;
	margin:10px 10px 10px 20px;	
	
	
}
.scrollable a img, .scrollable3 a img{
	border: none;
}
.scrollable div img{
	border:none;
	width:215px;
	height:85px;
	
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
.randoms  .scrollable div.items div {
	margin:10px 10px 10px 10px;	
}
.randoms .scrollable div img{
	width:114px;
	height:85px;
}
.scrollable3 div img{
	border:none;
	width:185px;
	height:140px;
	
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	/*border:1px solid #666;*/
	z-index:9999;
	position:relative;
}
.scrollable3 .active {
	border:1px solid #666;
	z-index:9999;
	position:relative;
}



