/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: absolute;
	top:10px;
	left:0px;
	border:0px solid #FD00FD;
}

.jcarousel-container-horizontal { height:40px; }

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: absolute;
	width:260px;
	left:30px;
	height:40px;
	top:0px;
	border:0px solid #FF0000;
}

.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. */
	text-align:center;
	margin-right:5px;
	border:0px solid #999999;
	background:#FFFFFF;
	
}

/**
 * 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-prev {
	position:absolute;
	left:0px;
	top:8px;
    z-index: 3;
    display: none;
	background: url('/data/img/Commerce/previous.png') no-repeat scroll 0 0; 
	height:24px; 
	width:24px; 
	display:block;
	cursor:pointer;
}

.jcarousel-next {
    z-index: 3;
    display: none;
	position:absolute;
	right:0px;
	top:8px;
	background: url('/data/img/Commerce/next.png') no-repeat scroll 0 0; 
	height:24px; 
	width:24px; 
	display:block;
	cursor:pointer;
}

.jcarousel-prev-disabled { cursor:default; background-position: 0px -24px; }
.jcarousel-next-disabled { cursor:default; background-position: 0px -24px; }

.jcarousel-container-horizontal { width: 318px; border:0px solid;}

