/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
	height:200px;
	width:550px;
	float: left;
}

.jcarousel-clip {
    z-index: 2;
    overflow: hidden;
    position: relative;
	text-align: center;
	width: 430px;
	left: 65px;
}

.jcarousel-list {
	left:0;
	margin:0 !important;
	padding:0;
	position:relative;
	top:0;
	z-index:1;
}

.jcarousel-list li,
.jcarousel-item {
	float: left;
	height: 200px !important;
	list-style: none;
	margin:0;
	text-align:center;
	width:430px;
}

/**
 * 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;
	position: absolute;
	right: 17px;
	top: 73px;
	height: 25px;
	width: 25px;
	background:	url('/img/banners/arrow-forward.png') no-repeat;
	cursor: pointer;
}

.jcarousel-next:hover {
	background:	url('/img/banners/arrow-forward-on.png') no-repeat;
}

.jcarousel-prev {
    z-index: 3;
	position: absolute;
	left: 30px;
	top: 73px;
	height: 25px;
	width: 25px;
	background:	url('/img/banners/arrow-back.png') no-repeat;
	cursor: pointer;
}

.jcarousel-prev:hover {
	background:	url('/img/banners/arrow-back-on.png') no-repeat;
}
