#container-preload{
				width:300px;
				height:80px;
				position:absolute;
				left:50%;
				top:50%;
				margin:-60px 0  0 -150px;
				text-align: center;
				opacity:0;
			}
			#percent-container span{
				font-size: 50px;
				opacity:1;
				color:#333333;
			}
			.miniDots{
				width:25px;
				height:25px;
				border-radius:50%;
				background:#333333;
				position:absolute;
				top:50px;
				opacity:0;
			}
			.bounceInMiniDots{
    		-Webkit-animation-name: bounceInMiniDots;
    		-Webkit-animation-duration: 0.3s;
    		-webkit-animation-timing-function: ease-out;
    		-webkit-animation-iteration-count: 1;
			-webkit-animation-direction: normal;
			-webkit-animation-play-state: running;
			-webkit-animation-fill-mode:forwards;
	    	}
	    	@-webkit-keyframes bounceInMiniDots
	    	{
	       		0%{-webkit-transform:scale(0,0);}
	       		80% {-webkit-transform:scale(1.2,1.2);}
	       		100% {-webkit-transform:scale(1,1);}
	    	}
	    	.bounceOutMiniDots{
	    		-webkit-transition:all 0.3s ease-out;
	    		-webkit-transform:scale(0,0);
	    	}
			#loadingBar{
				width:0px;
				height:10px;
				overflow:hidden;
				position:relative;
				left:50%;
				margin-left:-130px;
				opacity:0;
			}
			#loadingBar img{
				width:260px;
				height:10px;
			}