﻿/*
	Slideshow
*/

#slides {
    position: relative;
    margin: 0 auto;
    width: 882px;
    text-align: center;
}

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

.slides_container {
	width:800px !important;
    height: 400px;
	overflow:hidden;
    border: 15px solid #fbfbfb;
    margin: 0 26px !important;
}
/*
#slides .slidesjs-control 
{
    padding: 0 50px;
}
*/
/*
	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:800px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:192px;
	
	width:26px;
	height:42px;
	display:block;
	z-index:101;
}

#slides .prev 
{
    left:0;
}

#slides .next {
	right:0;
}

/*
	Pagination
*/

.pagination {
	margin: 0 auto;
    padding: 15px 0px;

   
}

*+html .pagination { width: 100px; }

.pagination li {
	display: inline-block;
    *display: inline;
	margin:0 1px;
	list-style:none;
}

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

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

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	bottom:-45px;
	left:0;
	height:42px;
	padding:0px 20px 0 20px;
	background:#000;
	background:rgba(0,0,0,.75);
	width:800px;
	font-size:12pt;
    line-height: 40px;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
    text-align: left;
}