
/*
	Slideshow
*/

#slides {
	position: relative;
	width: 960px;
  height: 313px;
	z-index: 100;
  margin-bottom: 20px;
}

#slides_gallery {
	position: relative;
	width: 647px;
	z-index: 100;
  margin-bottom: 20px;
}

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

#slides .slides_container {
	width: 960px;
  height: 313px;
	overflow: hidden;
	position: relative;
	display: none;
}

#slides_gallery .slides_container {
	width: 647px;
  min-height: 105px;
	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 .slides_container div.slide {
	width: 960px;
  height: 313px;
  position: relative;
}

#slides_gallery .slides_container div.slide {
	width: 647px;
  min-height: 105px;
  position: relative;
}

/*
	Next/prev buttons
*/



/*
	Pagination  -  ukazatel aktuálního snímku
*/

#slides .pagination {
	position: absolute;
  right: 330px;
  top: 15px;
  z-index: 200;
}

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

#slides .pagination li a {
	display: block;
	width: 13px;
	height: 0;
  padding-top: 13px;
	background: transparent url(../media/img/background/slide/pagination3.png) center no-repeat;
	float: left;
	overflow: hidden;
}

#slides .pagination li.current a {
	background: transparent url(../media/img/background/slide/pagination2.png) center no-repeat;
}

#slides_gallery .pagination {
	position: absolute;
  right: 0px;
  top: -35px;
  z-index: 200;
}

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

#slides_gallery .pagination li a {
	display: block;
	width: 7px;
	height: 0;
  padding-top: 7px;
	background: transparent url(../media/img/background/slide/pagination_small2.png) center no-repeat;
	float: left;
	overflow: hidden;
}

#slides_gallery .pagination li.current a {
	background: transparent url(../media/img/background/slide/pagination_small1.png) center no-repeat;
}


