/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
	position: relative;
	width: 560px;
	background: #fff;
	padding: 1em 3em;
	border: 1px solid #E6C836;
	margin-left:10%;

}
/**
 * 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: 50px;
    height: 50px;
    margin-right: 6px;
}
/**
 * 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: 23px;
    right: 5px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 0;
    color: #74983B;
    background-color: #fff;
    font-weight: bold;
}

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

.jcarousel-prev {
    position: absolute;
    top: 23px;
    left: 5px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 0;
    color: #74983B;
    background-color: #fff;
    font-weight: bold;
}

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