/*@import url("reset.css") screen;*/
@import url("animation.css") screen;



/* LAYOUT */
.container {
	overflow:hidden;
	width:950px;
	/*box-shadow: 5px 5px 10px #888888;*/
	/*margin-top: 40px;*/
}

/* CONTENT SLIDER */
#content-slider {
	width:950px;
	height:310px;
	/*background-image:url('images/spacer.gif');*/
	background-color: #336699;
	border:1px solid #336699;
	
}

/* to correct image formatting */
#container img.slide {
	margin: 0px;
	border-width: 0px;
}
/* SLIDER */
#slider {
	height:310px;
	width:950px;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:310px;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:950px;
	height:310px;
	position:absolute;
	top:-310px;
	list-style:none;
}
/* PROGRESS BAR */
.progress-bar { 
	position:relative;
	top:-5px;
	width:680px; 
	height:5px;
	background:#000;
	-moz-animation:fullexpand 25s ease-out infinite;
	-webkit-animation:fullexpand 25s ease-out infinite;
}

#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;		
}

/*MEDIA QUERY*/
/*MOBLIE VERSION*/
@media only screen and  (max-width : 414px) {
/* LAYOUT */
.container {
	overflow:hidden;
	width:100%;
	/*box-shadow: 5px 5px 10px #888888;*/
	/*margin-top: 40px;*/
}

/* CONTENT SLIDER */
#content-slider {
	width:100%;
	height:30%;
	background-image:url('images/contentgrad.jpg');
	background-repeat:repeat-y;
	border: 0px;	
}

/* SLIDER */
#slider {
	height:100%;
	width:100%;
	overflow:visible;
	position:relative;
}
#mask {
	overflow:hidden;
	height:100%;
}
#slider ul {
	margin:0;
	padding:0;
	position:relative;
}
#slider li {
	width:100%;
	height:100%;
	position:absolute;
	top:-310px;
	list-style:none;
}
/* PROGRESS BAR */
.progress-bar { 
	display: none;
}

} /*MEDIA QUERY END*/