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

/* RESET CSS */
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin:0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ======================================================*/
/* = typo css - titres - paragraphes - taille du texte = */
/* ======================================================*/

/* taille, police et couleur par défaut */

body {
    font: 1em/1.5 sans-serif;
    color: #333;
}

/* Echelle typographique */

.smaller {font-size: .8em; line-height: 1.4;}
.small, small {font-size: .925em; line-height: 1.3;}
.medium {font-size: 1.125em; line-height: 1.3;}
.large {font-size: 1.25em; line-height: 1.4;}
.larger {font-size: 1.5em; line-height: 1.3;}

/* Capitales et petites capitales */

.caps {text-transform: uppercase;}
.small-caps {font-variant: small-caps;}

/* Alignement de texte */

.aleft {text-align: left;}
.acenter {text-align: center;}
.aright {text-align: right;}

/* Titres */

h1, .h1 {
    font: bold 3em/1 sans-serif;
    color: #333;
    margin-bottom: .33em;
}

h2, .h2 {
    font: normal 1.8em/1.125 serif;
    color: #555;
    margin-bottom: 1em;
}

h3, .h3 {
    font: bold 1.25em/1.4 serif;
    color: #555;
    margin-bottom: 1em;
}

h4, .h4 {
    font: bold 1em/1.5 serif;
    margin-bottom: 1em;
    color: #222;
}

h5, .h5 {
    font: bold 1em/1.5 serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

h6, .h6 {
    font: bold .925em/1.2 'Helvetica Neue', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Liens */

a {color: #325c7c; }
a:visited {}
a:hover {}
a:focus {}
a:active {}

/* Paragraphes, listes */

p, ul, ol {
    margin-bottom: 1.5em;
}

ol {
    list-style-type: decimal;
}

ol, ul {
    padding-left: 1.8em;
}

ul ul {
    list-style-type: circle; 
}