/* Horizontal Carousel */
#horizontal_carousel {
  float: center;
  width: 780px;
  height: 240px;
  margin-bottom: 0px;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 710px;
  height: 240px;
  position: relative;    
  overflow: hidden;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 25; //отступ сверху
  left: 0;
  height: 240px;
}                      

#horizontal_carousel ul li {
  width: 125px; //ширина элементов (высота картинки - в шаблоне)
  height: 240px;
  text-align: center; 
  list-style:none;   
  float:left;
  padding: 10;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 240px;
  background: url(../images/topMenu/left.gif);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(../images/topMenu/left_o.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

#horizontal_carousel .previous_button_disabled {
  background: url(../images/topMenu/left.gif);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 32px;
  height: 240px;
  background: url(../images/topMenu/right.gif);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(../images/topMenu/right_o.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

#horizontal_carousel .next_button_disabled {
  background: url(../images/topMenu/right.gif);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: default;
}


/* vertical Carousel */
.ui_vertical_carousel {
}

#vertical_carousel {
  float:left;
  width: 100%;
  height: 824px;
  margin-bottom: 0px;
  position: relative;
}

#vertical_carousel .container {
  float:left;  
  width: 100%;
  height: 824px;
  overflow: hidden;
}

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

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

#vertical_carousel .previous_button {
  float:left;
  height: 21px;
  width: 21px;
  background: url(../images/buttonTop.gif);
  background-repeat: no-repeat;
  cursor: pointer;    
  display:inline;
  margin: 0 0 0px 0px;
  position: absolute;
  right:35px;
  top:4px;
}

#vertical_carousel .previous_button_over {
  background: url(../images/buttonTop_o.gif);
  background-position: center center;
}

#vertical_carousel .previous_button_disabled {
  background: url(../images/buttonTop.gif);
  cursor: default;
  background-position: center center;
}

#vertical_carousel .next_button {
  float:left;
  height: 21px;
  width: 21px;
  background: url(../images/buttonBot.gif);
  background-repeat: no-repeat;
  background-position: center center;
  display:inline;
  cursor: pointer;
  position: absolute;
  right:10px;
  top:4px;
}

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

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

