/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    width: 245px;
    -moz-border-radius: 10px;
    background: #EEF7D4;
    padding: 20px 40px;
    margin-left: 200px;
    margin-top: -20px;
}

/**
 * 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;
    width: 75px;
    height: 75px;
    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;
}

.close_caroussel {
	position: relative;
	top: 5px;
  left: 503px;
  z-index: 1;
}



