/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
	position: relative;
	width: 320px;
	height: 63px; 
	padding: 0px 0px;
}

.jcarousel-clip {
	z-index: 2;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 310px;
	height: 63px; 
}

.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: 95px;
	height: 63px;
	margin-right: 11px;
	-moz-opacity: .60;
	filter: alpha(opacity=60); 
	opacity: .60;
}

/**
 * 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;
}

/**
 *  Horizontal Buttons
 */

.jcarousel-next-horizontal {	
	position: absolute;
	left: 285px;
	top: -24px;
	width: 22px;
	height: 20px;
	cursor: pointer;
	background: transparent url(/images/home/graphic_carousel_next.png) no-repeat 0 0;	
}

.jcarousel-next-horizontal:hover {
	background-position: -25px 0px;
}

.jcarousel-next-horizontal:active {
	background-position: -50px 0px;
}

.jcarousel-next-disabled-horizontal, .jcarousel-next-disabled-horizontal:hover, .jcarousel-next-disabled-horizontal:active {
	cursor: default;
	background-position: -75px 0px;
}

.jcarousel-prev-horizontal {	
	position: absolute;
	left: 241px;
	top: -24px;
	width: 22px;
	height: 20px;
	cursor: pointer;
	background: transparent url(/images/home/graphic_carousel_prev.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
	background-position: -25px 0px;
}

.jcarousel-prev-horizontal:active {
	background-position: -50px 0px;
}

.jcarousel-prev-disabled-horizontal, .jcarousel-prev-disabled-horizontal:hover, .jcarousel-prev-disabled-horizontal:active {
	cursor: default;
	background-position: -75px 0px;
}

/* Inner border for selected */
a.innerBorder, a.innerBorder img {
	float: left;
	overflow: hidden;
}
.jcarousel-list li.selected a {
	border: 4px solid #D6D6D6;
}
.jcarousel-list li.selected a img {
	margin: -4px;
}

/* Opacity settings */
.jcarousel-list li.hover, .jcarousel-list li.selected {
	-moz-opacity: 1;
	filter: alpha(opacity=100); 
	opacity: 1;
}