/* horizontal ##############################*/
.horizontal {
	
	width: 980px;
	margin: 0 auto;
	height: 150px;
	}
	
.horizontal .carousel {
	width: 980px;
	height: 150px;
	margin: 0 auto;
	position: relative;
	}
	
.horizontal .carousel_container {
	width: 983px; /* 3x220 + 3x1px margin */
	height: 150px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 50px;

	position: relative;
	}
	
.horizontal ul  { 
	height: 150px;
	width: 980px; /* will be overwritten by javascript*/
}
	
.horizontal ul li {
	width: 333px;
	height: 150px;
	display: block;
	float: left;
	margin-right: 1px;
	margin-bottom: 1px;
	position: relative
	}
	
.horizontal ul li a {
	width: 333px;
	height: 150px;
	padding-top:25px;
	display: block;
	
	}
	
.horizontal ul li .caption {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	}
	
	
.carousel_right, .carousel_left {
	position: absolute;
	width: 26px;
	height: 51px;
	display: block;
	text-indent: -9999px;
	z-index:9999px;
	}
	
.carousel_left { 

	top: 45px; left:0px;
	background: url(../images/prev.png) top left;
	}
.carousel_right { 
	top: 45px; right:0px;
	background: url(../images/next.png) top left;
	}
.carousel_right:hover, .carousel_left:hover {
	background-position: bottom left;
	}
	
.disable { display: none; }