/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-skin{
float:left;
clear:left;
width:650px;
}
.jcarousel-container {
    position: relative;
	clear:left;
	float:left;
	width:650px;
}
.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
	display:block;
	width:570px;
}
.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. */
    width: 135px;
    height: 120px;
	margin-right:10px;
	background:#baebf2;
}
.jcarousel-item img{
	width:135px;
	height:95px;
}
/**
 * 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;
	float:right;
	width:27px;
	height:75px;
	background:url(../images/arrows_carrousel.gif) -27px 0px no-repeat;
	cursor:pointer;
	margin:20px 0px 0px 13px;
}
.jcarousel-next:hover{
	background-position: bottom right;
}
.jcarousel-prev {
    z-index: 3;
    display: none;
	float:left;
	width:27px;
	height:75px;
	background:url(../images/arrows_carrousel.gif) 0px 0px no-repeat;
	cursor:pointer;
	margin:20px 13px 0px 0px;
}
.jcarousel-prev:hover{
	background-position:bottom left;
}