/* CSS Document */


/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    width: 350px; 
    /*-moz-border-radius: 10px; */
    /* background: #EEF7D4;  */
     padding: 20px 35px; 
}

/**
 * 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;
}

/**
 * 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: 5px;
    right: 5px;
    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: 5px;
    left: 5px;
    cursor: pointer;
    /* border: 1px outset #fff; */
    color: #74983B;
    /* background-color: #C2E167; */
    font-weight: bold;
}

.jcarousel-prev-disabled {
    color: #ACCC68;
    cursor: default;
}




