

/*
	Slideshow style
*/

#slides {
	position:absolute;
	width: 875px;
	height: 250px;
	z-index:100;
	left: 63px;
	top: 55px;
	margin: 0 auto 0 auto;
	background: #000000;
	box-shadow: 0px 0px 30px #000000;
}

/*
	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: 865px;
	height: 240px;
	overflow:hidden;
	position:relative;
	display:none;
	margin: 5px;
}

/*
	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
*/

#slides .slide {
	padding:0px;
	width: 865px;
	height: 240px;
	display:block;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:30px;
	left:-66px;
	width:35px;
	height:45px;
	display:block;
	z-index:101;
        border: 1px solid #3d3d3d;
	border-right: none;
	padding: 10px 15px 10px 15px;
}

#slides .next {
        border: 1px solid #3d3d3d;
	border-left: none;	
	left:875px;
}

/*
	Pagination
*/

.pagination {
  margin:11px auto 0 auto;
  padding: 2px;
  width:200px;
  z-index: 100;
  height: 19px;
  text-align: center;
  border: 1px solid #3d3d3d;
  background: url('/gfx/bg_html.jpg');
  
}

.pagination li {
	margin:2px 1px;
	list-style:none;
	display: inline-block;
}

.pagination li a {
	display:block;
	width:15px;
	height:0;
	padding-top:15px;
	background-image:url(../gfx/page.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
	margin: 0 10px 0 10px;
}

.pagination li.current a {
	background-position:0 -15px;
}


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