/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
 #monCarrousel{height:167px;}
.jcarousel-container {
    position: relative;
    padding:0 17px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

#examples .jcarousel-clip {width:965px;padding:0;}
* html body #examples .jcarousel-clip {width:947px;left:17px}
.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".
 */
#examples .jcarousel-next, #similar_products .jcarousel-next {
    z-index: 3;
    display: none;
    background: transparent url(/templates/Afibel/images/common/carousel_right.gif) no-repeat 0 50%;
    width:17px;
    height:167px;
    position:absolute;
    top:0;
    right:0;
    cursor:pointer;
}

#examples .jcarousel-prev, #similar_products .jcarousel-prev{
    z-index: 3;
    display: none;
    background: transparent url(/templates/Afibel/images/common/carousel_left.gif) no-repeat 0 50%;
    width:17px;
    height:167px;
     position:absolute;
    top:0;
    left:0;
    cursor:pointer;
}



