/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
	width: 160px;
    float: right;
    border: 1px solid #e8e8e8;
    margin: 0 0 20px 35px;
    background: #FFF;
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 160px;
    height: 88px;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
	display: block;
    float: left;
    list-style: none;
    background: transparent;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 160px;
    height: 88px;
    padding: 0px;
    margin: 0;
    line-height: 88px;
    overflow: hidden;
}
.jcarousel-list li div {
	height: 88px;
	width: 170px;
	}
.jcarousel-list li img {
	vertical-align: middle;
	}

/**
 * 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 {
    z-index: 3;
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(/static/images/buttons/carousel.png) no-repeat right 0;
    top: 35px;
    right: -9px;
    cursor: pointer;
}

.jcarousel-prev {
    z-index: 3;
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background: url(/static/images/buttons/carousel.png) no-repeat 0 0;
    top: 35px;
    left: -9px;
    cursor: pointer;
}
.jcarousel-prev-disabled,
.jcarousel-next-disabled {
	cursor: default;
	visibility: hidden;
	}

