/* Horizontal Carousel */
#horizontal_carousel {
  float: left;
  width: 610px;
  height: 240px;
  margin-bottom: 10px;
  position: relative;
}

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

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

#horizontal_carousel ul li {
  width: 250px;
  height: 240px;
  text-align: center; 
  list-style:none;   
  float:left;
}

#horizontal_carousel .previous_button {
  float:left;  
  width: 32px;
  height: 175px;
  background: url(prototype-ui/horizontal/left.png);
  z-index: 100;
  cursor: pointer;
}

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

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

#horizontal_carousel .next_button {
  float:left;  
  width: 32px;
  height: 175px;
  background: url(prototype-ui/horizontal/right.png);
  z-index: 100;
  cursor: pointer;
}

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

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


/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
	float:left;
	width: 110px;
	height: 425px;
	position: relative;
}

#vertical_carousel .container {
	float:left;  
	width: 103px;
/*	height: 390px;*/
	height: 400px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#vertical_carousel ul {
	margin:0;
	padding:0;
	list-style: none;
	height: 100000px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}

#vertical_carousel ul li {
	float:left;
	width: 103px;
	height: 70px;
	clear: both;
	text-align: center;      
	z-index: 1;
	position: relative;
}                         

#vertical_carousel ul li img {
    z-index: 1;
    position: relative;
}  

#vertical_carousel .previous_button {
	float:left;
	clear: both;
	position: relative;
	height: 23px;
	width: 103px;
	background: url(fces/vertical/up.gif) no-repeat center center;
	cursor: pointer;  
	z-index: 1000;  
}

#vertical_carousel .previous_button_over {
    background: url(fces/vertical/up_over.gif) no-repeat center center;
}

#vertical_carousel .previous_button_disabled {
	background: url(fces/vertical/up_disabled.gif) no-repeat center center;
	cursor: default;
}

#vertical_carousel .next_button {
	float:left;
	position: relative;
	clear: both;
	height: 23px;
	width: 103px;
	background: url(fces/vertical/down.gif) no-repeat center center;
	cursor: pointer;
	z-index: 1000;  
}

#vertical_carousel .next_button_over {
    background: url(fces/vertical/down_over.gif) no-repeat center center;
}

#vertical_carousel .next_button_disabled {
	background: url(fces/vertical/down_disabled.gif) no-repeat center center;
	cursor: default;
}


