/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  width: 605px;
  height: 270px;
  margin: 10px 0px 10px 100px;
  position: relative;
}

#vertical_carousel .container {
  position: relative;
  width: 605px;
  height: 260px;
  overflow: hidden;
  text-align: center;
}

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

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

#vertical_carousel .previous_button {
  height: 24px;
  width: 100px;
  margin-left: 24px;
  background: url(/images/up.png);
  cursor: pointer;    
  background-repeat: no-repeat;
  background-position: bottom;
  text-align: center;
}

#vertical_carousel .previous_button_over {
  background: url(/images/up_hover.png);
  background-repeat: no-repeat;
  background-position: center;
}

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

#vertical_carousel .next_button {
  height: 24px;
  width: 100px;
  margin-left: 24px;
  background: url(/images/down.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: top;
  text-align: center;
}

#vertical_carousel .next_button_over {
  background: url(/images/down_hover.png);
  background-repeat: no-repeat;
  background-position: center;
}

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

