/* Horizontal Carousel */
#h_carousel {
	float: left;
	width: 370px;
	height: 80px;
	position: relative;
	background-image: url(../images/fd_carousel.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	padding-top: 10px;
}

#h_carousel .container {
	float: left;
	width: 320px;
	height: 80px;
	position: relative;
	overflow: hidden;
	text-align:center;
}

#h_carousel ul {
	margin: 0;
	padding:0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 80px;
}                      

#h_carousel ul li {
  width: 90px;
  height: 70px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#h_carousel .previous_button {
	float:left;
	width: 25px;
	height: 70px;
	z-index: 100;
	cursor: pointer;
	background-image:url(../images/fl_carousel_prv.gif);
	background-repeat:no-repeat;
	background-position:50%;
}

#h_carousel .previous_button_over {
	background-image:url(../images/fl_carousel_prv_over.gif);
	}

#h_carousel .previous_button_disabled {
	background-image:url(../images/fl_carousel_prv.gif);
	cursor: default;
}

#h_carousel .next_button {
	float:left;
	width: 25px;
	height: 70px;
	z-index: 100;
	cursor: pointer;
	background-image:url(../images/fl_carousel_nxt.gif);
	background-repeat:no-repeat;
	background-position:50%;
}

#h_carousel .next_button_over {
	background-image:url(../images/fl_carousel_nxt_over.gif);
}

#h_carousel .next_button_disabled {
	background-image:url(../images/fl_carousel_nxt.gif);
  cursor: default;
}


/* vertical Carousel */

.ui_v_carousel {
}

#v_carousel {
  float:left;
  width: 350px;
  height: 270px;
  margin-bottom: 10px;
  position: relative;
}

#v_carousel .container {
  float:left;  
  width: 260px;
  height: 240px;
  overflow: hidden;
}

#v_carousel ul {
  margin: 0;
  padding:0;
  height: 100000px;
  position: relative;
  top: 0;
  left: 0;
}

#v_carousel ul li {
  width: 260px;
  height: 240px;
  text-align: center;      
  list-style:none;   
  float:left;
}                         

#v_carousel .previous_button {
  float:left;
  height: 32px;
  width: 175px;
  background: url(prototype-ui/vertical/left.png);
  cursor: pointer;    
  display:inline;
  margin: 0 0 10px 40px;
}

#v_carousel .previous_button_over {
  background: url(prototype-ui/vertical/left_over.png);
}

#v_carousel .previous_button_disabled {
  background: url(prototype-ui/vertical/left_disabled.png);
  cursor: default;
}

#v_carousel .next_button {
  float:left;
  height: 32px;
  width: 175px;
  background: url(prototype-ui/vertical/right.png);
  display:inline;
  margin-left: 40px;
  cursor: pointer;
}

#v_carousel .next_button_over {
  background: url(prototype-ui/vertical/right_over.png);
}

#v_carousel .next_button_disabled {
  background: url(prototype-ui/vertical/right_disabled.png);
  cursor: default;
}

