@import url("slide-reset.css") screen;
@import url("slide-animation.css") screen;

/* LAYOUT */
.container-slider {
	margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* CONTENT SLIDER */
#content-slider {
	width: 100%;
    height: 350px;
    margin: auto 0;
}
/* SLIDER */
#slider {
	background:#000;
	box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	height:350px;
	width:100%;
	margin:auto 0;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:350px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:870px;
	height:350px;
	position:absolute;
	top:-350px;
	list-style:none;
}

#slider li.firstanimation {
	animation:cycle 25s linear infinite;	
}
#slider li.secondanimation {
	animation:cycletwo 25s linear infinite;
}
#slider li.thirdanimation {
	animation:cyclethree 25s linear infinite;	
}
#slider li.fourthanimation {
	animation:cyclefour 25s linear infinite;	
}
#slider li.fifthanimation {
	animation:cyclefive 25s linear infinite;	
}

#slider .tooltip {
	background:rgba(0,0,0,0.7);
	width:300px;
	height:60px;
	position:relative;
	bottom:75px;
	left:-350px;
	transition:all 0.3s ease-in-out;  
}
#slider .tooltip h1 {
	color:#fff;
	font-size:24px;
	font-weight:300;
	line-height:60px;
	padding:0 0 0 20px;
}
#slider li#first:hover .tooltip, 
#slider li#second:hover .tooltip, 
#slider li#third:hover .tooltip, 
#slider li#fourth:hover .tooltip, 
#slider li#fifth:hover .tooltip {
	left:0px;
}
#slider:hover li, 
#slider:hover .progress-bar {
	animation-play-state:paused;
}

/* PROGRESS BAR */
.progress-bar { 
	position:relative;
	top:-5px;
	width:870px; 
	height:5px;
	background:#000;
	animation:fullexpand 25s ease-out infinite;
}