/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.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. */
    width: 75px;
    height: 75px;
}

/**
 * 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;
}

.carouselProduit .carouselVertical {
	position: relative;
    width: 110px;
    height: 225px;
    padding: 40px 12px;
	z-index:6;
}

.carouselProduit .jcarousel-clip-vertical {
    width:  110px;
    height: 240px;
	margin: 8px 0 0;
	border-bottom:1px solid #CCCCCC;
}

.carouselProduit .jcarousel-item {
    width: 90px;
    height: 90px;
}

.carouselProduit .jcarousel-item-vertical {
    margin-bottom: 4px;
	border: 1px solid #ccc;
}

.carouselProduit .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Vertical Buttons
 */
.carouselProduit .jcarousel-next-vertical {
    position: absolute;
   /* bottom: 5px;*/
   	top: 26px;
   	left: 18px;
    width: 96px;
    height: 19px;
    cursor: pointer;
    background: transparent url(/images/jCarousel/nextVertical.png) no-repeat center center;
}

.carouselProduit .jcarousel-next-vertical:hover {
   /* background-position: 0 -32px;*/
	background: transparent url(/images/jCarousel/nextVerticalHover.png) no-repeat center center;
}

.carouselProduit .jcarousel-next-vertical:active {
    /*background-position: 0 -64px;*/
}

.carouselProduit .jcarousel-next-disabled-vertical,
.carouselProduit .jcarousel-next-disabled-vertical:hover,
.carouselProduit .jcarousel-next-disabled-vertical:active {
    cursor: default;
   /* background-position: 0 -96px;*/
}

.carouselProduit .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 18px;
    width: 96px;
    height: 19px;
    cursor: pointer;
    background: transparent url(/images/jCarousel/prevVertical.png) no-repeat center center;
}

.carouselProduit .jcarousel-prev-vertical:hover {
   /* background-position: 0 -32px;*/
	background: transparent url(/images/jCarousel/prevVerticalHover.png) no-repeat center center;
}

.carouselProduit .jcarousel-prev-vertical:active {
    /*background-position: 0 -64px;*/
}

.carouselProduit .jcarousel-prev-disabled-vertical,
.carouselProduit .jcarousel-prev-disabled-vertical:hover,
.carouselProduit .jcarousel-prev-disabled-vertical:active {
    cursor: default;
   /* background-position: 0 -96px;*/
}

