/* RESET CSS */
/* Normalise margin, padding etc...*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, imput {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100.01%;
	vertical-align: baseline;
	background: transparent;
	}
/* Normalise la taille de la police en em */
body {
	font-size: 1em;
	line-height: 1;
	}
/* Enlève list-style des listes */
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}
/* Normalise font-style et font-weight à normal */
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
	}
/* Normalise les bordures des tables */
table {
	border-collapse: collapse;
	border-spacing: 0;
	}
/* Enlève les bordures des fieldset et des img */
fieldset, img { border: 0; }
/* Alignement à gauche des titres et cellule d'entête des tableaux */
caption, th { text-align: left; }
/* Enlève les guillemets sur les citations courtes */
q:before, q:after { content: ''; }
/* Style des liens par défaut */
a, strong a {
	color: #ff6600;
	text-decoration: none;
	outline: none;
	visibility: visible;/*correction d'un bug IE */
	}
a:visited { color: #ff6600; }
a:hover {
	text-decoration: underline;
	background: none ; /*correction d'un bug IE */
	}
/* MAZ focus ! */
:focus { outline: 0; }
/* MAZ ins et del ! */
ins { text-decoration: none; }
del { text-decoration: line-through; }
/* RESET CSS*/