/*
	Slideshow
*/

#slides {
	position:absolute;
	/*top:0px;
	left:0px;*/
	z-index:100;
	height: 475px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:630px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	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 div.slide {
	width:630px;
	height:475px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	display: block;
	height: 43px;
	left: 10px;
	position: absolute;
	top: 404px;
	width: 24px;
	z-index: 101;
}

#slides .next {
	left: 595px;
}
.fonsGroc {
	background-image: url("../webimg/fonsGroc.gif");
    height: 35px;
    position: absolute;
    top: 400px;
    width: 630px;
}

/*
	Pagination
*/

.pagination {
	margin:26px auto 0;
	width:100px;
}

.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;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-40px;
	left:0;
	height:26px;
	background:#000;
	width:600px;
	font-size:12px;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
	font-family: Verdana, Geneva, sans-serif;
	background-color: #333333;
	padding-top: 9px;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 10px;
}


