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

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

.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;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 220px;
    height: 180px;
    margin-right: 12px;
}

/**
 * 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: 10000;
    display: none;
    position: absolute;
    top: 43px;
    right: -49px;
    width: 29px;
    height: 47px;
    cursor: pointer;
    background: transparent url(../../images/carousel_right.gif) no-repeat 0 0;
}
#right .jcarousel-next {
	position: relative;
	right: auto;
	left: -440px;
	top: -49px;
	margin-bottom: -47px;
}
.jcarousel-next-horizontal:hover {
    background-position: 0 -94px;
}

.jcarousel-next-horizontal:active {
    background-position: 0 -94px;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: 0 -47px;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
    position: absolute;
    top: 43px;
    left: -49px;
    width: 29px;
    height: 47px;
    cursor: pointer;
    background: transparent url(../../images/carousel_left.gif) no-repeat 0 0;
}
#right .jcarousel-prev {
	position: relative;
	display: block;
	top: -47px;
	left: -39px;
	margin-bottom: -47px;
}
.jcarousel-prev-horizontal:hover {
    background-position: 0 -94px;
}

.jcarousel-prev-horizontal:active {
    background-position: 0 -94px;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: 0 -47px;
}

