/**
 * Author:      Matt Hinchliffe <www.maketea.co.uk>
 * Modified:    03/11/2012
 * Description: Simple jQuery slideshow
 * Example:
 * <div class="slideshow">
 *     <ul class="carousel">
 *         <li class="slide"><a href="#">Option 1</a></li>
 *         <li class="slide"><a href="#">Option 2</a></li>
 *     </ul>
 * </div>
 */
/* slides */
.slideshow {
	position:relative;
	margin:0 0 1em;
}
	.slideshow a {
		font-size:.75em;
		line-height:2em;
		text-decoration:none;
		color:#fff;
	}
		.slideshow a:hover,
			background-color:#333;
		}
	.carousel {
		margin:0;
		padding:0;
		list-style:none;
	}
		.slide {
			z-index:100;
			width: 100%;
			text-align: center;
			overflow: hidden;
		}
			.slide img {
				height: 700px;
				width: 1440px;
				position: relative; /* allows repositioning */
    			left: 100%; /* move the whole width of the image to the right */
			    margin-left: -200%;
			}
.slide p {
position: absolute;
top: 42%;
width: 900px;
left: 50%;
margin-left: -450px;
z-index:120;
color: #fff;
font-family: 'Open Sans', sans-serif;
font-size: 22px;
font-weight: 300;
color: #fff;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

/* pagination */
.slides-pagination {
	position:absolute;
	bottom:1em;
	margin:0;
	padding:0;
	list-style:none;
	z-index:110;
	left: 50%;
	margin-left: -26px;
}
	.slides-pagination li {
		display:inline;
	}
		.slides-pagination a {
			display:block;
			float:left;
			width:10px;
			height: 10px;
			border: 1px solid #fff;
			background: rgba(255,255,255,1);
			border-radius: 50%;
			margin-right:10px;
		}
		.slideshow .selected a {
			border: 1px solid #fff;
			background: rgba(255,255,255,0);
			-webkit-transition: background .3s ease-in-out;
			-moz-transition: background .3s ease-in-out;
			-o-transition: background .3s ease-in-out;
			transition: background .3s ease-in-out;
		}

/* skip */
.slides-next,
.slides-prev {
	position:absolute;
	top:45%;
	height:73px;
	margin-top:-35px;
	padding:0;
	z-index:120;
}
.slides-next {
	right:20px;
}
.slides-prev {
	left:20px;
}
.slides-next.disabled,
.slides-prev.disabled {
	opacity:.5;
	cursor:auto;
}