/* Horizontal Carousel */
#hcarousel {
  width: 980px;
  height: 40px;
  position: relative;
  
}

#hcarousel .container {
  float: left;
  width: 930px;
  height: 40px;
  position: relative;    
  overflow: hidden;
}

#hcarousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height:40px;
}                      

#hcarousel ul li {
  width:115px;
  height:40px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#hcarousel .previous_button {
	float: left;
	width: 25px;
	height:40px;
	background:transparent url(../img/left.gif) 0 50% no-repeat;
	z-index: 100;
	cursor: pointer;
}

#hcarousel .previous_button_over {
	background:transparent url(../img/left_over.gif) 0 50% no-repeat;
}

#hcarousel .previous_button_disabled {
	background:transparent url(../img/left_disabled.gif) 0 50% no-repeat;
  cursor: default;
}

#hcarousel .next_button {
	float: left;
	width: 25px;
	height:40px;
	background:transparent url(../img/right.gif) 100% 50% no-repeat;
	z-index: 100;
	cursor: pointer;
}

#hcarousel .next_button_over {
	background:transparent url(../img/right_over.gif) 100% 50% no-repeat;
}

#hcarousel .next_button_disabled {
	background:transparent url(../img/right_disabled.gif) 100% 50% no-repeat;
	cursor: default;
}

#hcarousel li a { display:block; width:110px; padding:5px 0 5px 20px; height:40px; text-align:left; font-size:11px; font-weight:bold; color:#FFFFFF; }
#hcarousel li a:hover { color:#313131; }
#hcarousel li a.cur { color:#313131; }

