@import url("animation.css") screen;
/* SLIDER */
*{ margin:0; padding:0;}
#slider {
	/*background:#000;*/
	width:940px;
	height:300px;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:300px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:850px;
	height:300px;
	position:absolute;
	top:100px;
	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;		
}

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