/*
	Slideshow
*/

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#slide {
height : 340px;
}

.slides_container {
	width:950px;
	overflow:hidden;
	position:relative;
	display:none;
	z-index : 1;
}

#ombreSlide{
		position : absolute;
		top : 0px;
		left : center;
	    border-radius: 50px / 50px;  
        box-shadow: 0 0 20px #555;  
		width : 950px;
		height : 300px;		
		z-index : 0;
} 

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container a {
	width:950px;
	height:340px;
	display:block;
}

.slides_container a img {
	display:block;	
	cursor : default;
}


/*
	Pagination
*/

ul.pagination {
	position : absolute;
	top  : 305px;
	left : 20px;
	z-index : 10;
	padding : 0;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}