/**
 * 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: 300px;    
	height: 200px;
}

/**
 * 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;
}

/* required for IE6 */
.jcarousel-clip-horizontal {
	width: 300px;  
}


/**
 * Skin for jcarousel-skin-home
 */

.jcarousel-skin-home .jcarousel-prev-horizontal {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 10px;
	cursor: pointer;
	background: transparent url("../img/home/home_carousel_controls.gif") no-repeat 0 0;
}
.jcarousel-skin-home .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-home .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-home .jcarousel-prev-disabled-horizontal:active {
	cursor: default;
	background-position: 0 -40px;
}

.jcarousel-skin-home .jcarousel-next-horizontal {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 10px;
	cursor: pointer;
	background: transparent url("../img/home/home_carousel_controls.gif") no-repeat 0 -20px;
}
.jcarousel-skin-home .jcarousel-next-disabled-horizontal,
.jcarousel-skin-home .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-home .jcarousel-next-disabled-horizontal:active {
	cursor: default;
	background-position: 0 -60px;
}


/**
 * Skin for jcarousel-skin-support
 */

.jcarousel-skin-support .jcarousel-container {
	background: #e5e5e5 url("../img/sprites_bg.png") repeat-x 0 -1000px;
	border: 1px solid #c9c9c9;
}

.jcarousel-skin-support .jcarousel-container-horizontal {
	width: 560px;
	padding: 20px 41px;
}

.jcarousel-skin-support .jcarousel-clip-horizontal {
	width:	560px;
	height: 140px;
}

.jcarousel-skin-support .jcarousel-item {
	width: 250px; 
	height: 140px;
}

.jcarousel-skin-support .jcarousel-item-horizontal {
	margin-right: 15px;
}

.jcarousel-skin-support .jcarousel-item-placeholder {
	background: #fff;
	color: #000;
}

/**
 *	Horizontal Buttons
 */
.jcarousel-skin-support .jcarousel-next-horizontal {
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 180px;
	cursor: pointer;
	border-left: 1px solid #c9c9c9;
	background: #e5e5e5 url("../img/sprites_carousel.png") repeat-x -24px 0;
}

.jcarousel-skin-support .jcarousel-next-horizontal:hover {
	background-position: -24px 0;
}

.jcarousel-skin-support .jcarousel-next-horizontal:active {
	background-position: -24px 0;
}

.jcarousel-skin-support .jcarousel-next-disabled-horizontal,
.jcarousel-skin-support .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-support .jcarousel-next-disabled-horizontal:active {
	cursor: default;
	background-position: -24px -180px;
}

.jcarousel-skin-support .jcarousel-prev-horizontal {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 180px;
	cursor: pointer;
	border-right: 1px solid #c9c9c9;
	background: #e5e5e5 url("../img/sprites_carousel.png") repeat-x 0 0;
}

.jcarousel-skin-support .jcarousel-prev-horizontal:hover {
	background-position: 0 0;
}

.jcarousel-skin-support .jcarousel-prev-horizontal:active {
	background-position: 0 0;
}

.jcarousel-skin-support .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-support .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-support .jcarousel-prev-disabled-horizontal:active {
	cursor: default;
	background-position: 0 -180px;
}
