 /* SLIDE SHOW STYLES */
 
/*
	Slideshow
*/

#slides {
	position: relative;
	top: 20px;
	left: 20px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width: 512px;
	overflow:hidden;
	position:relative;
	
	/*display:none;*/
	/*border: 2px solid #000;*/
}

/*
	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:512px;
	min-height:300px;
	/* height:270px;
	min-height:  380px; */
	display:block;
	/*background: #000;*/
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position: absolute;
	top: 90px;
	left: -27px;
	width: 20px;
	height: 30px;
	display:block;
	z-index:101;
}

#slides .next {
	left: 509px;
}

/*
	Pagination
*/

.pagination {

	margin: 12px auto;
	width: 550px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top: 12px;
	background-image:url(/images/pagination.png);
	background-position: 0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
background-position: 0 -12px;
}

/*
	Caption
*/

.caption {
	z-index: 500;
	position:  relative;
top: -45px;
left:0;
	height:  35px;
	padding: 5px 10px 0 10px !important;
	background:#000;
	background:rgba(0,0,0,.5);
	width: 506px;
	font-size:1.1em;
	line-height: 1.2;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
	
}
