/************************************************
* carousel				*
************************************************/

#carousel { 
  float: left;
  width: 975px;
 	background: #fff;
	border: 1px solid #ddd;
  height : 160px; 
  margin : 5px 0 20px 0; 
	padding: 15px 10px 10px 13px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.infinite {  
  position: relative;
  width: 975px;
}
.carousel {  
  width: 975px;  /* .infinite width - (.carousel margin-left + .carousel margin-right) */
  overflow: hidden;
  height: 152px;
  position: absolute; top: 0; left:0; 
}
.carousel ul {
  width: 10000px;
}
.carousel ul li {  
  float: left;
  position: relative;
  width: 195px;
  height: 152px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/************************************************
* carousel-img				*
************************************************/

#carousel img {
  width: 180px;
  height: 150px;
  border: 1px solid #ccc;
  margin: 0 0 5px 5px;
  padding: 0;
}

/************************************************
* carousel-title				*
************************************************/

.carousel-title { 
  position: absolute; bottom: 1px; left: 6px;
  width: 180px;
	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;
}
.carousel-title a, .carousel-title a:visited {
  position: relative; 
  color: #fff;
}
.carousel-title a:hover, .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/AdsenseRecipe/images/left.png') left no-repeat;
  background-position: 0 0;
  top: 45px;
  left: -20px;
}
.infinite .back:hover {
  background-position: 0 1px;
}
.infinite .forward {
  background: url('/wp-content/themes/AdsenseRecipe/images/right.png') right no-repeat;
  background-position: 0 0;
  top: 45px;
  right: -18px;
}
.infinite .forward:hover {
  background-position: 0 1px;
}

