/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  float:left;
  width: 200px;
  height: 460px;
  margin-bottom: 10px;
  position: relative;
}

#vertical_carousel .container {
  float:left;  
  width: 200px;
  height: 360px;
  overflow: hidden;
  position: relative;
}

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

#vertical_carousel ul li {
  width: 200px;
  /*height: 240px;*/
  padding-bottom:5px;
  text-align: center;      
  list-style:none;   
  float:left;
}                         

#vertical_carousel .previous_button {
  float:left;
  height: 32px;
  width: 200px;
  background: url(../images/carousel/vertical/left.png) no-repeat center;
  cursor: pointer;    
  display:inline;
  margin: 10px 0px;
}

#vertical_carousel .previous_button_over {
  background: url(../images/carousel/vertical/left_over.png) no-repeat center;
}

#vertical_carousel .previous_button_disabled {
  background: url(../images/carousel/vertical/left_disabled.png) no-repeat center;
  cursor: default;
}

#vertical_carousel .next_button {
  float:left;
  height: 32px;
  width: 200px;
  background: url(../images/carousel/vertical/right.png) no-repeat center;
  display:inline;
  margin-top: 10px;
  cursor: pointer;
}

#vertical_carousel .next_button_over {
  background: url(../images/carousel/vertical/right_over.png) no-repeat center;
}

#vertical_carousel .next_button_disabled {
  background: url(../images/carousel/vertical/right_disabled.png) no-repeat center;
  cursor: default;
}

