
/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  display: block;
  float:left;
  width: 250px;
  height: 600px;
  margin-bottom: 10px;
  overflow: hidden;
}

#vertical_carousel .container {
  position: relative;   
  display: block;
  float:left; 
  margin: 5px auto;
  width: 250px;
  height: 450px;
  overflow: hidden;
}

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

#vertical_carousel ul li {
  width: auto;
  height: 150px;
  text-align: center;      
  list-style:none;  
}                         

#vertical_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;
}

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

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

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

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

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


