
.infiniteCarousel {
  width: 700px;
  position: relative;
  clear:both;
  height:220px;
}

.infiniteCarousel .wrapper {
  width: 620px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: auto;
  min-height: 210px;
  margin: 0 40px;
  position: absolute;
  top: 0;
}
.infiniteCarousel ul li,.infiniteCarousel ul a { display:block;  height: 140px;  width: 184px;  overflow:hidden;  }
.infiniteCarousel ul a  {
  border: 5px solid #d2d2d2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background:#d2d2d2
}
.infiniteCarousel ul li h3 { font-size:8pt; color:#666; font-weight:normal; text-align:center}
.infiniteCarousel .wrapper ul {
  width: 9999px;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul li {
  float:left;
  padding: 10px;
	height:auto;
  
}

.infiniteCarousel ul li a img {
  display:block;
  width:184px;
}

.infiniteCarousel .arrow {
  display: block;
  height: 36px;
  width: 37px;
  background: url(../images/arrow.png) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  top: 65px;
  cursor: pointer;
}

.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;
}


