﻿@charset "UTF-8";
/* CSS Document */

/* -------------------
		RESET
--------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, embed, img, ins, kbd,q, s,samp,small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,fieldset, form, label,legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{
	margin:0;    
	padding:0;    
	border:0;    
	outline:0;    
	font-size:100%;    
	vertical-align:baseline;    
	background:transparent;
}

article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section {	
	display: block;
}


html, body{
    height: 100%; /* pour que le footer colle au bas de la page */
}

html{
	font-size: 62.5%; /* equivaut à 10px */
}

body {	
	line-height: 1.5;
    font-family: arial;
    color: #37322f;
}

nav ul {
	list-style:none;
}

blockquote, q {    
	quotes:none;
}

blockquote:before, 
blockquote:after,
q:before, q:after { 
	content:'';    
	content:none;
}

ins {    
	background-color:#ff9;    
	color:#000;    
	text-decoration:none;
	}/* change colours to suit your needs */

mark {    
	background-color:#ff9;    
	color:#000;    
	font-style:italic;    
}
del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

/* Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */

sub,
sup {
    font-size: 60%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.75em;
}

sub {
    bottom: -0.25em;
}

hr {
	display:block;    
	height:1px;    
	border:0;    
	border-top:1px solid #cccccc;    
	margin:1em 0;    
	padding:0;
}

/* max values */
img, table, td, blockquote, code, pre, textarea, input, video {
	max-width: 100%;
}

/* you shall not pass */
textarea, table, td, th, code, pre, samp {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
}

b,
strong {
    font-family: ;
    font-weight: bold;
}

/* avoid top margins on first content element */
p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}
/* --------------------------------------------------------- */
	


/* switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/* clear */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}



/* couleur lorsque l'utilisateur selectionne une partie du texte */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}




/* -------------------
		Images
------------------- */

img {
	border: 0; /* enleve la bordure lorsque l'image est dans une balise 'a' */
    -ms-interpolation-mode: bicubic; /* ameliore la qualite quand redimentionne dans IE7 */
	height: auto;
	vertical-align: middle;
}
	
svg:not(:root) {
    overflow: hidden;	/* corrige overflow qui est oddly dans IE9 */
}

	


/* -------------------
		 List 
------------------- */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/* avoid margins on nested elements */
li p,
li ul,
li ol {
	margin-top: 0;
	margin-bottom: 0;
}


/* -------------------
		Form
------------------- */			

form {
    margin: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    border: 0; 				/* Correct color not being inherited in IE 6/7/8/9 */
    padding: 0;
    white-space: normal; 	/* Correct text not wrapping in Firefox 3 */
    *margin-left: -7px; 	/* Correct alignment displayed oddly in IE 6/7. */
}

textarea {
    font-family: inherit;
    overflow: auto; 		  /* Remove default vertical scrollbar in IE 6/7/8/9. */
    resize: vertical;
    vertical-align: top; 	  /* Improve readability and alignment in all browsers */
}

button,
input {
    line-height: normal;
}

/* Remove inner padding and border in Firefox 3+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    font-size: 100%; 		  /* Correct font size not being inherited in all browsers. */
    margin: 0; 				  /* Address margins set differently in IE 6/7, Firefox 3+, Safari 5, and Chrome. */
    vertical-align: middle;   /* Improve appearance and consistency in all browsers. */
    *vertical-align: middle;  /* Improve appearance and consistency in all browsers. */
}

button,
input[type="button"], /* Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. */
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button; /* clickable input types in iOS */
	*overflow: visible; 		/* Corrects inner spacing displayed oddly in IE7 */
}

/* Re-set default cursor for disabled elements. */
button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; 				 /* Corrects excess space around these inputs in IE8/9 */
	*width: 13px; *height: 13px; /* Corrects excess space around these inputs in IE7 */
}

input[type="search"] { -webkit-appearance: textfield; }

/* 'x' appears on right of search input when text is entered. This removes it */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

::-webkit-input-placeholder { color: #777; }
input:-moz-placeholder,
textarea:-moz-placeholder   { color: #777; }

/* Removes inner padding and border in FF3+ */
button::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
	border: 0;
	padding: 0;
}




/* -------------------
		 Table
------------------- */

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

table,
.table {
	max-width : 100%;
	table-layout: fixed;
	border-collapse: collapse;
	vertical-align: top;
}

.table {
	display: table;
}

caption {
	padding: 10px;
	color: #555;
	font-style: italic;	
}

tr > * + * {
	border-left: 1px solid #ccc;
}

th,
td {
	padding: .3em .8em;
	text-align: left;
	border-bottom: 1px solid #ccc;
}

td {
	color: #333;
}



/* -------------------
   	Print styles
------------------- */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}