/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
	position: relative;
	width: 82px;
	height: 262px; 
	padding: 24px 0px;
}

.jcarousel-clip {
	z-index: 2;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 82px;
	height: 264px; 	
}

.jcarousel-list {
	z-index: 1;
	overflow: hidden;
	position: relative;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

.jcarousel-list li, .jcarousel-item {
	float: left;
	list-style: none;
	 /* We set the width/height explicitly. No width/height causes infinite loops. */
	width: 59px;
	height: 44px;
	margin-bottom: 11px;

}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
	z-index: 3;
	display: none;
}

.jcarousel-prev {
	z-index: 3;
	display: none;
}

/**
 *  Vertical Buttons
 */

.jcarousel-next-vertical {
	position: absolute;
	bottom: 0px;
	left: 30px;
	width: 14px;
	height: 16px;
	cursor: pointer;
	background: transparent url(/images/home/graphic_carousel_next.gif) no-repeat 0 0;
}

.jcarousel-next-vertical:hover {
	background-position: -14px 0px;
}

.jcarousel-next-vertical:active {
	background-position: -28px 0px;
}

.jcarousel-next-disabled-vertical, .jcarousel-next-disabled-vertical:hover, .jcarousel-next-disabled-vertical:active {
	cursor: default;
	background-position: -42px 0px;
}

.jcarousel-prev-vertical {
	position: absolute;
	top: 0px;
	left: 30px;
	width: 14px;
	height: 16px;
	cursor: pointer;
	background: transparent url(/images/home/graphic_carousel_prev.gif) no-repeat 0 0;
}

.jcarousel-prev-vertical:hover {
	background-position: -14px 0px;
}

.jcarousel-prev-vertical:active {
	background-position: -28px 0px;
}

.jcarousel-prev-disabled-vertical, .jcarousel-prev-disabled-vertical:hover, .jcarousel-prev-disabled-vertical:active {
	cursor: default;
	background-position: -42px 0px;
}

