.carousel-hidden{
	visibility:hidden;
}

.carousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

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

.carousel-item {
    float: left;
    list-style: none;
	overflow:hidden;
	visibility:visible;
    /* 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".
 */
.carousel-next {
    z-index: 3;
	width: 13px;
	height: 24px;
	background-image:url('next.gif');
	position:relative;
	top:75px;
}

.carousel-next:hover {
	background-image:url('next_active.gif');
	cursor: pointer;
}

.carousel-prev {
    z-index: 3;
	width: 13px;
	height: 24px;
	background-image:url('prev.gif');
	position:relative;
	top:75px;
	left:45px;
}

.carousel-prev:hover {
	background-image:url('prev_active.gif');
	cursor: pointer;
}

.carousel-disabled, .carousel-disabled:hover {
	background-image:none;
	cursor: default;
}

