/*
	Slideshow
	для анонсов фоторепортажей
*/

#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: 250px;
	overflow: hidden;
	position: relative;
	display: none;
	border: 1px solid #999;
}

/*
	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: 250px;
	height: 250px;
	display: block;
	margin-bottom: 1em;
}


/*
	Pagination
*/

.pagination {
	margin: 5px auto 5px auto;
	width: 150px;
}

.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(/js/i/pagination.png);
	background-position: 0 0;
	float: left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index: 500;
	position: absolute;
	bottom: -45px;
	left: 0;
	height: 65px;
	padding: 5px;
	background: #000;
	background: rgba(0,0,0,.5);
	width: 240px;
	color:#fff;
}


/*
     */
/*
*/