/* Horizontal Carousel */
.horizontal_carousel {
  float: left;
  width: 538px;
  height: 121px;
  margin-bottom: 3em;
  position: relative;
	border: 1px solid #333;
}

.horizontal_carousel a, .horizontal_carousel a:hover {
	background: none;
	border: none;
	text-decoration: none;
}


.horizontal_carousel .container {
  float: left;
  width: 480px;
  height: 121px;
  position: relative;    
  overflow: hidden;
	background: #000 url(../images/carousel/bg.jpg);
}

.horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 121px;
}                      

.horizontal_carousel ul li {
	padding: 5px 0 0 0;
  width: 160px;
  height: 121px;
  text-align: center; 
  list-style:none;   
  float:left;
}

.horizontal_carousel .previous_button {
  float:left;  
  width: 30px;
  height: 121px;
  background: url(../images/carousel/left.jpg);
  z-index: 100;
  cursor: pointer;
}

.horizontal_carousel .previous_button_over {
  background: url(../images/carousel/left_over.jpg);
}

.horizontal_carousel .previous_button_disabled {
  background: url(../images/carousel/left_disabled.jpg);
  cursor: default;
}

.horizontal_carousel .next_button {
  float:left;  
  width: 28px;
  height: 121px;
  background: url(../images/carousel/right.jpg);
  z-index: 100;
  cursor: pointer;
}

.horizontal_carousel .next_button_over {
  background: url(../images/carousel/right_over.jpg);
}

.horizontal_carousel .next_button_disabled {
  background: url(../images/carousel/right_disabled.jpg);
  cursor: default;
}