/* Horizontal Carousel */
#horizontal_carousel {
	width: 541px;
	height: 132px;
	margin-bottom: 5px;
	position: relative;
	background:#e9e9e9;
	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

#horizontal_carousel .container {
	position: absolute;
	top: 5px;
	left: 27px;
	width: 487px;
	height: 121px;
	overflow:hidden;
	background:#e9e9e9;
}

#horizontal_carousel .previous_button {
	position: absolute;
	top: 5px;
	left: 0px;
	width: 27px;
	height: 121px;
	background: url(../design/carousel/horizontal/left.png);
	z-index: 100;
	cursor:pointer;
}

#horizontal_carousel .previous_button_disabled {
	background: url(../design/carousel/horizontal/left-disabled.png);
	cursor:default;
}

#horizontal_carousel .next_button {
	position: absolute;
	top: 5px;
	right: 0px;
	width: 27px;
	height: 121px;
	background: url(../design/carousel/horizontal/right.png);
	z-index: 100;
	cursor:pointer;
}

#horizontal_carousel .next_button_disabled {
	background: url(../design/carousel/horizontal/right-disabled.png);
	cursor:default;
}

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

#horizontal_carousel ul li img {
	display:block;
	position:absolute;
	top:24px;
	left:24px;
}

#horizontal_carousel ul li {
	font-family:verdana,arial,sans-serif;
	font-size:10px;
}

#horizontal_carousel ul li {
	position:relative;
	background:url(../design/vignette.png) no-repeat 4px 4px #e9e9e9;
	color:#ffffff;
	margin:0;
	padding:0;
	width:121px;
	height:121px;
	list-style:none;
	float:left;
}



/* vertical Carousel */

.ui_vertical_carousel {
}

#vertical_carousel {
	width: 180px;
	height: 545px;
	margin-bottom: 10px;
	position: relative;
	background:#e9e9e9;
	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

#vertical_carousel .container {
	position: absolute;
	left: 5px;
	top: 27px;
	width: 170px;
	height: 490px;
	overflow: hidden;
	background:#e9e9e9;
}

#vertical_carousel ul {
  margin: 0;
  padding:0;
  height: 100000px;
  position: relative;
  top: 0;
  left: 0;
  width:170px;
}
#vertical_carousel ul li img {
	display:block;
	position:absolute;
	top:24px;
	left:24px;
}
#vertical_carousel ul li {
	position:relative;
	background:url(../design/vignette.png) no-repeat 4px 4px #e9e9e9;
	color:#ffffff;
	margin:0 0 0 30px;
	padding:0;
	width:121px;
	height:121px;
	list-style:none;
	float:left;
}                         

#vertical_carousel .previous_button {
	position:absolute;
	top:0;
	left:-3px;
	height: 32px;
	width: 115px;
	background: url(../design/carousel/vertical/left.png);
	cursor: pointer;    
	display:inline;
	margin: 0 0 10px 40px;
}

#vertical_carousel .previous_button_disabled {
  background: url(../design/carousel/vertical/left_disabled.png);
  cursor: default;
}

#vertical_carousel .next_button {
	position:absolute;
	bottom:0px;
	left:35px;
	height: 32px;
	width: 115px;
	background: url(../design/carousel/vertical/right.png);
	display:inline;
	cursor: pointer;
}

#vertical_carousel .next_button_disabled {
  background: url(../design/carousel/vertical/right_disabled.png);
  cursor: default;
}