/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
		padding-left: 10px;
}

.jcarousel-clip {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
		height: 139px;
		width: 830px;
		left: 40px;
}

.jcarousel-list {
    overflow: hidden;
    position: relative;
}


/**
 * 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: 32px;
		height: 139px;
		background: url(../images/carousel_right.png) no-repeat;
		position: absolute;
		right: 30px;
		cursor: pointer;
}
.jcarousel-prev {
		width: 32px;
		height: 139px;
		background: url(../images/carousel_left.png) no-repeat;
		position: absolute;
		left: 0px;	
		cursor: pointer;
}
