html {
	height: 100%;
}
body {
	background: url(../images/fond.png) repeat-x;
	height: 100%;
	overflow: hidden;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", Arial, Helvetica, sans-serif;
}

article {
	position: absolute;
	width: 540px;
	padding: 10px;
	top: 50%;
	left: 50%;
	margin-top: -185px;
	margin-left: -280px;
	border: 1px solid #cbcbcb;
	border-bottom-color: #aaafb0;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	
	background: #c8cecf url(../images/article-bg.png) repeat-x top;
	-o-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	background: -moz-linear-gradient(
		top,
		white,
		#f0f2f2 1%,
		#c8cecf
	);
	background: -webkit-gradient(
		linear,
		left top, left bottom,
		from(white),
		to(#c8cecf),
		color-stop(0.01, #f0f2f2)
	);
	}
	section {
		border: 1px solid #dddddd;
		-moz-border-radius: 9px;
		-webkit-border-radius: 9px;
		border-radius: 9px;
		margin-bottom: 10px;
		
		background: #fafafa url(../images/section-bg.png) repeat-x top;
		-o-background-size: 100% 100%;
		-moz-background-size: 100% 100%;
		-webkit-background-size: 100% 100%;
		background: -moz-linear-gradient(
			top,
			white,
			#fafafa
		);
		background: -webkit-gradient(
			linear,
			left top, left bottom,
			from(white),
			to(#fafafa)
		);
	}
	
	#logo {
		height: 170px;
		background: url(../images/logo.png) no-repeat center;
	}
	#coordonnees {
		height: 97px;
		border-top: 1px solid #dddddd;
		background: url(../images/coordonnees.png) no-repeat center;
	}
	#logo *,
	#coordonnees * {
		visibility: hidden;
	}
	
	progress {
		font-size: 32px;
		font-weight: bold;
		text-transform: uppercase;
		text-align: center;
		color: white;
		padding: 9px 0;
		-moz-text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
		-webkit-text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
		text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.2);
	}