
@import url("animation.css") screen;
/* SLIDER */
#slider {
	background: white;
	height:440px;
	width:100%;
	overflow:visible;
	border-radius: 18px;
	margin-bottom: 1em;
}
#mask {
	overflow:hidden;
	height:440px;
	width:100%;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:100%;
	height:440px;
	position:absolute;
	top:-400px;
	list-style:none;
}

#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 .tooltip {
	background:rgba(0,0,0,0.7);
	width:500px;
	height:60px;
	position:relative;
	top:-95px;
	left:-500px;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;  
}
#slider .tooltip h3 {
	color:#fff;
	font-size:22px;
	font-weight:300;
	line-height:60px;
	padding:0 0 0 10px;
}
#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:0;
}

/* PROGRESS BAR */
.progress-bar { 
	position:relative;
	top: 2px;
	width:100%; 
	height:5px;
	background:#666;
	-moz-animation:fullexpand 25s ease-out infinite;
	-webkit-animation:fullexpand 25s ease-out infinite;
}


/* Mobile styles */

@media screen and (max-width: 600px) {

#slider {
  width: 100%;
  height: auto;
  padding: 0;
  background-color: transparent;
  border: 1px solid #efefef;
  border-radius: 10px;
}
#slider img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  border: none;
}
#mask {
  width: 100%;
  height: 180px;
  margin: 0;
}

#slider li {
  width: 100%;
  height: auto;
}
#slider .tooltip {
  display: none;
}
}/* end Mobile styles */