/* horizontal ##############################*/
.horizontal {
	background:transparent;
		width: 620px;
	margin: 0 auto;
	height: 220px;
	}
	
.horizontal .carousel {
	width: 620px;
	height: 220px;
	margin: 0 auto;
	position: relative;
	}
	
.horizontal .carousel_container {
	width: 620px; /* 3x220 + 3x1px margin */
	height: 220px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0px;
	position: relative;
	}
	
.horizontal ul  { 
	height: 220px;
	width: 1980px; /* will be overwritten by javascript*/
}
	
.horizontal ul li {
	width: 160px;
	height: 190px;
	display: block;
	float: left;
	position: relative;
	border:1px solid #f1f1f1;
	margin-right:10px;
	margin-left:10px;
	}
	
.horizontal ul li a {
	width: 160px;
	height: 190px;
	background:transparent;
	display: block;
	color: #fff;
	}
	
	.horizontal ul li a:hover {
	opacity:0.8;
	}
	
	
	
.horizontal ul li .caption {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	font-size:11px; font-weight:bold; text-transform:uppercase;
	color:#fff;
	background-color:#4d4d4d;
	width:100%;
	text-align:center;
	}
	
	
.carousel_right, .carousel_left {
	position: absolute;
	width: 14px;
	height: 28px;
	display: block;
	text-indent: -9999px;
	}
	
.carousel_left { 
	top: 85px; left:-10px;
	background: url(../images/left.png) top left;
	}
.carousel_right { 
	top: 85px; right:-10px;
	background: url(../images/right.png) no-repeat top left;
	}
	
	.carousel_right:hover, .carousel_left:hover {
	//background-position: bottom left;
	}
	
.disable { display: none; }