/*
	Slideshow
*/
/*
#slides {
	position:relative;
	top:0px;
	left:0px;
	z-index:100;
}*/

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
    width:467px;
    height:315px;
	border: 0px solid #000;
	overflow: visible;
  }

  
.slides_container div {
    width:467px;
    display:block;
	min-height:315px
	overflow: visible;
  }

/*
	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:467px;
	display:block;
	overflow: visible;
}

/*
.slides_container a {
	width:945px;
	height:395px;
	display:block;
}*/

/*
	Next/prev buttons
*/
/*
#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:585px;
}
*/
/*
	Pagination
*/

.sliderpagination {
	/*background:#000;
	background:rgba(0,0,0,.5);
	left: 95px;
	padding: 15px 0;
	width:945px;*/
	margin: -338px 14px 0 0px;
	float:right;
	position: relative;
	z-index: 999;
}

.sliderpagination li {
	list-style:none;
	float:left;
	margin-left:7px;
	margin-right: 0px;
	list-style:none;
}

.sliderpagination li a {
	display:block;
	width:14px;
	height:0;
	padding-top: 15px;
	background-image:url(../img/pagination.png);
	border: none !important;
	float:left;
	overflow:hidden;
}

.sliderpagination li.current a, .sliderpagination li a:hover {
	background-position:0 -15px;
}


/*
	Caption
*/

.caption {
	/*border-top:1px solid #000;*/
	font-family: 'Kameron', arial, serif;
	z-index:500;
	position:absolute;
	bottom:70px;
	left:620px;
	height: 60px;
	padding:10px 15px;
	background:#000;
	background:rgba(0,0,0,.5);
	font-size:16px;
	color:#fff;
	text-shadow:none;
}