/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
#carousel {
	position:relative;
	text-align:center;
	clear:both;
	float:none;
	padding-top:25px;
	padding-bottom:50px;
}

/* Carousel styles */


#carousel ul {
	
	list-style: none; z-index: 90;
	
}
#carousel ul li {
	width: 970px;
	height: 350px;
	padding: 0 5px;
}
#carousel .jcarousel-scope {
    position: relative;
	padding: 0 20px;
    width: 963px;
}
#carousel .jcarousel-next {
    position: absolute;
    top: 0px;
    right: 0;
	width: 40px;
	height: 300px;
    cursor: pointer;
    border: none;
	text-indent: -2000px;
    background: url(Images/arrowRightOff.gif) no-repeat center;
}
#carousel .jcarousel-next:hover {
    background-image: url(Images/arrowRightOver.gif);
}

#carousel .jcarousel-next-disabled, #carousel .jcarousel-next-disabled:hover {
    background-image: url(Images/arrowDisabled.gif);
    cursor: default;
}

#carousel .jcarousel-prev {
    position: absolute;
    top: 0px;
    left: 0;
	width: 40px;
	height: 300px;
    cursor: pointer;
    border:none;
	text-indent: -2000px;
    background: url(Images/arrowLeftOff.gif) center no-repeat;
}
#carousel .jcarousel-prev:hover {
	background-image: url(Images/arrowLeftOver.gif);
}

#carousel .jcarousel-prev-disabled, #carousel .jcarousel-prev-disabled:hover {
    background-image: url(Images/arrowDisabled.gif);
    cursor: default;
}


