/* CSS Document */
/* --------------------------------------------------------------------------------------------- Remise à zéro de tous les préformatages navigateurs */
	* {
		padding:0;
		margin:0
	}
	body {
		font-size:62.5%;
		font-family:verdana, arial, helvetica, sans-serif;
		color:#3c6b86;
		background:#dddddd;
		text-shadow:#fff 0 0 0
	}
/* ------------------------------------------------------------------------- Liens */
	a {text-decoration:underline}
	a:hover, a:focus, a.focus {text-decoration:none}
	a img {border:none}
/* ------------------------------------------------------------------------- Liste */
	ul {list-style:none}
/* ------------------------------------------------------------------------- Divers */
	strong {font-weight:bold}
	em {font-style:italic}
	label {cursor:pointer}
	abbr, acronym {
	  border-bottom:1px dotted #333;
	  cursor:help
	}
