/************************************************
* carousel				*
************************************************/

#carousel { 
  float: left;
  width: 1097px;
 	background: #fff;
	border: 1px solid #ddd;
  height : 170px; 
  margin : 0 0 10px 0; 
	padding: 15px 10px 10px 13px;
}
.infinite {  
  position: relative;
  width: 1095px;
}
.carousel {  
  width: 1095px;  /* .infinite width - (.carousel margin-left + .carousel margin-right) */
  overflow: hidden;
  height: 160px;
  position: absolute; top: 0; left:0; 
}
.carousel ul {
  width: 10000px;
}
.carousel ul li {  
  float: left;
  position: relative;
  width: 219px;
  height: 160px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/************************************************
* carousel-img				*
************************************************/

#carousel img {
  width: 199px;
  height: 149px;
  border: 6px solid #ddd;
  margin: 0 0 5px 3px;
  padding: 0;
}

/************************************************
* carousel-title				*
************************************************/

.carousel-title { 
  position: absolute; bottom: 5px; left: 9px;
  width: 199px;
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);
	background-color: #000;
  font-size: 13px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  padding: 6px 0 8px 0;
  line-height: 1.1;
}
h2.carousel-title a, h2.carousel-title a:visited {
  position: relative; 
  color: #fff;
}
h2.carousel-title a:hover, h2.carousel-title a:active {
	text-decoration:none;
  color: #CCC;
}

/************************************************
* button				*
************************************************/

.infinite .arrow {
  display: block;
  height: 45px;
  width: 27px;
  text-indent: -999px;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.infinite .back {
  background: url('/wp-content/themes/Sabrina/images/left.png') left no-repeat;
  background-position: 0 0;
  top: 45px;
  left: -20px;
}
.infinite .back:hover {
  background-position: 0 -67px;
}
.infinite .forward {
  background: url('/wp-content/themes/Sabrina/images/right.png') right no-repeat;
  background-position: 0 0;
  top: 45px;
  right: -18px;
}
.infinite .forward:hover {
  background-position: -47px -67px;
}

