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


/* LAYOUT */
.container {
	margin:0 auto;
	overflow:hidden;
	width:925px;
}

.container2 {
    padding-top:10px;
    padding-bottom:10px;
}

/* CONTENT SLIDER */
#content-slider {
	width:925px;
	height:202px;

}
/* SLIDER */
#slider {
	background:#000;
	border:5px solid #eaeaea;
	box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	width:925px;
	height:202px;    
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:202px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:925px;
	height:202px;
	position:absolute;
	list-style:none;
}


#mask ul li {
    margin-left: 0px !important;
}
#slider li.firstanimation {

	-webkit-animation:cycle 75s linear infinite;
	-moz-animation:cycle 75s linear infinite;
	-ms-animation:cycle 75s linear infinite;
	 animation:cycle 75s linear infinite;					
}
#slider li.secondanimation {
	-webkit-animation:cycletwo 75s linear infinite;
    -moz-animation:cycletwo 75s linear infinite;
    -ms-animation:cycletwo 75s linear infinite;
    animation:cycletwo 75s linear infinite;		
}
#slider li.thirdanimation {
	-webkit-animation:cyclethree 75s linear infinite;
	-moz-animation:cyclethree 75s linear infinite;
	-ms-animation:cyclethree 75s linear infinite;
	 animation:cyclethree 75s linear infinite;            		
}

#slider li.fourthanimation {
	-webkit-animation:cyclefour 75s linear infinite;
	-moz-animation:cyclefour 75s linear infinite;
	-ms-animation:cyclefour 75s linear infinite;
	animation:cyclefour 75s linear infinite;            		
}
#slider li.fifthanimation {
	-webkit-animation:cyclefive 75s linear infinite;
	-moz-animation:cyclefive 75s linear infinite;
	-ms-animation:cyclefive 75s linear infinite;
	animation:cyclefive 75s linear infinite;            		
}
/*
#slider .tooltip {
	background:rgba(0,0,0,0.7);
	width:300px;
	height:60px;
	position:relative;
	bottom:75px;
	left:-320px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;          
	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 {
	left:0px;
}
#slider:hover li, 
#slider:hover .progress-bar {
	-webkit-animation-play-state:paused;
	-moz-animation-play-state:paused;
	-ms-animation-play-state:paused;
	animation-play-state:paused;      
    cursor: wait;      
}

.progress-bar { 
	position:relative;
	top:-5px;
	width:925px;
	height:5px;
	background:#000;
	-webkit-animation:fullexpand 75s ease-out infinite;
	-moz-animation:fullexpand 75s ease-out infinite;
	-ms-animation:fullexpand 75s ease-out infinite;
	animation:fullexpand 75s ease-out infinite;            
}

*/