
.infiniteCarousel {
  width: 960px;
  height: 230px;
  position: relative;
}

.infiniteCarousel .wrapper {
  width: 900px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: auto;
  height: 230px;
  margin: 0 30px;
  position: absolute;
  top: 0;
}

.infiniteCarousel .wrapper ul {
  width: 960px; /* single item * n */
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
  z-index:1000;
}

.infiniteCarousel ul li {
	display:block;
	float:left;
	padding: 5px;
	height: 230px;
	width: 215px;
	border: none !important;
	text-align: center;
}

.infiniteCarousel ul li img {
    /*padding: 3px;
	border: 1px solid #E7E7E7;*/
	margin: 0 auto 5px;
}

.infiniteCarousel ul li .name a {
	font-weight: bold;
	text-decoration: none;
	display: block;
	margin-bottom: 4px;
}

.infiniteCarousel ul li .price {
	display: block;
	font-weight: bold;
	color: #333333;
	margin-bottom: 4px;
}
.infiniteCarousel ul li .price-old {
	color: #F00;
	text-decoration: line-through;
}
.infiniteCarousel ul li .price-new {
	font-weight: bold;
}

.infiniteCarousel ul li .rating {
	display: block;
	margin-bottom: 4px;
}

.infiniteCarousel ul:hover li img {

}

.infiniteCarousel ul:hover li:hover img {

}

.infiniteCarousel ul li a img {
  display:block;
}

.infiniteCarousel ul li .cart a.button, .infiniteCarousel ul li .cart input.button {
	width: 90px;
}
.infiniteCarousel ul li .cart a.button {
	padding: 6px 0;
	height: 12px;
}
.infiniteCarousel ul li .cart a.grey {
	background: url('../image/button-grey.png') repeat-x;
}
.infiniteCarousel ul li .cart a.grey:hover {
	background-position: 0 -24px;
}

.infiniteCarousel .arrow {
	display: block;
	height: 30px;
	width: 30px;
	text-indent: -999px;
	position: absolute;
	top: 70px;
	cursor: pointer;
	outline: 0;
	z-index:100;

}

.infiniteCarousel .forward {
  background-image: url(../image/fe-arrows.png);
	background-repeat: no-repeat;
	background-position: -30px 0;
  right: 0;
}
.infiniteCarousel .forward:hover {
  background-image: url(../image/fe-arrows.png);
	background-repeat: no-repeat;
	background-position: -24px 0;
}

.infiniteCarousel .back {
background-image: url(../image/fe-arrows.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.infiniteCarousel .back:hover {
 background-image: url(../image/fe-arrows.png);
	background-repeat: no-repeat;
	background-position: -6px 0;
}