@charset "utf-8";
/* Loading */

#loader_title{
	position:relative;

	width:530px;

	height:200px;

	background: url('../images/loader_title.png') no-repeat;

	background-size:530px 200px;

	top:50%;

	left:50%;

	margin-top:-255px;/*-175*/

	margin-left:-265px;

	display:block;

	visibility:visible;

	opacity:0.0;
}

#intro_loader{
	position:absolute;

	left:0px;

	top:0px;

	margin:0px;


	width:100%;

	height:100%;

	display:block;

	visibility:visible;

	background-color:#FFF;
}

#intro_loader_container{
	position:absolute;

	left:0px;

	top:0px;

	margin:0px;

	width:100%;

	height:100%;

	display:block;

	visibility:visible;

	-webkit-animation: fadein 1s ease-out;

	animation: fadein 1s ease-out;

	-webkit-animation-delay: 0.3s;

	animation-delay: 0.3s;

	opacity:0.0;
}

#loader_logo{
	position:inherit;

	width:70px;

	height:70px;

	background: url('../images/intro_icon.png') no-repeat;

	background-size:100% 100%;

	top:50%;

	left:50%;

	margin-top:-80px;

	margin-left:-35px;

	display:block;

	visibility:visible;

	opacity:1.0;
	
	border-radius: 20px;
}

.intro_load_ind {
	position:absolute;
	
	margin-top:15px;

	margin-left:50%;

	left:-50px;

	top:50%;
	
	width:100px;

	height:80px;

	text-align:center;

	font-size:10px;
}

.intro_load_ind > div {
	background-color: #058e8f;

	height: 100%;

	width: 12px;

	display: inline-block;

  	border-radius: 20px;

	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;

	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.intro_load_ind .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.intro_load_ind .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.intro_load_ind .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.intro_load_ind .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% { 
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% { 
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}