/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.jcarousel-skin-name{
/*background:url(../../images/layout/dia_fond.png) no-repeat;*/
width:910px;
height:174px;
float:left;
margin-top:10px;
margin-bottom:5px;
margin-left:25px;
display:block;
}

.jcarousel-container {
    position: relative;
	top:17px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
	top:0;
	left:8px;
	right:0;
}

.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. */
    height: 175px;
	margin-right:27px;
	width:180px;	
	display:block;	
	line-height:18px;
}
.jcarousel-item img {
border:1px solid #CCC;
height:125px;
width:180px;
display:block;}
.jcarousel-item span {
color: #FCAB0D;
font-size:14px;
text-align:center;
width:180px;
display:block;
margin-top:5px;}

/**
 * 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;
	background:url(../../images/layout/dia_next.png) no-repeat 0px 3px;
	width:31px;
	height:116px;
	display:block;
	float:right;
	cursor:pointer;
	margin-right:10px;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
	background:url(../../images/layout/dia_back.png) no-repeat;
	width:31px;
	height:116px;
	display:block;
	float:left;
	cursor:pointer;
	margin-left:10px;
}
