/* Container DIV - automatically generated */
.simply-scroll-container { 
	position: relative;	
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Master button styles - note that up and down versions 
have been removed in this example */

.simply-scroll-btn {
	
	cursor: pointer;
	width:31px;
	height:27px;
	position:absolute;
	margin-top:192px;
	z-index:1000;

}
	
.simply-scroll-btn-left {
	background: url(../images/freccia-sx.png) no-repeat center;
}
.simply-scroll-btn-left.disabled {
}
.simply-scroll-btn-left:hover {
}

.simply-scroll-btn-right {
	background: url(../images/freccia-dx.png) no-repeat center;
	margin-left:878px;
}
.simply-scroll-btn-right.disabled {
}
.simply-scroll-btn-right:hover {
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	width: 900px;
	height: 190px;	
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width: 900px;
	height: 200px;	
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 310px;
	height: 200px;
}
