/* 
	Resets defualt browser settings
	reset.css
*/

/*
	Slideshow
*/

#slides {
	position:relative;
	top: 0px;
	left: 0px;
	z-index:10;
}

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

.slides_container {
	width:658px;
	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 a {
	width:658px;
	height:250px;
	display:block;
}

.slides_container a img {
	display:block;
	width:658px;
	height:250px;
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:110px;
	left:5px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
	/*opacity:0.7;
	filter:alpha(opacity=70); /* For IE8 and earlier */
}
#slides a.next img,#slides a.prev img {
	filter: none;
}

#slides .next {
	left:630px;
}

/*
	Pagination
*/

.pagination {
	margin: 26px auto 0;
	width:42px;
	position: absolute;
	z-index: 500;
	right: 35px;
	top: 200px;
}

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

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

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

#slides .More {
	position: absolute;
	right: 15px;
	bottom: 12px;
	z-index: 500;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
#slides .More:hover {	
	opacity: 1;
	filter: alpha(opacity=100);
}
