@charset "utf-8";
/* CSS Document */

#slides {
	/*position:absolute;
	top:15px;
	left:4px;*/
	z-index:100;
	position:relative;
}


/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:480px;
	height:360px;
	overflow:hidden;
	position:relative;
	float: left;	/*display:none;*/
}

.eyecatcher .slides_container {
	width:800px;
	height:227px;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width:480px;
	height:360px;
	display:block;
}

.eyecatcher div.slide {
	width:800px;
	height:227px;
}


/*
	Next/prev buttons
*/

.caption a {
	float:right;
	border:none;
	padding: 0 4px 0 4px;
	color:#fff;
	font-weight:bold;
	margin:0 auto 0 0;
}
.caption a:hover {
	color:#fff;
	background:none;
	text-decoration:none;
}


#slides .next,#slides .prev {
	position:absolute;
	top:147px;
	left:0px;
	width:30px;
	z-index:101;
	background:#000;
	background:rgba(0,0,0,.5);
	color: #FFF;
	border: none;
	padding: 2px 2px;
	margin: none;
	display: none;
	font-size: 14px;
}

#slides .next {
	left:446px;
	text-align:right;
}

#slides:hover .next,#slides:hover .prev {
	display:block;
}


/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:25px;
	padding:5px 5px 0 5px;
	background:#000;
	background:rgba(0,0,0,.5);
	width:480px;
	font-size: 14px;
/*	line-height:1.33;<br />
*/
	color:#fff;
	/*border-top:1px solid #000;*/
	text-shadow:none;
}