/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    float:left;
    -moz-border-radius: 10px;
    background:#ECECEC url(bg-carrousel.png) repeat-x 0 0;
    border:1px solid #dfdfdf;
    padding: 20px 40px;
	margin:0 auto;
}

/**
 * Similar styles will be applied by jCarousel. But we additionally
 * add it here for better displaying with browsers having
 * javascript disabled.
 */
.jcarousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jcarousel-list li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

/**
 * 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 {
    position: absolute;
    top: 45px;
    right: 5px;
    width: 25px;
    height: 25px;
    cursor: pointer;
/*    border: 1px outset #fff;
    color: #74983B;
    background-color: #C2E167;
    font-weight: bold;
*/}

.jcarousel-next-disabled {
    color: #ACCC68;
    cursor: default;
}

.jcarousel-prev {
    position: absolute;
    top: 45px;
    left: 5px;
    width: 25px;
    height: 25px;
    cursor: pointer;
/*    border: 1px outset #fff;
    color: #74983B;
    background-color: #C2E167;
    font-weight: bold;
*/}

.jcarousel-prev-disabled {
    color: #ACCC68;
    cursor: default;
}
.jcarousel-clear {
	clear:left;
}