/* Slider jQuery/CSS Control - Large size, with border frame. Uses images sized at 993px x 369px */
#slidecontainer {
	width:1024px;
	margin:0 auto;
	position:relative;
	float:left;
	z-index:0;
}

#example {
	width:1024px;
	height:400px;
	position:relative;
}

#ribbon {
	position:absolute;
	top:-3px;
	left:12px;
	z-index:500;
}

#frame {
	position:absolute;
	z-index:0;
	width:1024px;
	height:420px;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	height:400px;
	top:0px;
	left:15px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:994px;
	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:994px;
	height:400px;
	display:block;
}


/*
	Next/prev buttons
	Use next_split and prev_split classes for split-centered positioning.
*/

#slides .next,#slides .prev {
	position:absolute;
	bottom:16px;
	left:897px;
	width:40px;
	height:40px;
	display:block;
	z-index:101;
}

#slides .next {
	left:938px;
}

#slides .prev_split {
	top:180px;
	left:16px;
}

#slides .next_split {
	top:180px;
}


/*
	Pagination
*/

.pagination {
	position: relative;
	z-index:101;
	padding:0px 0 0 476px;
	height:12px;
	margin:-25px 0 0 0;
	/*width:100%;*/
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style: none;
	height:12px;
	overflow:hidden;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(/includes/slides/img/pagination3.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
	list-style: none;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:0px;
	left:0;
	height:45px;
	padding:10px 20px 10px 20px;
	background:#000;
	width:843px;
	font-size:11px;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
}

.caption p {
	padding: 0;
	margin: 0 0 0 0;
}