#slides ol, #slides ul { list-style:none; }

/*BANDEAU CONTAINER GENERAL DU SLIDER*/
#slides {
	position:relative;
}

/*FENETRE CONTAINER DES SLIDES
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/
.slides_container {
	width:597px;
	max-height:277px;
	overflow:hidden;
	position:relative;
}

/*CHAQUE SLIDE
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/
#slides .slide 
{
	position:relative;
	width:597px;
	height:277px;
	display:block;
}


/*************************************** BANDEAU DE TEXTE SUR LES SLIDES SI GESTION IMAGES SEULES ET NON CONTENU HTML **********************/
/*CONTAINER TEXTE*/
.divTexteImageSlider
{
	position:absolute;
	width:597px;
	height:40px;
	color:#fff;
	opacity: 0.7;
	background:#000;
	bottom:0;
	left:0;
}
/*TEXTE*/
.divTexteImageSlider span
{
	margin:10px;
}

/************************************************************ BOUTONS NEXT/PREV *************************************************************/
#slides .next,#slides .prev {
	position:absolute;
	top:105px;
	width:32px;
	height:32px;
	z-index:100;
	cursor:pointer;
}

#slides .prev {
	left:0;
	background:url(../images/slider/arrow-prev.png) no-repeat center center;
}
#slides .next {
	left:586px;
	background:url(../images/slider/arrow-next.png) no-repeat center center;
}


/*********************************************************** PAGINATION ********************************************************************/
/*CONTAINER PAGINATION*/
.pagination_container
{
	width:277px;
	height:25px;
	text-align:center;
}

/*UL PAGINATION*/
.pagination {
	margin:0;
	display:inline-table;
	padding:0;
}

/*LI PAGINATION*/
.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
	display:inline;
}

/*PUCE PAGINATION*/
.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../images/slider/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

/*PUCE PAGINATION ACTIVE*/
.pagination li.current a {
	background-position:0 -12px;
}
