/*
	Slideshow
*/

 {
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#site-slide .slides_container {
	width:100%;
	height:100%
	min-height:512px;
	overflow:hidden;
	position:relative;
	display:none;
	text-align: center;
}
#top-slide .slides_container {
	width:1000px;
	height:340px;
	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 img  {
	display:block;
}

/*
	Next/prev buttons
*/

#top-slide .next,#top-slide .prev {
	position:absolute;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
	margin-top: -140px;
}

#top-slide .next {
	margin-left:585px;
}

/*
	Pagination
*/

#top-slide .pagination {
	width:100px;
	position: absolute;
	z-index: 101;
	margin-top: -30px;
	margin-left: 500px;
}

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

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

#top-slide .pagination li.current a {
	background-position:0 -12px;
}
