/*---------------------------------------------
ANNULER LES MARGES ET NORMALISER L'APPARENCE
---------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, cite, q, pre, code,
a, abbr, address, em, strong, sub, sup, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, 
figure, figcaption, footer, header, hgroup,
nav, output, section, summary,
time, mark, 
audio, video {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	/*font-size: 100%; si autres tailles de typo en em*/
	font-size: 17px; /*si autres tailles de typo en px ou en rem*/
	line-height: 1.5;
}

nav ul, nav ol {
	list-style-type: none;
}

a { /*nav a*/
	text-decoration: none;
}

a img {
	border: 0;
}

abbr {
	text-decoration: none;
	border-bottom: dashed 1px #000;
	cursor:help;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th, td {
	padding: 10px;
	border: solid 1px #999;
}

textarea {
	resize: none;
}

/*---------------------------------------------
LES NORMALISATIONS PLUS PERSONNELLES
---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

/*---------------------------------------------
ET LA NORMALISATION DES IMPRESSIONS, PAR EX.
---------------------------------------------*/
@media print {
	h1 {
		page-break-before: always;
	}
	body {
		background: transparent;
	}
}