html{
	height:100%;
}

body{
	position:absolute;
	margin:0px;
	padding:0px;
	left:0;
	right:0;
	height:100%;
	min-height:720px;
	background-color:#555;
	background:url(images/fond.jpg) no-repeat center center fixed;
	background-size:cover;
	background:radial-gradient(#fff,#555)
}

#framePrincipale{
	position:absolute;
	width:1004px;
	height:720px;
	margin:auto;
	top:0;
	left:0;
	bottom:0;
	right:0;	
	padding:0px;
	border:none;
	box-shadow:0px 0px 10px rgba(0,0,0,0.5);
	border-radius:4px;
}

#chargement{
	position:fixed;
	width:100%;
	height:100%;
}

#blocChargement{
	position:absolute;
	width:1004px;
	height:720px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	background-color:#eee;
	border-radius:4px;
}

#infosChargement{
	position:absolute;
	width:200px;
	height:50px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	text-align:center;
}

.texteChargement{
	width:100%;
	height:20px;
	line-height:20px;
	font-family:Verdana;
	font-size:7pt;
	font-weight:bold;
	color:#aaa;
}

#infosChargement img{
	width:30px;
	height:30px;
	animation:rotation 1s linear infinite;
}

@keyframes rotation{
	100%{transform:rotate(360deg);}
}