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

#slider{
	width:990px;
	margin-bottom: 10px;
	float: left;
	clear:both;
}
/*	Slideshow   */

#slides {
	/* position:absolute;
	top:15px;
	left:4px; */
	z-index:100;
	border-bottom: #917C6C solid 8px;	
}

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

.slides_container {
	width:990px;
	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 div.slide {
	width:990px;
	height:395px;
	display:block;
}

/*	Pagination  */

.pagination {
	margin: 0;
	width:175px; /* adjust width depending on how many slides there are - add or subtract 20px per square*/
	position: relative;
	float: right;
	z-index:101;
	bottom: 28px;
}

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

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

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

.caption {
	z-index:102;
	position: absolute;
	height:40px;
	margin-left:38px;
	width:600px;
	font-size:2em;
	line-height:120%;
	color:#917C6C;
	text-align:left;
}
.caption a{
	color:#917C6C;
	text-decoration:none;}
.caption a:hover{
	color:#666;
	text-decoration: none;}