
/*
	Slideshow
*/

#slides {
	background:url(../images/border.gif) bottom no-repeat #000;
	margin-bottom:10px;
	width:940px;
	height:519px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:940px;
	height:377px;
	overflow:hidden;
	position:relative;
	display:none;
}
.slides_container img {
    width:940px;
    display:block;
}

.slides_container .slide-content{background:#fff;}


/*
	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:940px;
	height:377px;
	display:block;
}


/*
	Pagination
*/


.pagination {
	width:940px;
	display:block;
	border-bottom:#fff 10px solid;
	overflow:auto;
	margin:0;
	padding:0;
}

.pagination li {
	float:left;
	list-style:none;
}

.pagination li a span{display:none;}

.pagination li a {
	display:block;
	width:215px;
	height:101px;
	background-image:url(../images/but-slides.gif);
	background-position:0 0;
	float:left;
	overflow:hidden;
	border:none;
	color:#fff;
	padding:10px;
}

.pagination li a:hover {
	/* background-position:0 -121px; */
	margin:0;
}

.pagination li.current a {
	background-position:0 -121px;
	border:none;
}

.pagination li a .title{font-size:18px;text-transform:uppercase;margin-bottom:-5px;}
