/* Colonne home page */

.clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }

.column {
	clear: left;
	margin-bottom: 20px;
}

.column1 {
	width: 200px;
	float: left;
	margin-right: 20px;
}

.column2 {
	width: 200px;
	float: left;
	margin-right: 20px;
}

.column3 {
	width: 200px;
	float: left;
}

/* Slider */

#slider {
	position: relative;
}

#slider ul, #slider li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#slider li {
	width: 600px;
	height: 500px;
	overflow: hidden;
	position: relative;
}

#prevBtn,
#nextBtn {
	display: block;
	width: 22px;
	height: 40px;
	position: absolute;
	left: -32px;
	top: 140px;
	z-index: 1;
}

#nextBtn {
	left: 993px;
}

#prevBtn a,
#nextBtn a {
	display: block;
	position: relative;
	width: 22px;
	height: 40px;
	background: url('../images/slider.svg') no-repeat top left;
	background-image: url('../images/slider.png')\9;
}

#prevBtn a {
	background-position: 0 0;
}

#nextBtn a {
	background-position: 0 -40px;
}

#prevBtn a:hover {
	background-position: -22px -0;
}

#nextBtn a:hover {
	background-position: -22px -40px;
}

.cover {
	width: 600px;
}

/* numeric controls */	

div.indiceEvi {
	position: relative;
}

ol#controls {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 20px;
	right: 20px;
	height: 20px;	
	z-index: 100;
}
	
ol#controls li {
	margin: 0; 
	padding: 0;
	margin-left: 5px;
	float: left;
	list-style: none;
	height: 20px;
	line-height: 20px;
	text-align: center;
}
	
ol#controls li a {
	display: block;
	float:left;
	height: 20px;
	line-height: 20px;
	width: 20px;
	background-color: #fff;
	color: #333;
	text-decoration: none;
}

ol#controls li a:hover {
	background-color: #ddd;
}
	
ol#controls li.current a {
	background-color: #c00;
	color: #fff;
}
	
ol#controls li a:focus,
#prevBtn a:focus,
#nextBtn a:focus {
	outline: none;
}