/**
* This <div> element is wrapped by jCarousel around the list
* and has the classname "jcarousel-container".
*/
.jcarousel-container {
	position:relative;
	margin:5px 10px 10px;
/* 	background:#D4D0C8 url(../images/bg-col460-jcarousel.gif) no-repeat 0 0; */
	background-color:#f7f7f7;
}


.jcarousel-clip {
	z-index:2;
	padding:0;
	margin:0;
	overflow:hidden;
	position:relative;
}

.jcarousel-list {
	z-index:1;
	overflow:hidden;
	position:relative;
	top:0;
	left:0;
	margin:0;
	padding:0;
}

#content .jcarousel-list li,
#content .jcarousel-item {
	float:left;
	list-style:none;
	width:152px;
	height:114px;
}

/**
* The buttons are added dynamically by jCarousel before
* the <ul> list (inside the <div> described above) and
* have the classnames "jcarousel-next" and "jcarousel-prev".
*/
.jcarousel-next, 
.jcarousel-prev {
	z-index:3;
	display:none;
}



.jcarousel-container-horizontal {
	/**width:360px;**/
	width:462px;
	padding:20px 40px;
}


.jcarousel-clip-horizontal {
	width:462px;
	height:114px;
}


#global .jcarousel-item {
	width:152px;
	height:114px;
	border:1px solid #FFFFFF;
	padding:0;
	background-image:none;
}

#global .jcarousel-item:hover {
	border-color:#F36000;
}

.jcarousel-item-horizontal {
	margin-right:5px;
}

.jcarousel-item-placeholder {
}

/* -------------------------------------------------------------------------------------------- */
/* Boutons de navigation */
/* -------------------------------------------------------------------------------------------- */

.jcarousel-next-horizontal, 
.jcarousel-prev-horizontal {
	position:absolute;
	top:43px;
	width:32px;
	height:32px;
	cursor:pointer;
}
.jcarousel-next-horizontal {
	right:5px;
	background:transparent url(../images/next-horizontal.gif) no-repeat 0 0;
}
.jcarousel-prev-horizontal {
	left:5px;
	background:transparent url(../images/prev-horizontal.gif) no-repeat 0 0;
}
.jcarousel-next-horizontal:hover,
.jcarousel-prev-horizontal:hover {
	background-position:-32px 0;
}
.jcarousel-next-horizontal:active,
.jcarousel-prev-horizontal:active {
	background-position:-64px 0;
}
.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active,
.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
	cursor:default;
	background-position:-96px 0;
}




