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

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

#shop_module .jcarousel-clip {
	width: 265px;
	position: relative;
	left: 19px;
	}

.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: 144px;
    height: 315px;
    margin: 0 14px 0 0;
}

/**
 * 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".
 */
#related_wrapper .jcarousel-next {
    z-index: 3;
    display: none;
    background: url(../images/related_arrow_right.gif) no-repeat scroll left top;
    height: 15px;
    width: 15px;
    position: absolute;
    right: 13px;
    top: -35px;
    cursor: pointer;
}

#related_wrapper .jcarousel-prev {
    z-index: 3;
    display: none;
    background: url(../images/related_arrow_left.gif) no-repeat scroll left top;
    height: 15px;
    width: 15px;
    position: absolute;
    right: 33px;
    top: -35px;
    cursor: pointer;
}

*html #related_wrapper .jcarousel-clip {
	width: 936px;
	}
	
*html #related_wrapper li {
	margin: 0 -8px 0 0;
	}

#shop_module .jcarousel-list li,
#shop_module .jcarousel-item {
	float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 130px;
    height: 59px;
   	margin: 0 5px 0 0;
	}
	
#shop_module .jcarousel-prev {
    z-index: 3;
    display: none;
    background: url("../images/shopnav_left.gif") no-repeat bottom left;
	width: 16px;
	height: 50px;
	display: block;
	text-indent: -9999px;
	position: absolute;
	left: 0;
	top: 7px;
	cursor: pointer;
}

#shop_module .jcarousel-next {
    z-index: 3;
    display: none;
    background: url("../images/shopnav_right.gif") no-repeat bottom left;
	width: 16px;
	height: 50px;
	display: block;
	text-indent: -9999px;
	position: absolute;
	right: 0;
	top: 7px;
	cursor: pointer;
}
