/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: absolute;
	width:970px;
	height:400px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
	width:970px;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
	width: auto;
	min-width:322px;
	height:400px;
	margin-right:2px;
    /* We set the width/height explicitly. No width/height causes infinite loops. */

}

/**
 * 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:39px; height:400px; position:absolute; right:-13px; z-index:4; background-image:url(/de/picture/right.png); background-position:right; background-repeat:no-repeat; cursor:pointer; display:none; border:0;}
.jcarousel-next:hover {background-image:url(/de/picture/right2.png);}
.jcarousel-prev {width:39px; height:400px; position:absolute; left:-13px; z-index:4; background-image:url(/de/picture/left.png); background-position:left; background-repeat:no-repeat; cursor:pointer; display:none; border:0;}
.jcarousel-prev:hover {background-image:url(/de/picture/left2.png);}

.jcarousel-next-disabled-horizontal, .jcarousel-next-disabled-horizontal:hover, .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -112px 0;
	background:none;
}
.jcarousel-prev-disabled-horizontal, .jcarousel-prev-disabled-horizontal:hover, .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -112px 0;
	background:none;
}
