
.infiniteCarousel {
  width: 660px;
  height: 261px;
  position: relative;
  margin: 4px auto 0 auto;
}

.infiniteCarousel .wrapper {
  width: 660px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: auto;
  height: 261px;
  position: absolute;
  padding-left: 0px;
  margin: 0 0 0 0px;
  top: 0;
}

.infiniteCarousel .wrapper ul {
  width: 660px; /* single item * n */
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin-left: 0px;
  padding:0;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul li {
  display:block;
  float:left;
  padding-right: 130px;
  height: 237px;
  width: 582px;
}

.infiniteCarousel ul li img {
    border: none;
}

.infiniteCarousel ul:hover li img {
  border: none;
}

.infiniteCarousel ul:hover li:hover img {
  border-color: #333;
}

.infiniteCarousel ul li a img {
  display:block;
}

.infiniteCarousel .arrow {
  display: block;
  height: 36px;
  width: 37px;
  background: url(../gfx/arrow.png) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  top: 112px;
  cursor: pointer;
  outline: 0;
}

.infiniteCarousel .forward {
  background-position: 0 0;
  right: 0;
}

.infiniteCarousel .back {
  background-position: 0 -72px;
  left: 0;
}

.infiniteCarousel .forward:hover {
  background-position: 0 -36px;
}

.infiniteCarousel .back:hover {
  background-position: 0 -108px;
}