/* Formatage  plein ecran*/

/* Formatage  responsive design */
/* Base ecran 1280px * 800 px soit largeur page html 1262,8 x */
/* Police de base 16 px */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
 details, figcaption, figure, 
 hgroup, menu {
	display: block;
}

 /* Font family
 */
 
/* Merriweather */

 @font-face { font-family: Merriweather; src: url('fonts/merriweather/Merriweather-Regular.ttf'); } 
 @font-face { font-family: Merriweather; font-weight: bold; src: url('fonts/merriweather/Merriweather-Bold.ttf'); }
 @font-face { font-family: Merriweather; font-style: italic; src: url('fonts/merriweather/Merriweather-Italic.ttf'); }
 
/* Montserrat */
 
 @font-face { font-family: Montserrat; src: url('fonts/montserrat/Montserrat-Regular.otf'); } 
 @font-face { font-family: Montserrat; font-weight: bold; src: url('fonts/montserrat/Montserrat-Bold.otf'); }
 
/* Classe générale */

b {
	font-weight: bold;
}

i {
	font-style: italic;
}

button,
input,
select,
option,
textarea {
	color: #1a1a1a;
	font-family: Merriweather, Georgia, serif;
	font-size: 12px;
	font-size: 0.8rem;
	line-height: 1.75;
}

input[type="submit"]{
	color : #1A4680;
	cursor:pointer;
	border-radius: 0.3125rem;   		      /* 5px pour 16px(1rem) */
	box-shadow: 0.3125rem 0.3125rem 0.3125rem RGBa(0,0,80,0.5); /* 5px pour 16px(1rem) */
}

button{
	margin: 0.3125rem;	/* 5px pour 16px(1rem) */
	cursor:pointer;
	border-radius: 0.3125rem;   		      /* 5px pour 16px(1rem) */
	box-shadow: 0.3125rem 0.3125rem 0.3125rem RGBa(0,0,80,0.5); /* 5px pour 16px(1rem) */
}

.centree{
	clear:both;
	text-align:center;
}

a, .bleu_matsu{
	color: #1A4680;
 }
 
.vert_matsu{
	color: #4AAA16;
 }

.ligne{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	width: 98%;
	padding: 0.5rem;
 }

 .ligne_espace {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: flex-start;
	width: 98%;
	padding: 0.5rem;
 }
 	
.ligne_justifie {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 98%;
	padding: 0.5rem;
 }
 
/**
 * 2.0 - Typography
 */

body{
	width : 95.02772%; /* 1200px pour 1262,8px (1280) */
	margin: auto;
}

section {
	display: flex;
	flex-direction: column;
	
	color: #303030;
	font-family: Merriweather, Georgia, serif;

	font-size: 0.8rem ;
	font-weight:normal;
	text-align: justify;
	line-height: 1.75;
}

aside {
  height: 100%;
  height: 600px;
  
  background-color: #f2f2f2;
 
  Overflow: auto;
}

#map_canvas {
  height: 90%;
}

/* Formatage de la zone principale */
article {
	width:100%;   /* 960px pour 1200px  */
	
	margin-top:0px;
	margin-bottom:0px;
	margin-left: 1.25rem; /* 20px pour 16px(1rem) */
	padding: 0.5rem; /* 8px pour 16px(1rem) */

	overflow: auto;

}

p {
   margin-right: 1rem; /* 16px pour 16px(1rem) */
   margin-left:  1rem; /* 16px pour 16px(1rem) */
   text-align: justify;
  
   font-weight:normal;
}

/* Formatage du pied de page */
footer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	
	border-top-style: solid;
	border-top-color: gray;
	
	margin-top: 5px;
	font-size: 0.8rem;
	color: #303030;
	text-align: center;
}