

/*
	Slideshow style
*/

#slides {
	position:relative;
	width: 960px;
	height: 302px;
	z-index:100;
	margin: 0 auto 0 auto;
    top: 16px;
}

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

/*
	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: 960px;
	height: 302px;
	display:block;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:140px;
	left:-80px;
	width:50px;
	height:50px;
	display:none;
	z-index:101;

}

#slides .next {
	left:830px;
	border-left: 1px solid rgba(255,255,255,0.3);
	background: url('/gfx/ico_arrow_02.png') no-repeat center center;
	-moz-transition: 0.2s ease-in; -webkit-transition: 0.2s ease-in; -o-transition: 0.2s ease-in; transition: 0.2s ease-in;
}

#slides .prev {
	border-right: 1px solid rgba(255,255,255,0.3);
	background: url('/gfx/ico_arrow_01.png') no-repeat center center;
	-moz-transition: 0.2s ease-in; -webkit-transition: 0.2s ease-in; -o-transition: 0.2s ease-in; transition: 0.2s ease-in;
}

#slides .prev:hover {
	background: url('/gfx/ico_arrow_01.png') no-repeat left center;
	-moz-transition: 0.2s ease-in; -webkit-transition: 0.2s ease-in; -o-transition: 0.2s ease-in; transition: 0.2s ease-in;
}

#slides .next:hover {
	background: url('/gfx/ico_arrow_02.png') no-repeat right center;
	-moz-transition: 0.2s ease-in; -webkit-transition: 0.2s ease-in; -o-transition: 0.2s ease-in; transition: 0.2s ease-in;
}

/*
	Pagination
*/

.pagination {
  margin: 0px;
  padding: 2px;
  width:300px;
  z-index: 100;
  height: 40px;
  text-align: left;
  position: absolute;
  top: 285px;
  left: 30px;
}

.pagination li {
	margin: 0px 20px 0 0;
	list-style:none;
	display: inline-block;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.pagination li a {
	display:block;
	width:13px;
	height:0;
	padding-top:13px;
	background: #915f2f;
	float:left;
	overflow:hidden;
	margin: 8px 7px 0 8px;
    border-radius: 6px;

}

.pagination li.current a {
	background: #4f2d0c;
}