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

div.maschera {
	position:absolute;
	top:36px;
	
		
}

div.sopra {
	position:absolute;
	top:0px;
	left:22px;
	
	width: 814px;
	height:20px;
	
	background-image: url(../banner/maschera/sopra.png);
	background-repeat: no-repeat;
	background-position: center center;
	z-index:10;
	
}

div.sopraBlog {
	position:absolute;
	top:0px;
	left:22px;
	
	width: 814px;
	height:50px;
	
	background-image: url(../banner/maschera/sopra_blog.png);
	background-repeat: no-repeat;
	background-position: center center;
	z-index:20;
	
}

div.lato_sx {
	position:absolute;
	top:0px;
	left:0px;
	
	width: 25px;
	height:245px;
	
	background-image: url(../banner/maschera/lato_sx.png);
	background-repeat: no-repeat;
	background-position: center center;
	z-index:15;
	
}

div.lato_dx {
	position:absolute;
	top:0px;
	left:836px;
	
	width: 24px;
	height:245px;
	
	background-image: url(../banner/maschera/lato_dx.png);
	background-repeat: no-repeat;
	background-position: center center;
	z-index:30;
	
}

div.scrollable {
	/* required settings */
	position:absolute;
	top:36px;
	overflow:hidden;
	width: 860px;
	height:245px;
				
}

div.scrollable02 {
	/* required settings */
	position:relative;
	top:36px;
	overflow:hidden;
	width: 860px;
	height:245px;
				
}
 
/* 
	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 {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;
	
	/* decoration 
	margin-left:10px;
	*/
}
 
/* single scrollable item */
div.scrollable div.items div {
	float:left;
	text-align:center;
	width:860px;
	
}
 
/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}
