@charset "utf-8";
/* CSS Document */

/*
	Slideshow
*/

#slides, #thumb_slides {
	z-index:100;
	position:relative;
}

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

.slides_container {
	width:960px;
	overflow:hidden;
	position:relative;
	display:none;
}
.thumb_slides_container {
	width:422px;
	overflow:hidden;
	position:relative;
	display:none;
	height:190px;
}

.thumb_description {
	 position:absolute;
	 width:270px;
	 overflow:hidden;
	 height:28px;
	 top:155px;
	 left:96px;
	 color:#95adac;
	 z-index:9998;
	 text-align:center;
}
/*
	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:960px;
	height:350px;
	display:block;
}

.slides_container a img {
	display:block;
}

.thumb_slides_container a {
	width:422px;
	height:135px;
	display:block;
}

.button_div {
	margin:8px 0px;
	width:410px;
	background:#e8eded;
	height:24px;
	padding:6px;
	border-radius:24px;
	position:absolute;
	top:143px;
}

/*
	Next/prev buttons
*/
#thumb_slides .next_wrapper,#thumb_slides .prev_wrapper {
	width:40px;
	height:35px;
	display:block;
	z-index:100;
	position:absolute;
	top:152px;
	background:#e8eded;
	border-radius:24px;
}
#thumb_slides .next,#thumb_slides .prev {
	width:25px;
	height:24px;
	display:block;
	z-index:101;
	position:absolute;
	top:5px;
}
#thumb_slides .next_wrapper {
	right:16px;
}
#thumb_slides .prev_wrapper {
	left:-2px;
}
#thumb_slides .next {
	right:8px;
}
#thumb_slides .prev {
	left:8px;
}

/*
	Pagination
*/

.pagination {
	margin:15px auto 0;
	width:100px;
}

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

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

.pagination li.current a {
	background-position:0 -12px;
/*	background:#a7c3c4; */
}