/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
	width: 848px;
	padding:0 35px 0 35px;
	zoom:1;
	margin:10px 0 0 0;
}

.up .jcarousel-container {width: 625px; padding:0 35px 0 35px; margin:20px 0 0 0;}
.up .jcarousel-clip {width: 625px;}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
	width: 848px;
}

.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: 123px;
    height: 120px;
	padding:0 0 0 10px;
	position:relative;
	margin-right:10px;
}

.up .jcarousel-list li,
.up .jcarousel-item {
	padding:0 15px 0 10px;
}


/**
 * 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;
	cursor: pointer;
	width:12px; height:39px;
	background:url(../i/carousel_next.gif) no-repeat;
	position: absolute;
    top: 45px;
    right: 8px;
}
.jcarousel-next:hover {background-position:0 -39px;}

.jcarousel-prev {
    z-index: 3;
	cursor: pointer;
	width:12px; height:39px;
	background:url(../i/carousel_prev.gif) no-repeat;
	position: absolute;
    top: 45px;
    left: 8px;
}
.jcarousel-prev:hover {background-position:0 -39px;}




.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background:none;
}




.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background:none;
}

.up .jcarousel-prev {left: 17px;}
.up .jcarousel-next {right:17px;}






