/* ------------ Stile slider galleria immagini borgo ------------ */
/* Stili galleria immagini */
#boxGalleria {
	position: relative;
	margin: 0 0 15px 0;
	padding: 5px 30px;
	border: 1px solid #ccc3bf;
	width: 848px;
	height: 106px;
	overflow: hidden;
}

/* Stili box spot */
div.scrollable {  
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 848px;	 
	height: 106px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position: absolute;
	width: 20000em;	
	clear: both;
}
#thumbs div {
	float: left;
	display: inline;
	float: left;
	margin: 0 6px 6px 0;
	padding: 0;
	width: 133px;
	height: 100px;
	border: 0;
	cursor: pointer;
	overflow: hidden;
}
#thumbs div a img {
	margin: 0;
	padding: 0;
	border: 0;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top: 25px;	
}



/* style when mouse is over the item */
#thumbs div.hover {
}

/* style when element is active (clicked) */
#thumbs div.active {
}

/* this makes it possible to add next button beside scrollable 
div.scrollable {
	float:left;		
}
*/
/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage, a.next, a.nextPage {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	width: 25px;
	height: 25px;
	background: #f00 url(../img/scroll_sx.png) no-repeat;
	cursor: pointer;
}
a.prev, a.prevPage {
	left: 0;
	top: 25px;
}
a.next, a.nextPage {
	right: 0;
	top: 25px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0px -25px;		
}

/* disabled navigational button */
a.disabled {
	visibility: hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image: url(../img/scroll_dx.png);
	clear: right;	
}

/* position and dimensions of the navigator */
div.navi {
	visibility: hidden;
	position: absolute;
	top: 22px;
	right: 42px;
	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;     
} 	

