


/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
#carousel {
	width: 490px;
	height: 252px;
	overflow: hidden;
	position: relative;
	border: 1px solid #d6d6d6;
}

.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: 492px;
	height: 254px;
}

/**
 * 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".
 */
 
 
#linkWrapper {
	width: 492px;
	height: 254px;
	position: absolute;
	top: 0;
	left: 0;
	}
	
	#linkWrapper a {
		width: 492px;
		height: 254px;	
		display: block;
		left: 0;
		top: 0;
		/* border: 1px solid #FF6699;*/
		}
 
.jcarousel-next {
	z-index: 3;
	display: none;
}

.jcarousel-prev {
	z-index: 3;
	display: none;
}


.carousel-slide .headtext {
	position: relative;
	width: 492px;
	height: 254px;
	overflow: hidden;
	background-position: 0;
	background-repeat: no-repeat;
	/* background-image is defined in html */ 
	/* padding-left: 280px; */
	/* padding-top: 30px; */
}

.carousel-slide .headtext h3 {
	color: #ce053b;
	font-size: 18px;
	font-family: sans-serif;
	text-transform: uppercase;
	padding: 20px;
	margin: 0;
	width: 240px;
	}

.carousel-slide .headtext p {
	color: #222222;
	width: 240px;
	margin: 0 0 10px 20px;
}

.carousel-slide .headtext a {
	color: #f68535;
}

#carousel-controls {
	z-index: 3;
	width: 150px;
	height: 40px;
	overflow: hidden;
	position: absolute;
	right: 0;
	bottom: 0;
}

.carousel-control a {
	position: relative;
	display: block;
	float: right;
	width: 21px;
	height: 17px;
	margin-right: 4px;
	margin-top: 13px;
	padding-top: 4px;
	padding-bottom: 0;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background-color: #080915;
}

.carousel-control a:hover {
	text-decoration: none;
	background-color: #cf073b;
}
	
.carousel-control a.selected {
 	background-color: #cf073b;
}




