@charset "utf-8";
/* CSS Document */

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    width: 530px;
    -moz-border-radius: 10px;
    /*background: #EEF7D4;*/
    padding: 10px 40px;
}

/**
 * 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: 80px;
    height: 100px;
    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".
 */
 #mycarousel{ clear: both;
 }
.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: #000;
    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: #000;
    cursor: default;
}

