/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    margin-top: 130px;
	margin-left: 410px;
    width: 245px;
    height: 270px;
    -moz-border-radius: 10px;
    background: #000000;
    padding: 20px 60px;
}

/**
 * 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: 146px;
    right: 0px;
    width: 35px;
    height: 25px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #ffffff;
  /*  color: #74983B;*/
    background-color: #222222;
   /* background-color: #C2E167;*/
    font-weight: bold;
}

.jcarousel-next-disabled {
    color: #3E3E3E;
    cursor: default;
}

.jcarousel-prev {
    position: absolute;
    top: 146px;
    left: 9px;
    width: 35px;
    height: 25px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #ffffff;
    background-color: #222222;
    font-weight: bold;
}

.jcarousel-prev-disabled {
    color: #3E3E3E;
    cursor: default;
}

