/*
	Slideshow style
*/

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	width:570px;
	height:270px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

/*
	Next/prev buttons
*/
.wid-slider .next,
.wid-slider .prev {
	position:absolute;
	top: 175px;
	width: 30px;
	height: 30px;
	display: block;
	z-index: 101;
	padding: 0;
	margin: 0;
}


.wid-slider .prev{
	left: 10px;
	background: transparent url(../img/arrows.png) no-repeat 0 0;	
}

.wid-slider .next {
	right: 10px;
	background: transparent url(../img/arrows.png) no-repeat -30px 0;	
}

.content-detailed .wid-slider a.prev,
.content-detailed .wid-slider a.next{
	background-color: transparent;	
}

/*
	Pagination
*/

.pagination {
	margin: 5px auto 0;
	width: 100px;
}

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

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

.wid-slider .pagination li.current a {
	background-position:0 -12px;
	background-color: transparent;
}

.wid-slider .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}