/********************
 * FEATURE CAROUSEL *
 ********************/
.carousel-container {
	position:relative;
	width:840px;
	margin:0 auto;
}
#carousel {
	height:254px;
	width:820px;
	position:relative;
	left:7px;
}
.carousel-image {
	border:0;
	display:block;
	position:relative;
}
.carousel-text {
	padding:20px 20px;
}
.carousel-text img {
	float:left;
	margin-right:10px;
}
.carousel-text h1{
	color:#9FC600;
	font:bold 22px/25px Arial, Helvetica, sans-serif;
	padding-bottom:7px;
}
.carousel-text span{
	width:200px;
	float:left;
}
.carousel-feature {
	position:absolute;
	top:-1000px;
	left:-1000px;
	cursor:pointer;
}
#carousel-left {
	display:block;
	position:absolute;
	top:60px;
	left:-60px;
	width:70px;
	height:120px;
	background:url(../images/prev.png) 0 0 no-repeat;
}
#carousel-left:hover {background-position:0 bottom;}
#carousel-right {
	display:block;
	position:absolute;
	top:60px;
	right:-60px;
	width:70px;
	height:120px;
	background:url(../images/next.png) 0 0 no-repeat;
}
#carousel-right:hover {background-position:0 bottom;}

