/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
	position: relative;
}

.jcarousel-clip {
	z-index: 2;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.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: 229px;
	height: 229px;
}

/**
 * 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;
}






/**
 * Skinning the jCarousel
 */

 .jcarousel-skin .jcarousel-container {
}

.jcarousel-skin .jcarousel-container-horizontal {
	width: 922px; height: 304px; margin: 0 auto;
	background: transparent url('../images/jcarousel/bg-carousel.jpg') center top no-repeat;
}

.jcarousel-skin .jcarousel-clip-horizontal {
	width: 717px; height: 304px;
	margin: 0 0 0 103px;
}

.jcarousel-skin .jcarousel-item {
	margin: 45px 14px 0 0;
	width: 229px; height: 229px;
}

.jcarousel-skin .jcarousel-item a, .jcarousel-skin .jcarousel-item a:visited {
	display: block; float: left;
	width: 229px; height: 229px;
	background: transparent url('../images/jcarousel/bg-carousel-image.png') left top repeat-x;
}

.jcarousel-skin .jcarousel-item img {
	width: 191px; height: 191px;
	border: 0 none; padding: 19px;
}

.jcarousel-skin .jcarousel-item-horizontal {
}

.jcarousel-skin .jcarousel-item-placeholder {
    
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin .jcarousel-next-horizontal {
	position: absolute;
	top: 104px; right: -20px;
	width: 103px; height: 97px;
	cursor: pointer;
	background: transparent url('../images/jcarousel/bg-arrow-r.png') top left no-repeat !important;
}

.jcarousel-skin .jcarousel-next-horizontal:hover {
	background: transparent url('../images/jcarousel/bg-arrow-r.png') bottom left no-repeat !important;
}

.jcarousel-skin .jcarousel-next-horizontal:active {
}

.jcarousel-skin .jcarousel-next-disabled-horizontal,
.jcarousel-skin .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin .jcarousel-next-disabled-horizontal:active {
	cursor: default;
}

.jcarousel-skin .jcarousel-prev-horizontal {
	position: absolute;
	top: 104px; left: -20px;
	width: 103px; height: 97px;
	cursor: pointer;
	background: transparent url('../images/jcarousel/bg-arrow-l.png') top left no-repeat !important;
}

.jcarousel-skin .jcarousel-prev-horizontal:hover {
	background: transparent url('../images/jcarousel/bg-arrow-l.png') bottom left no-repeat !important;
}

.jcarousel-skin .jcarousel-prev-horizontal:active {
}

.jcarousel-skin .jcarousel-prev-disabled-horizontal,
.jcarousel-skin .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin .jcarousel-prev-disabled-horizontal:active {
	cursor: default;
}

