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

.infiniteCarousel {
  width: 915px;
  position: absolute;
}

.infiniteCarousel .wrapper {
  width: 835px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right)  80 px*/
  overflow: auto;
  min-height: 10em;
  margin: 0 30px;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul a img {
  border: 5px solid #666;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.infiniteCarousel .wrapper ul {
  width: 9999px;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: relative;
  top: 0;
}

.infiniteCarousel ul li {
  /*display:block;*/
  float:left;
  padding: 0px;
  height: 180px;
  width: 210px;
  list-style-type:none;
  list-style-image:none;
 /* border:1px solid #333;
  line-height:16px;*/
  
}
.infiniteCarousel ul li div a{
	font-size:14px; 
	text-decoration:none;
	color:#003366;
	font-weight:bold;
}
.infiniteCarousel ul li div a:hover{
	font-size:14px; 
	text-decoration:underline;
	color:#003366;
	font-weight:bold;
}

.infiniteCarousel ul li img {
  display:block;
}

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