/* Horizontal Carousel */
#horizontal_carousel {
	background-color:#FFF;
	float: left;
	width: 727px;
	height: 171px;
	margin-bottom: 10px;
	position: relative;
}

#horizontal_carousel .carousel_container{
	float: left;
	width: 657px;
	height: 171px;
	position: relative;    
	overflow: hidden;
}

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

#horizontal_carousel ul li {
	border-right:1px solid #ccc;
	border-style: dotted;
	width: 148px;
	height: 167px;
	text-align: center; 
	list-style:none;   
	float:left;
	padding:10px;
	color:#000;
}

#horizontal_carousel .previous_button {
	float:left;  
	width: 32px;
	height: 167px;
	background: url(/solutions/layout/images/horizontal_left_enabled_off.gif);
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .previous_button_over {
	background: url(/solutions/layout/images/horizontal_left_enabled_on.gif);
}

#horizontal_carousel .previous_button_disabled {
	background: url(/solutions/layout/images/horizontal_left_disabled.gif);
	cursor: default;
}

#horizontal_carousel .next_button {
	float:right;  
	width: 32px;
	height: 167px;
	background: url(/solutions/layout/images/horizontal_right_enabled_off.gif);
	z-index: 100;
	cursor: pointer;
}

#horizontal_carousel .next_button_over {
	background: url(/solutions/layout/images/horizontal_right_enabled_on.gif);
}

#horizontal_carousel .next_button_disabled {
	background: url(/solutions/layout/images/horizontal_right_disabled.gif);
	cursor: default;
}


/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
  background-color:#000;
  position: relative;
  float:left;
  width: 238px;
  height: 393px;
  margin-left: 0px;
  margin-bottom: 0px;

}

#vertical_carousel .carousel_container {
  position: relative;
  float:left;  
  width: 238px;
  height: 330px;
  overflow: hidden;
  color:#fff;  
}

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

#vertical_carousel ul li {
  border-bottom:1px solid #ccc;
  border-style: dotted;
  width: 238px;
  height: 40px;
  text-align: left;      
  list-style:none;   
  float:left;
  padding:15px 7px 10px 7px;
  overflow: hidden;
}                         

#vertical_carousel .previous_button {
  float:left;
  height: 32px;
  width: 238px;
  background: url(/solutions/layout/images/vertical_up_enabled_off.gif);
  cursor: pointer;    
  display:inline;  
}

#vertical_carousel .previous_button_over {
  background: url(/solutions/layout/images/vertical_up_enabled_on.gif);
}

#vertical_carousel .previous_button_disabled {
  background: url(/solutions/layout/images/vertical_up_disabled.gif);
  cursor: default;
}

#vertical_carousel .next_button {
  float:left;
  height: 32px;
  width: 238px;
  background: url(/solutions/layout/images/vertical_down_enabled_off.gif);
  display:inline;
  cursor: pointer;
}

#vertical_carousel .next_button_over {
  background: url(/solutions/layout/images/vertical_down_enabled_on.gif);
}

#vertical_carousel .next_button_disabled {
  background: url(/solutions/layout/images/vertical_down_disabled.gif);
  cursor: default;
}


