/*
	CSS
	DÉFINITION DES BALISES HTML PAR DÉFAUT
*/
	html{
						margin:					0;
						padding:				0;
						width:					100%;
						height:					100%;
	}
	
	body{	
						margin:					0;
						padding:				0;
						width:					100%;
						height:					100%;
						background-color:		black;
						font-family: 			Arial, Helvetica, sans-serif;
						color:					#6d6d6d;
	}
	
	h1{
						margin-bottom: 			20px;
						font-size:				14px;
	}
	
	h2{
						color:					#cfcfcf;
						font-size:				12px;
	}
	
	h3{
						font-size:				11px;
	}
	
	p{
						margin-bottom: 			20px;
						font-size:				11px;
	}
	
	li {
						font-size:				11px;
	}
	
	a:link, a:active, a:visited{	
						color:					#868585;
						text-decoration:		none;
	}
	
	a:hover{			color:					#FFFFFF;
						text-decoration:		underline;
	}
	
	img{
						border:					0px;
	}
	
	form{
						margin:					0px;
	}
