/*
	Slideshow
*/

#container {
	width:960px;
	height:260px;
	background: silver;
	margin:auto;

}

#slides {
	position:absolute;
	z-index:100;
}

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

.slides_container {
	width:940px;
	height:240px;
	overflow:hidden;
	display:none;
	background: blue;
	border: solid white 10px;
	box-sha dow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

/*
	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, .slides_container .content{
	width:940px;
	height:260px;
	display:block;
	position:relative;
	background: yellow;
}

.slides_container a img, .slides_container .content img {
	display:block;
	width:940px;
	
	
}

#batm2{
	position:relative;
	top:-200px;
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	margin: 10px 0 0 0;
	position:absolute;
	display:block;
	z-index:101;
	background: none;
}

#slides .next {
	left:25px;
}

.next img, .prev img {
	width:10px;
	backgroun d: red;
}
/*
	Pagination
*/

.pagination {

	position:absolute;
	right:0px;
	margin:10px 0 0 0;
}

.pagination li {
	float:left;
	margin:3px 0 0 4px;
	list-style:none;
	borde r: solid 1px;

}

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

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

.paginat ion li a:hover, .pagina tion li .content:hover {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination_perso_2.png);
	background-repeat:no-repeat;
	background-position:0 -12px;
	float:left;
	overflow:hidden;
}

