﻿/*滾動樣式*/

label { display: block; } 

.infiniteCarousel {
  width: 765px;
  position: relative;
  height:105px;
  overflow:auto;
  z-index:0;
  margin:25px 3px 0 3px;
}

.infiniteCarousel .wrapper {
  width: 713px; /* .infiniteCarousel width - (.wrapper margin-left + .wrapper margin-right) */
  overflow: hidden;
  height: 105px;
  position: absolute;
  left:24px;
}

.infiniteCarousel ul a img {
  border: solid 1px #eeeeee;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

.infiniteCarousel .wrapper ul {
  width: 104000px; /* single item * n */
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  padding:0;
  margin:0 auto;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul li {
  display:block;
  float:left;
  padding: 0;
  margin:0;
  width:102px;height:105px;
}

.infiniteCarousel ul li img {
    -webkit-transition: border-color 400ms;
    width:98px;height:70px;
    margin:0;
}
.infiniteCarousel ul li span
{
	display:block;
	margin-top:5px;
	width:100px;
	text-align:center;
	overflow:hidden;
	}

.infiniteCarousel ul li a:hover img {
  border-color: #000;
}
	
/*
.infiniteCarousel ul:hover li img {
  border-color: #000;
}

.infiniteCarousel ul:hover li:hover img {
  border-color: #333;
}
*/
.infiniteCarousel ul li a img {
  display:block;
}

.infiniteCarousel .arrow {
  display: block;
  height: 35px;
  width: 24px;
  background: url(/images/proarrow.jpg) no-repeat 0 0;
  text-indent: -999px;
  position: absolute;
  top: 18px;
  cursor: pointer;
  outline: 0;
  z-index:0;
}

.infiniteCarousel .forward {
  background-position: 0 0;
  left: 0;
}

.infiniteCarousel .back {
  background-position: 0 -70px;
   right: 0;
}

.infiniteCarousel .forward:hover {
  background-position: 0 -35px;
}

.infiniteCarousel .back:hover {
  background-position: 0 -105px;
}
