/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.jcarousel-container
{
	position: relative;
	width: 610px;
	overflow: hidden;
	padding: 0px 20px 0 30px;
	background-image: url('../images/backgrounds/productselector.background.gif');
	background-repeat: no-repeat;
	background-position: 15px top;
	height: 220px;
}

.jcarousel-clip
{
	z-index: 2;
	padding: 0;
	margin: 0;
	height: 220px;
	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;
	position: relative;
	list-style: none;
	/* We set the width/height explicitly. No width/height causes infinite loops. */
	width: 155px;
	z-index: 3;
}

.jcarousel-list li a,
.jcarousel-item a {
	text-decoration: none;
	cursor: pointer;
	cursor: hand;
	}
.jcarousel-list li a span,
.jcarousel-item a span { display: block; }

/* picture */
.jcarousel-list li a span.media img {  }

/* title */
.jcarousel-list li a span.title,
.jcarousel-item a span.title { color: #000; font-size: 93%; text-align: center; }
.jcarousel-item a:hover span.title {
	font-weight: bold;
	cursor: pointer;
	cursor: hand;
	}

/* Tooltip */
.jcarousel-list li a span.tooltip
{
	display: none;
	left: 0px;
	position: absolute;
	padding: 15px 0 0 0;
	width: 100px;
	font-size: 85%;
	font-weight: normal;
	text-align: left;
	color: #4c4c4c;
	cursor: pointer;
	cursor: hand;
}

.jcarousel-list li a span.tooltip strong
{
	font-weight: bold; font-size: 108%; color: #000;
}

.jcarousel-list li a span.media
{
	position: relative;
	top: -5px;
}

/* Read more button in tooltip */
.jcarousel-list li a span.tooltip span.readmore,
.jcarousel-item a span.tooltip span.readmore
{
	background-image: url('../images/backgrounds/readmore.background.gif');
	background-repeat: no-repeat;
	color: #fff;
	display: block;
	height: 18px;
	margin: 3px 0 0;
	padding: 2px 7px;
	font-size: 10px;
	cursor: pointer;
	cursor: hand;
}

/**
 * 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,
.jcarousel-prev
{
	z-index: 3;
	display: none;
	width: 20px;
	height: 20px;
	position: absolute;
	font-size: 30px;
	cursor: pointer;
	cursor: hand;
}

.jcarousel-next
{
	left: 650px;
}

.jcarousel-prev { left: 10px; }

