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

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width:450px;
    height:675px;
}
.detail .jcarousel-clip{height:349px;}

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

.jcarousel-list li,
.jcarousel-item {
	margin:0;
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 450px;
    height: 223px;
}


/**
 * 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 {
	position:absolute;
    z-index: 80;
    display: none;
    width:20px;
    height:20px;
    cursor:pointer;
	background: #FFF url('../img/arrow_down.gif') no-repeat top left;
	bottom: 0px; 
left: 215px;
}

.jcarousel-prev {
	top: 0;
	left: 215px;
	position:absolute;
    z-index: 80;
    display: none;
    width:20px;
    height:20px;
    cursor:pointer;
	background:#FFF url('../img/arrow_up.gif') no-repeat top left;
}

