@charset "utf-8";
/* CSS Document */

#slides {
	position: relative;
}
#slides .slides-container {
	display: none;
}
#slides .slides-container img {
	max-width: inherit;
}
#slides .slides-container .slides-detail {
	margin: -200px 0 0 0;
	padding: 50px 0;
	width: 100%;
	height: 300px;
	background: rgba(0,0,0,0.25);
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 10;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
#slides .slides-container .slides-detail:hover {
	background: rgba(0,0,0,0.5);
}
#slides .slides-container .slides-detail i {
	margin: auto;
	width: 130px;
	height: 130px;
	font-size: 130px;
	line-height: 130px;
	text-align: center;
	display: block;
	color: #FFF;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
#slides .slides-container .slides-detail:hover i {
	background: #9CC;
	border-radius: 100%;
	font-size: 100px;
	transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg);
}
#slides .slides-container .slides-detail h1 {
	color: #FFF;
}
#slides .slides-container .slides-detail .lead {
	margin-bottom: 20px;
	color: #FFF;
	display: block;
}
#slides .slides-container .slides-detail .lead strong {
	font-weight: 700;
}
#slides .scrollable {
 *zoom: 1;
	position: relative;
	top: 0;
	left: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}
#slides .scrollable:after {
	content: "";
	display: table;
	clear: both;
}
.slides-navigation a {
	margin-top: 150px;
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	z-index: 20;
}
.slides-navigation a.prev {
	margin-left: -50px;
	left: 50%;
}
.slides-navigation a.next {
	margin-right: -50px;
	right: 50%;
}
.slides-navigation a.prev i, .slides-navigation a.next i {
	width: 50px;
	height: 50px;
	background: rgba(87,87,87,0.5);
	line-height: 50px;
	color: #FFF;
	text-align: center;
	display: block;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
.slides-navigation a.prev i:hover, .slides-navigation a.next i:hover {
	background: rgba(34,34,34,0.75);
}
.slides-pagination {
	width: 100%;
	height: 20px;
	text-align: center;
	position: absolute;
	top: 20px;
	z-index: 3;
}
.slides-pagination a {
	margin: 0;
	padding: 0;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.1);
	border-radius: 100%;
	display: inline-block;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
.slides-pagination a:hover, .slides-pagination a.current {
	border: 2px solid rgba(255,255,255,0.5);
}