/* Browse box */
#browse {
	position:relative;
	overflow:hidden;
	margin: 0px auto;
	width: 690px;
	padding: 4px;
	padding-right:35px;
	padding-left:35px;
	z-index: 0;
	-webkit-transition:width 130ms ease-in;
	-moz-transition:width 130ms ease-in;
	transition: width 130ms;
}

#browse h1 {
	color:black;
	margin:2px;
	margin-top:5px;
	margin-bottom:10px;
}

#browse ul {
	width: 690px;
	overflow:hidden;
	height:150px;
}

a.show {
	position:relative;
	display:block;
	width: 130px;
	height: 70px;
	overflow:hidden;
	line-height:80px;
	background: url(../images/shows/noimg.jpg) center center;
	border: 1px solid #666;
	margin:3px;
}


/* horizontal carousel ##############################*/
.carousel_container {
	overflow: hidden;
	position: relative;
}
.carousel_next, .carousel_prev {
	position: absolute;
	width: 35px;
	height:35px;
	display: block;
	top:65px;
	background-repeat:no-repeat;
	background-position: center center;
	z-index:999;
}
.carousel_next:hover, .carousel_prev:hover { 
	opacity:.8;
}
.carousel_prev { 
	left:0px;
	background-image: url(../images/prev.png);
}
.carousel_next { 
	right:0px;
	background-image: url(../images/next.png);
}
.disable { 
	display:none;
}