

/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  float:left;
  width: 125px;
  height: 500px;
  position: relative;
}

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

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

#vertical_carousel ul li {
  width: 125px;
  height: 160px;
  text-align: center;      
  list-style:none;   
  float:left;
}                         

html>body #vertical_carousel .previous_button {
  float:left;
  height: 32px;
  width: 125px;
  background: url(prototype-ui/vertical/left.png) no-repeat 50% 50%;
  cursor: pointer;    
  display:block;
  margin: 0 0 1px 0px;
}

#vertical_carousel .previous_button {
  float:left;
  height: 32px;
  width: 125px;
  background: url(prototype-ui/vertical/left.png) no-repeat 50% 50%;
  cursor: pointer;    
  display:block;
  margin: 0 0 1px 25px;
}

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

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

html>body #vertical_carousel .next_button {
  float:left;
  height: 32px;
  width: 125px;
  background: url(prototype-ui/vertical/right.png) no-repeat 50% 50%;
  display:block;
  margin-left: 0px;
  cursor: pointer;
}

#vertical_carousel .next_button {
  float:left;
  height: 32px;
  width: 125px;
  background: url(prototype-ui/vertical/right.png) no-repeat 50% 50%;
  display:block;
  margin-left: 25px;
  cursor: pointer;
}

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

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


