/* CSS Document */

/* SLIDER (http://www.alessioatzeni.com/CSS3-Cycle-Image-Slider/#) */
@import url("reset.css") screen;
@import url("animation.css") screen;
.slider-container {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
}
#content-slider {
	width: 100%;
	margin: 0px auto 0;
}
#slider {
	background: #FFF;
	border: 0px solid #eaeaea;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.7);
	width: 100%;
	overflow: visible;
	position: relative;
}
#mask {
	overflow: hidden;
	padding-top: 0px;
	padding-bottom: 50.25%;
}
#slider ul {
	margin: 0;
	padding: 0;
	position: relative;
}
#slider li img{
	margin: 5px auto;
	width: 100%;
}
#slider li {
	width: 100%;
	position: absolute;
	top: -325px;
	list-style: none;
	text-align: center;
}
#slider li.firstanimation {
	-moz-animation: cycle 25s linear infinite;
	-webkit-animation: cycle 25s linear infinite;
}
#slider li.secondanimation {
	-moz-animation: cycletwo 25s linear infinite;
	-webkit-animation: cycletwo 25s linear infinite;
}
#slider li.thirdanimation {
	-moz-animation: cyclethree 25s linear infinite;
	-webkit-animation: cyclethree 25s linear infinite;
}
#slider li.fourthanimation {
	-moz-animation: cyclefour 25s linear infinite;
	-webkit-animation: cyclefour 25s linear infinite;
}
#slider li.fifthanimation {
	-moz-animation: cyclefive 25s linear infinite;
	-webkit-animation: cyclefive 25s linear infinite;
}
#slider .slider-tooltip {
	background: rgba(0,0,0,0.7);
	width: 300px;
	height: 45px;
	position: relative;
	bottom: 30vh;
	left: -300px;
	border-radius: 0 5px 5px 0;
	vertical-align: middle;
	display: table-cell;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
#slider .slider-tooltip h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	line-height: 20px;
	padding: 0 0 0 10px;
}
#slider li:hover .slider-tooltip {
	left: 0px;
}
#slider:hover li, #slider:hover .progress-bar {
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
}
.progress-bar {
	position: relative;
	bottom: 1px;
	width: 90%;
	height: 10px;
	background: #000;
	-moz-animation: fullexpand 25s ease-out infinite;
	-webkit-animation: fullexpand 25s ease-out infinite;
}
