@charset "utf-8";
/* CSS Document */

label { display: block; } 

.infiniteCarousel {
	width: 960px;
	height: 350px;
	float: left;
	position: relative;
}

.infiniteCarousel .wrapper {
	width: 960px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
	overflow: auto;
	height: 350px;
	/* margin: 0 40px; */
	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;
	left: -280px;
}

.infiniteCarousel ul a img {
  /* border: 5px solid #000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; */
}

.infiniteCarousel ul li {
	display:block;
	float:left;
	margin-left: 5px;
	margin-right: 5px;
	height: 350px;
	width: 470px;
	margin-top: 10px;
}

.infiniteCarousel ul li img {
	-webkit-transition: border-color 400ms;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.infiniteCarousel ul:hover li img {
}

.infiniteCarousel ul:hover li:hover img {
}

.infiniteCarousel ul li a img {
	display:block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.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;
}

