/* horizontal ##############################*/
.horizontal {
	width: 100%;
	margin: 20px auto;
	height: 200px;
	display:block;
	}
	
.horizontal .carousel {
	width: 960px;
	height: 200px;
	margin: 0 auto;
	position: relative;
	}
	
.horizontal .carousel_container {
	width: 890px; /* 3x220 + 3x1px margin */
	height: 200px;
	margin: 0 auto;
	overflow: hidden;
	text-align:center;
	position: relative;
	}
	
.horizontal ul  { 
	height: 200px;
	width: 1980px; /* will be overwritten by javascript*/
}
	
.horizontal ul li {
	width: 140px;
	height: 100px;
	display: block;
	float: left;
	margin-right: 11px;
	margin-bottom: 1px;
	position: relative;
	background:url(../../img/bgli.png) no-repeat bottom;
	}
	
.horizontal ul li a {
	width: 140px;
	height: 86px;
	background: #CCC;
	display: block;
	color: #fff;
	}
	
.horizontal ul li .caption {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	}
	
	
.carousel_right, .carousel_left {
	position: absolute;
	width: 30px;
	height: 51px;
	display: block;
	text-indent: -9999px;
	}
	
.carousel_left { 
	top: 17px; left:0px;
	background: url(../images/prev.png) top left;
	}
.carousel_right { 
	top: 17px; right:0px;
	background: url(../images/next.png) top left;
	}
.carousel_right:hover, .carousel_left:hover {
	background-position: bottom left;
	}
	
.disable { display: none; }