#container {
	width: 640px;
	height: 260px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
  margin-left: 0px;
  margin-top: 0px;
}

/*
	Slideshow style
*/

#slides {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
}

/*
	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: 640px;
	height: 260px;
	overflow: hidden;
	position: relative;
	display: none;
}

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

#slides .slide {
	padding: 0px;
	width: 640px;
	height: 260px;
	display: block;
}

/*
	Next/prev buttons
*/
#slides .next {
	position: absolute;
  margin: 0;
  padding: 0;
	top: -40px;
	left: 605px;
	width: 25px;
	height: 28px;
	display: block;
	z-index: 101;
  background: url(default/unovinky_arrow_right.png) 0px top no-repeat;
}
#slides .prev {
	position: absolute;
  margin: 0;
  padding: 0;
	top: -40px;
	left: 574px;
	width: 25px;
	height: 28px;
	display: block;
	z-index: 101;
  background: url(default/unovinky_arrow_left.png) 0px top no-repeat;
}
#slides .prev:hover,
#slides .next:hover {
  background-position: 0px bottom;
}

/*
	Pagination
*/

.pagination {
	margin: 20px auto 0;
	width: 70px;
  background: none;
}
.pagination li {
	float: left;
	margin: 0 1px;
	list-style: none;
  background: none;
}
.pagination li a {
	display: block;
	width: 12px;
	height: 0;
	padding-top: 12px;
	background-image: url(default/pagination.png);
	background-position: 0 0;
	float: left;
	overflow: hidden;
}
.pagination li.current a {
	background-position: 0 -12px;
}
