@charset "UTF-8";
/* CSS Document */

* {
		margin:0;
		padding:0;
		}

	html, body {
		height:100%;
		background-size: 100% 100%; /* w3c spec */ 
		-moz-background-size: 100% 100%; /* firefox css*/ 
		-webkit-background-size: 100% 100%; /* safari/chrome */ 
		-o-background-size: 100% 100%; /* opera css */
		/*
background-image: -moz-linear-gradient(left, right, 
                          from(#621106), 
                          to(#ffff88)); 
		background-image: -webkit-gradient(linear, left top, left bottom, 
                              color-stop(0.10, #621106),    
                            color-stop(0.90, #ffff88)); 
*/
		/* IE le vieux code - GradientType=1 pour horizontal, 0 pour vertical */ 
/*
		filter: progid:DXImageTransform.Microsoft.gradient(
			enabled='true', 
            startColorstr=#621106,  
            endColorstr=#ffff88,  
            GradientType=0);  
*/
		background:#111;
		}

	body {
		color:#fff;
		font:10px Geneva, Arial, Helvetica, sans-serif;
		text-align:center; /* horizontal centering for IE Win quirks */
		}

	#distance { 
		width:1px;
		height:50%;
		margin-bottom:-325px; /* half of container's height */
		float:left;
		}

	#container {
		margin:0 auto;
		position:relative; /* puts container in front of distance */
		text-align:left;
		height:650px;
		width:700px;
		clear:left;
		background-color:#000;
		border:#993300 10px solid;
	    -moz-box-shadow: 0px 0px 20px #333;  
	    -webkit-box-shadow: 0px 0px 20px #333;  
	    box-shadow: 0px 0px 20px #333;  
	}
		
	#zoneFlash {
		border:#fff 20px solid;
		}
		
/* liens */
	a:link {
		color:#D31E20;
		text-decoration:none;
		border-bottom:1px dotted #D31E20;
	}
	
	a:visited {
		color:#930;
		text-decoration:none;
		border-bottom:1px dotted #D31E20;
	}
	
	a:hover, a:active {
		color:#fff;
		text-decoration:none;
		border-bottom:1px dotted #fff;
	}
	
	a.lienimg {
		vertical-align:middle;
		border-bottom:0;
	}