/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 210px;
  height: 145px;
  position: absolute;
  top:70px;
  left:45px;
}

#horizontal_carousel .container {
  float: left;
  width: 145px;
  height: 145px;
  position: relative;    
  overflow: hidden;
  background:none;
}

#horizontal_carousel ul {
  margin: 0;
  padding:0;
  width: 100000px;
  position: relative;
  top: 0;
  left: 0;
  height: 145px;
}                      

#horizontal_carousel ul li {
  width: 145px;
  height: 145px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 16px;
  height: 26px;
  background: url(prototype-ui/horizontal/left.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin:50px 15px 0 0;
}

#horizontal_carousel .previous_button_over {
  background: url(prototype-ui/horizontal/left.png);
}

#horizontal_carousel .previous_button_disabled {
  background: url(prototype-ui/horizontal/left.png);
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;  
  width: 16px;
  height: 26px;
  background: url(prototype-ui/horizontal/right.png) no-repeat;
  z-index: 100;
  cursor: pointer;
  margin:50px 0 0 15px;
}

#horizontal_carousel .next_button_over {
  background: url(prototype-ui/horizontal/right.png);
}

#horizontal_carousel .next_button_disabled {
  background: url(prototype-ui/horizontal/right.png);
  cursor: default;
}


/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  /*float:left;*/
  margin-bottom: 0;
  position: relative;
  top:10px;
  left:70px;
}

#vertical_carousel .container {
  /*float:left;*/
  width: 228px;
  height: 307px;
  overflow: hidden;
  position: relative;
  top:0;
}

#vertical_carousel ul {
  margin:23px 0 0 0;/**/
  padding:0;
  height: 100000px;
  position: relative;
  top: 1px;
  left: 0;
}

#vertical_carousel ul li {
  display: block;
  /*width: 125px;*/
  width: 111px;
  /*height: 100px;*/
  height: 98px;
  position: relative;
  left:-46px;
  /*text-align: center;*/      
  list-style:none;
  /*margin: 4px 0 4px 0;*/
  padding:2px 0 2px 0;
}

.end{
	margin-top:-2px;
	padding:0;
	/*background:#fff;*/
}

#vertical_carousel ul li img {                        
 border: 3px solid #F9D2F0;
 margin: 0;
 padding:0;
}

#vertical_carousel .previous_button {
  /*float:left;*/
  height: 24px;
  width: 35px;
  background: url(prototype-ui/vertical/triangle-haut.png);
  background-repeat:no-repeat;
  cursor: pointer;    
  display:block;
  margin-left: 42px;
  /*position: relative;
  top:0;
  left:45px;*/
  behavior: url(js/iepngfix.htc);
}

#vertical_carousel .previous_button_over {
  background: url(prototype-ui/vertical/triangle-haut-over.png);
  behavior: url(js/iepngfix.htc);
}

#vertical_carousel .previous_button_disabled {
  background: url(prototype-ui/vertical/triangle-haut-d.png);
  cursor: default;
  behavior: url(js/iepngfix.htc);
}

#vertical_carousel .next_button {
  /*float:left;*/
  height: 24px;
  width: 35px;
  background: url(prototype-ui/vertical/triangle-bas.png);
  background-repeat:no-repeat;
  display:block;
 margin-left: 42px; /**/
  cursor: pointer;
  behavior: url(js/iepngfix.htc);
}

#vertical_carousel .next_button_over {
  background: url(prototype-ui/vertical/triangle-bas-over.png);
  behavior: url(js/iepngfix.htc);
}

#vertical_carousel .next_button_disabled {
  background: url(prototype-ui/vertical/triangle-bas-d.png);
  cursor: default;
  behavior: url(js/iepngfix.htc);
}


