/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    overflow: hidden;
	width:561px;
	margin:0 0 0 19px;
	padding:3px 0 21px 0;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
	margin:0px;
	padding:0 20px;
	text-align:center;
	width:105px;
}
.jcarousel li img {
	
}
.jcarousel-wrapper {	position: relative;
					width:551px;
					padding-left: 30px;
					float: left !important;
					margin: 0px;
					background:#ECEFF4;
					-webkit-border-radius: 25px;
					-moz-border-radius: 25px;
					border-radius: 25px;
					-webkit-box-shadow: 0px 3px 12px 0px rgba(50, 50, 50, 0.75);
					-moz-box-shadow:    0px 3px 12px 0px rgba(50, 50, 50, 0.75);
					box-shadow:         0px 3px 12px 0px rgba(50, 50, 50, 0.75);
					border:1px #CED2DB solid; }
					
.jcarousel-control-prev {
	position: absolute;
	top: 35%;
	left: 7px;
	background: url('/images/larrow.png') no-repeat left top;
	width: 41px;
	height: 48px;
}
.jcarousel-control-next {
	position: absolute;
	top: 35%;
	right: 7px;
	background: url('/images/rarrow.png') no-repeat left top;
	width: 41px;
	height: 48px;
}
.sale_left {
	
}
.new_right {
	margin-left: 33px;
}