/* ------------ Stile slider news ------------ */
/* root element for the whole scrollable setup */
div.scrollable {  
	position: relative;
	overflow: hidden;
	margin: 0 0 0 32px;
	padding: 0x;
	width: 555px;	 
	height: 310px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position: absolute;
	width: 20000em;	
	clear: both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top: 65px;	
}



/* single item */
#thumbs div {
	float: left;
	display: inline;
	margin: 0 10px;
	padding: 10px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	width: 145px;
	height: 300px;
	cursor: pointer;
	background: url(../img/bkg_div_slider.png) 0 0 repeat-x;
}

#thumbs div div.imgFiliale {
	margin: 0 0 12px 0;
	padding: 3px;
	width: 138px;
	height: 112px;
	border: 1px solid #9bd;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #fff;
}
#thumbs div div.imgFiliale div {
	margin: 0;
	padding: 0;
	width: 138px;
	height: 112px;
	border: 0;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	overflow: hidden;
	background: #fff
}
#thumbs div div.imgFiliale img {
	width: 138px;
}
#thumbs div h3 {
	font-size: 1.06em;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0.5em 0;
	
}
#thumbs div p {
	margin: 0.6em 0;
	padding: 0.3em 0 0.3em 24px;
	letter-spacing: -0.05em;
	font-size: 86%;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-position: 0 -500px;
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-position: 0 -1000px;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float: left;		
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	background: url(../img/scroll_sx.png) no-repeat;
	cursor: pointer;
}
a.next, a.nextPage {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	background: url(../img/scroll_dx.png) no-repeat;
	cursor: pointer;
	clear: right;	
}
a.prev, a.prevPage {
	left: 1px;
	top: 64px;
}
a.next, a.nextPage {
	right: 1px;
	top: 64px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0px -30px;		
}

/* disabled navigational button */
a.disabled {
	visibility: hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image: url(../img/scroll_sx.png) no-repeat;
	clear: right;	
}

/* position and dimensions of the navigator */
div.navi {
	position: absolute;
	top: 22px;
	right: 40px;
	height: 8px;
	text-align: right;
}
/* items inside navigator */
div.navi a {
	width: 8px;
	height: 8px;
	float: left;
	display: inline; 
	margin: 0 0 0 3px;
	background: url(../img/navigator.png) 0 0 no-repeat;     
	cursor: pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -24px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -48px;     
} 	

