@import url("animation.css") screen;

/* CONTENT SLIDER */
#content-slider {
	width:400px;
	height:266px;
	margin:10px auto 0;
}
/* SLIDER */
#slider {
	background:#000;
	border:5px solid #eaeaea;
	-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	height:253px;
	width:380px;
	margin:40px auto 0;
	overflow:visible;
	position:relative;
	
}
#mask {
	overflow:hidden;
	height:253px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:385px;
	height:251px;
	position:absolute;
	left:-32px;
	top:-325px;
	list-style:none;
}

#slider li.first-animation {
	-moz-animation:cycle 35s linear infinite;	
	-webkit-animation:cycle 35s linear infinite;		
	-ms-animation:cycle 35s linear infinite;
	-o-animation:cycle 35s linear infinite;		
	animation:cycle 35s linear infinite;		
}
#slider li.second-animation {
	-moz-animation:cycletwo 35s linear infinite;
	-webkit-animation:cycletwo 35s linear infinite;		
	-ms-animation:cycletwo 35s linear infinite;	
	-o-animation:cycletwo 35s linear infinite;		
	animation:cycletwo 35s linear infinite;		
}
#slider li.third-animation {
	-moz-animation:cyclethree 35s linear infinite;
	-webkit-animation:cyclethree 35s linear infinite;		
	-ms-animation:cyclethree 35s linear infinite;
	-o-animation:cyclethree 35s linear infinite;		
	animation:cyclethree 35s linear infinite;		
}
#slider li.fourth-animation {
	-moz-animation:cyclefour 35s linear infinite;
	-webkit-animation:cyclefour 35s linear infinite;		
	-ms-animation:cyclefour 35s linear infinite;
	-o-animation:cyclefour 35s linear infinite;		
	animation:cyclefour 35s linear infinite;		
}
#slider li.fifth-animation {
	-moz-animation:cyclefive 35s linear infinite;
	-webkit-animation:cyclefive 35s linear infinite;		
	-ms-animation:cyclefive 35s linear infinite;
	-o-animation:cyclefive 35s linear infinite;		
	animation:cyclefive 35s linear infinite;		
}
#slider li.sixth-animation {
	-moz-animation:cyclesix 35s linear infinite;	
	-webkit-animation:cyclesix 35s linear infinite;		
	-ms-animation:cyclesix 35s linear infinite;
	-o-animation:cyclesix 35s linear infinite;		
	animation:cyclesix 35s linear infinite;		
}
#slider li.seventh-animation {
	-moz-animation:cycleseven 35s linear infinite;
	-webkit-animation:cycleseven 35s linear infinite;		
	-ms-animation:cycleseven 35s linear infinite;	
	-o-animation:cycleseven 35s linear infinite;		
	animation:cycleseven 35s linear infinite;		
}
#slider li.eight-animation {
	-moz-animation:cycleeight 35s linear infinite;
	-webkit-animation:cycleeight 35s linear infinite;		
	-ms-animation:cycleeight 35s linear infinite;
	-o-animation:cycleeight 35s linear infinite;		
	animation:cycleeight 35s linear infinite;		
}
#slider li.ninth-animation {
	-moz-animation:cyclenine 35s linear infinite;
	-webkit-animation:cyclenine 35s linear infinite;		
	-ms-animation:cyclenine 35s linear infinite;
	-o-animation:cyclenine 35s linear infinite;		
	animation:cyclenine 35s linear infinite;		
}
#slider li.tenth-animation {
	-moz-animation:cycleten 35s linear infinite;
	-webkit-animation:cycleten 35s linear infinite;		
	-ms-animation:cycleten 35s linear infinite;
	-o-animation:cycleten 35s linear infinite;		
	animation:cycleten 35s linear infinite;		
}

#slider .tooltip {
	background:rgba(0,0,0,0.7);
	width:350px;
	height:60px;
	position:relative;
	bottom:75px;
	left:-320px;
	font-family:Tahoma, Verdana, serif;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out; 
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;   
}


#slider .tooltip h1 {
	color:#fff;
	font-size:15px;
	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 {
	-moz-animation-play-state:paused;
	-webkit-animation-play-state:paused;
	-ms-animation-play-state:paused;
	-o-animation-play-state:paused;
	animation-play-state:paused;
}


/* PROGRESS BAR */
.progress-bar { 
	position:relative;
	top:-5px;
	width:680px; 
	height:5px;
	background:#fff;
	-moz-animation:fullexpand 15s ease-out infinite;
	-webkit-animation:fullexpand 15s ease-out infinite;
	-ms-animation:fullexpand 15s ease-out infinite;
	-o-animation:fullexpand 15s ease-out infinite;
	animation:fullexpand 15s ease-out infinite;
}
