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

/* Common */


.content1 h1 {
	font-size:48px;
	color:#000;
	text-shadow:0px 1px 1px #f4f4f4;
	text-align:center;
	padding:60px 0 30px;	
}

/* LAYOUT */
.container1 {
	margin:0 auto;
	overflow:hidden;
	width:370px;
	float: right;
}

/* CONTENT SLIDER */
#content-slider1 {
	width:100%;
	height:400px;
	margin:10px auto 0;
}
/* SLIDER */
#slider1 {
	background:#000;
	/*border:5px solid #eaeaea;*/
	box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	height:450px;
	width:300px;
	margin:40px auto 0;
	overflow:visible;
	position:relative;
}
#mask1 {
	overflow:hidden;
	height:450px;
}
#slider1 ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider1 li {
	width:300px;
	height:450px;
	position:absolute;
	top:-325px;
	list-style:none;
}

#slider1 li.firstanimation1 {
	-moz-animation:cycle 25s linear infinite;	
	-webkit-animation:cycle 25s linear infinite;		
}
#slider1 li.secondanimation1 {
	-moz-animation:cycletwo 25s linear infinite;
	-webkit-animation:cycletwo 25s linear infinite;		
}
#slider1 li.thirdanimation1 {
	-moz-animation:cyclethree 25s linear infinite;
	-webkit-animation:cyclethree 25s linear infinite;		
}
#slider1 li.fourthanimation1 {
	-moz-animation:cyclefour 25s linear infinite;
	-webkit-animation:cyclefour 25s linear infinite;		
}
#slider1 li.fifthanimation1 {
	-moz-animation:cyclefive 25s linear infinite;
	-webkit-animation:cyclefive 25s linear infinite;		
}

#slider1 .tooltip1 {
	background:rgba(0,0,0,0.7);
	width:300px;
	height:60px;
	position:relative;
	bottom:75px;
	left:-450px;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;  
}
#slider1 .tooltip1 h1 {
	color:#fff;
	font-size:24px;
	font-weight:300;
	line-height:60px;
	padding:0 0 0 20px;
}
#slider1 li#first1:hover .tooltip1, 
#slider1 li#second1:hover .tooltip1, 
#slider1 li#third1:hover .tooltip1, 
#slider1 li#fourth1:hover .tooltip1, 
#slider1 li#fifth1:hover .tooltip1 {
	left:0px;
}
#slider1:hover li, 
#slider1:hover .progress-bar1 {
	-moz-animation-play-state:paused;
	-webkit-animation-play-state:paused;
}

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