/* horizontal ##############################*/
.horizontal {
	/**/
	width: 100%;
	margin: 0 auto;
	height: 340px;
	}
	
.horizontal .carousel {
	width: 1060px;
	height: 140px;
	margin: 0 auto;
	position: relative;
	}
	
.horizontal .carousel_container {
	width: 1060px; /* 3x220 + 3x1px margin */
	height: 540px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0px;
	position: relative;
	}
	
.carouselbg{
	width:100%;
	height:280px;
	background: #1a1a1a;
	position:absolute;
	top:0px;
}
	
.horizontal ul  { 
	height: 540px;
	width: 1980px; /* will be overwritten by javascript*/
}
	
.horizontal ul li {
	width: 346px;
	height: 540px;
	display: block;
	float: left;
	margin-right: 20px;
	margin-bottom: 1px;
	position: relative
	}

.horizontal ul li a img{	width: 327px;	 }
.horizontal ul li a {
	width: 327px;
	height: 240px;
	/*background: #222;*/
	display: block;
	color: #fff;
	-webkit-transition:.5s; -moz-transition:.5s; transition:.5s;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.1); 
	}
.horizontal ul li a:hover {	box-shadow: 5px 5px 20px rgba(0,0,0,0.2);   -webkit-transition:.5s; -moz-transition:.5s; transition:.5s; }
	
	
.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;
	}
	
.carousel_left { 
	top: 145px; left:-80px;
	background: url(../images/carousel/prev.png) top left;
	}
.carousel_right { 
	top: 145px; right:-50px;
	background: url(../images/carousel/next.png) top left;
	}
.carousel_right:hover, .carousel_left:hover {
	background-position: bottom left;
	}
	
.disable { display: none; }