@charset "utf-8";
/* CSS Document */

.infiniteCarousel {
	width: 620px;
	position: relative;
	height: 140px;
	background-color: #203f7b;
}

.infiniteCarousel .wrapper {
	width: 564px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
	overflow: auto;
	height: 120px;
	top: 0;
	margin-left: 28px;
	position: absolute;
	margin-right: 28px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.infiniteCarousel .wrapper ul {
	width: 1200px; /* single item * n */
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
}

.infiniteCarousel ul li {
	display:block;
	float:left;
	height: 120px;
	width: 169px;
	padding-right: 29px;
}

.infiniteCarousel ul li img {
    -webkit-transition: border-color 400ms;
}

.infiniteCarousel ul:hover li img {

}

.infiniteCarousel ul:hover li:hover img {

}

.infiniteCarousel ul li a img {
	display:block;
	border: 4px solid #FFFFFF;
}

.infiniteCarousel .arrow {
	display: block;
	height: 35px;
	width: 17px;
	text-indent: -9999px;
	position: absolute;
	top: 55px;
	cursor: pointer;
	outline: 0;
}

.infiniteCarousel .forward {
	background-position: 0 0;
	right: 0px;
	background-image: url(../images/arrow_back.jpg);
	background-repeat: no-repeat;
}

.infiniteCarousel .back {
	background-position: 0 0px;
	left: 0px;
	background-image: url(../images/arrow_forward.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 40px;
	width: 20px;
}

.infiniteCarousel .forward:hover {
  	background-position: 0 0;
	right: 0px;
	background-image: url(../images/arrow_back.jpg);
	background-repeat: no-repeat;
}

.infiniteCarousel .back:hover {
	background-position: 0 0px;
	left: 0px;
	background-image: url(../images/arrow_forward.jpg);
	background-repeat: no-repeat;
	display: block;
	height: 40px;
	width: 20px;
}
