/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

#landing_topitem .jcarousel-container {
	width: 570px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 570px;
}

#landing_feature .jcarousel-clip, #landing_mothers .jcarousel-clip, #landing_sale .jcarousel-clip{
	width: 780px;
}

.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: 190px;
    height: 166px;
}

#landing_feature .jcarousel-item, #landing_mothers .jcarousel-item, #landing_sale .jcarousel-item
{
	height: 172px;
}

/**
 * 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;
    display: block;
    cursor:pointer;
    background: url(../image/right_arrow.png) no-repeat center center;
	width: 11px;
    height: 41px;
    position: absolute;
    top: 60px;
    left: 569px;   
}

#landing_feature .jcarousel-next, #landing_mothers .jcarousel-next, #landing_sale .jcarousel-next 
{	
    left: 769px;   
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

