.infiniteCarousel {
  width: 395px;
  position: relative;
}

.infiniteCarousel .wrapper {
  width: 315px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: auto;
  height: 115px;
  margin: 0 40px;
  position: absolute;
  top: 0;
  font-size:11px;
  line-height:11px;
  text-align:center;
}
.infiniteCarousel .wrapper a{
	color:#333333;
}
.infiniteCarousel .wrapper a:hover{
	color:#999999;
}

.infiniteCarousel ul a img {
  border: 1px solid #000;
}

.infiniteCarousel .wrapper ul {
  width: 840px; /* single item * n */
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
}
/*for ie6 and 7, we need to add margin-left:40px to above styling*/




.infiniteCarousel ul li {
  display:block;
  float:left;
  padding: 10px;
  height: 86px;
  width: 85px;
  overflow:hidden;
}

.infiniteCarousel ul li img {
    -webkit-transition: border-color 400ms;
}

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

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

.infiniteCarousel ul li a img {
  display:block;
  margin-bottom:3px;
}

.infiniteCarousel .arrow {
  display: block;
  height: 36px;
  width: 37px;
  background: url(images/arrow.png) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  top: 37px;
  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;
}
