

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    overflow: hidden;
    height: 110px;
}

/**
 * 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;
    width: 122px;
    height: 110px;
    text-align: center;
	list-style-position: inside;
	background-color: transparent;
	vertical-align: bottom;
}

.jcarousel-list li a img {
}

.jcarousel-clip {
	float: left;
}

/**
 * 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 {
    width: 25px;
    height: 44px;
    margin-top: 20px;
    cursor: pointer;
    float: left;
}

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

.jcarousel-prev {
    width: 25px;
    height: 44px;
    margin-top: 20px;
    cursor: pointer;
    float: left;
}

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