/*
	Slideshow
*/

.slidescont{
	float: left;
	clear: left;
}

#slides{
	position: relative;
	z-index: 100;
}

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

.slides_container{
	width: 960px;
	overflow: hidden;
	position: relative;
	display: none;
}

/*
	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: 960px;
	height: 420px;
	display: block;
}

.slides_container div.slide img{
	width: 960px
}

/*
	Next/prev buttons
*/

#slides .next, #slides .prev{
	position: absolute;
	width: 26px;
	height: 26px;
	display: block;
	z-index: 101;
	background-repeat: no-repeat;
	background-image: url(/estilo/slider/img/slide-arrows.png);
	background-color: #A1B543;
	top: 30px;
	transition: all 0.3s ease-in-out 0s;
}

#slides .prev{
	background-position: 7px 6px;
	right: 52px;
}

#slides .next{
	background-position: -23px 6px;
	right: 20px;
}

#slides .prev:hover{
	background-position: 7px -19px;
	background-color: #FFF;
}

#slides .next:hover{
	background-position: -23px -19px;
	background-color: #FFF;
}

/*
	Pagination
*/

.pagination{
	margin: 10px 0 0;
	width: 100px;
	float: right;
}

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

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

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

.pagination li:not(.current) a:hover{
	background-position: 0 -26px;
}

/*
	Caption
*/

.caption{
	z-index: 500;
	position: absolute;
	bottom: 15%;
	right: 0;
	height: 30px;
	padding: 10px;
	background: #000;
	background: rgba(161,181,67,0.7);
	width: 300px;
	font-size: 24px;
	line-height: 1.33;
	color: #fff;
	text-shadow: none;
	font-style: italic;
	text-align: left;
	font-family: 'Cardo', serif;
}

.caption p{
	margin: 0;
}
