@import url("animation.css") screen;

/* CONTENT SLIDER */
#content-slider {
	width:100%;
	height:420px;
	margin:10px auto 0;
}
/* SLIDER */
#slider {
	height:400px;
	width:680px;
	margin:40px auto 0;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:400px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:680px;
	height:400px;
	position:absolute;
	top:-405px;
	list-style:none;
}

#slider li.animation1 {
	animation:cycle1 60s linear infinite;
  -webkit-animation:cycle1 60s linear infinite;	
  -moz-animation:cycle1 60s linear infinite;	
  -o-animation:cycle1 60s linear infinite;		
}
#slider li.animation2 {
  animation:cycle2 60s linear infinite;
  -webkit-animation:cycle2 60s linear infinite;	
  -moz-animation:cycle2 60s linear infinite;	
  -o-animation:cycle2 60s linear infinite;		
}
#slider li.animation3 {
	animation:cycle3 60s linear infinite;
  -webkit-animation:cycle3 60s linear infinite;	
  -moz-animation:cycle3 60s linear infinite;	
  -o-animation:cycle3 60s linear infinite;		
}
#slider li.animation4 {
	animation:cycle4 60s linear infinite;
  -webkit-animation:cycle4 60s linear infinite;	
  -moz-animation:cycle4 60s linear infinite;	
  -o-animation:cycle4 60s linear infinite;		
}
#slider li.animation5 {
	animation:cycle5 60s linear infinite;
  -webkit-animation:cycle5 60s linear infinite;	
  -moz-animation:cycle5 60s linear infinite;	
  -o-animation:cycle5 60s linear infinite;		
}
#slider li.animation6 {
	animation:cycle6 60s linear infinite;
  -webkit-animation:cycle6 60s linear infinite;	
  -moz-animation:cycle6 60s linear infinite;	
  -o-animation:cycle6 60s linear infinite;		
}
#slider li.animation7 {
	animation:cycle7 60s linear infinite;
  -webkit-animation:cycle7 60s linear infinite;	
  -moz-animation:cycle7 60s linear infinite;	
  -o-animation:cycle7 60s linear infinite;		
}
#slider li.animation8 {
	animation:cycle8 60s linear infinite;
  -webkit-animation:cycle8 60s linear infinite;	
  -moz-animation:cycle8 60s linear infinite;	
  -o-animation:cycle8 60s linear infinite;		
}
#slider li.animation9 {
	animation:cycle9 60s linear infinite;
  -webkit-animation:cycle9 60s linear infinite;	
  -moz-animation:cycle9 60s linear infinite;	
  -o-animation:cycle9 60s linear infinite;		
}
#slider li.animation10 {
	animation:cycle10 60s linear infinite;
  -webkit-animation:cycle10 60s linear infinite;	
  -moz-animation:cycle10 60s linear infinite;	
  -o-animation:cycle10 60s linear infinite;		
}

#slider .tooltip {
	/*background:rgba(0,0,0,0.7);*/
	background-image:url(img/cobra/test-tooltip.png);
	background-repeat:no-repeat;
	width:300px;
	height:150px;
	position:relative;
	bottom:81px;
	left:-320px;
	transition:all 0.3s ease-in-out;
  -webkit-transition:all 0.3s ease-in-out;
  -moz-transition:all 0.3s ease-in-out;
  -o-transition:all 0.3s ease-in-out;
}
#slider .tooltip h1 {
	color:#fff;
	font-size:20px;
	font-weight:300;
	line-height:45px;
	margin-left:25px;
	padding:0 0 0 0px;
}
#slider li:hover .tooltip 
{
	left:16px;
}

#slider:hover li, 
#slider:hover .progress-bar {
	animation-play-state:paused;
	-webkit-animation-play-state:paused;
	-moz-animation-play-state:paused;
	-o-animation-play-state:paused;

}

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