﻿@charset "utf-8";
/* CSS Document */

.infiniteCarousel {
  width: 715px;
  position: relative;
}

.infiniteCarousel .wrapper {
	width: 635px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
	overflow: auto;
	height: 140px;
	margin: 0 40px;
	position: absolute;
	top: 1px;
  
}


.infiniteCarousel ul a img {
  border:none;
}

.infiniteCarousel .wrapper ul {
	width: 715px; /* single item * n */
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	top: 4px;
	text-align:left;
	overflow:hidden;
}

.infiniteCarousel ul li {
  display:block;
  float:left;
  height: 133px;
  width: 163px;
  
}

.infiniteCarousel .arrow {
  display: block;
  height: 50px;
  width: 35px;
  background: url(../images/arrow.png) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  top: 50px;
  cursor: pointer;
  outline: 0;
}

.infiniteCarousel .forward {
  background-position: 0 0;
  right: 0;
}

.infiniteCarousel .back {
  background-position: 0 -100px;
  left: 0;
}

.infiniteCarousel .forward:hover {
  background-position: 0 0;
}

.infiniteCarousel .back:hover {
  background-position: 0 -100px;
}
