/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 495px;
  height: 100px;
  position: relative;
  background-color:#4d4e53;
  
}

#horizontal_carousel .container {
  float: left;
  width: 435px;
  height: 75px;
  padding-top:25px;
  position: relative;     
  overflow: hidden;
  background-color:#4e4d53;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 100px;
}                      

#horizontal_carousel ul li {
  width: 380px;
  height: 100px;
  position: relative;
  text-align: center; 
  list-style:none;   
  float:left; 
  padding-left:25px;
  padding-right:25px;
}

#horizontal_carousel .previous_button { 
	background: url(/images/prototype-ui/horizontal/left.png);
	cursor: pointer; 
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

#horizontal_carousel .previous_button_over {
	background: url(/images/prototype-ui/horizontal/left_over.png);
	cursor: pointer; 
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

#horizontal_carousel .previous_button_disabled {
	background: url(/images/prototype-ui/horizontal/left_disabled.png);
	cursor: default;
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

#horizontal_carousel .next_button {
	background: url(/images/prototype-ui/horizontal/right.png);
	cursor: pointer; 
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

#horizontal_carousel .next_button_over {
	background: url(/images/prototype-ui/horizontal/right_over.png);
	cursor: pointer; 
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

#horizontal_carousel .next_button_disabled {
	background: url(/images/prototype-ui/horizontal/right_disabled.png);
  	cursor: default;
	float:left; 
	width: 30px;
	height: 100px;
	z-index: 100;
	background-position:center;
	background-repeat:no-repeat;
}

