/* [JCAROUSEL]---------------------------------------------------- */	

.jcarousel-container { 
	position: relative; 
}

.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;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
}

/**
 * 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 { z-index: 3; display: none; }
.jcarousel-prev { z-index: 3; display: none; }

/* [JCAROUSEL PETIT]---------------------------------------------------- */	
.jcarousel-skin-petit { 
	/* bug ie6 */
	position:absolute;  
}

.jcarousel-skin-petit UL { 
	list-style-type:none; 
	margin:0; 
	padding:0; 
}

.jcarousel-skin-petit UL LI { 
	background:none; 
	list-style-type:none;
	margin:0; 
	padding:0; 
}

.jcarousel-skin-petit .jcarousel-container { }

.jcarousel-skin-petit .jcarousel-clip-horizontal { 
	width:100%; 
	height:40px; 
}

.jcarousel-skin-petit .jcarousel-container-horizontal {
	width:263px;
	padding-left:30px;
	padding-right:30px;
	margin:0;
}
.jcarousel-skin-petit .jcarousel-item { 
	width:50px; 
	height:40px; 

}
.jcarousel-skin-petit .jcarousel-item  IMG { }

.jcarousel-skin-petit .jcarousel-item-horizontal {
    width: 50px;
    height: 40px; 
	margin:0;
	padding:0;
	margin-right:3px;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-petit .jcarousel-next-horizontal {
    position: absolute;
    top: 6px;
    right:0;
    width: 25px;
    height: 24px;
    cursor: pointer;
	background: transparent url(../img/structure/slideshow_suiv.gif) no-repeat 0 0;
}
.jcarousel-skin-petit .jcarousel-next-horizontal:hover { background-position: 0 0; }
.jcarousel-skin-petit .jcarousel-next-horizontal:active { background-position: 0 0; }
.jcarousel-skin-petit .jcarousel-next-disabled-horizontal,
.jcarousel-skin-petit .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-petit .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    /*background: transparent url(../img/structure/slideshow_suiv.gif) no-repeat 0 0;*/
	background:transparent;
}

.jcarousel-skin-petit .jcarousel-prev-horizontal {
    position: absolute;
    top: 6px;
    left:0;
    width: 25px;
    height: 24px;
    cursor: pointer;
    background: transparent url(../img/structure/slideshow_prec.gif) no-repeat 0 0;
}
.jcarousel-skin-petit .jcarousel-prev-horizontal:hover { background-position: 0 0; }
.jcarousel-skin-petit .jcarousel-prev-horizontal:active { background-position: 0 0; }
.jcarousel-skin-petit .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-petit .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-petit .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    /*background: transparent url(../img/structure/slideshow_prec.gif) no-repeat 0 0;*/
	background:transparent;
}