/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,600');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,600');

/* Généralités **************************************************/
body {
	background-color: #eee;
	margin: 0;
	font-size: 16px;
	text-rendering: optimizeLegibility;
}

img {
   max-width: 100%;
   height: auto;
   border: none;
    vertical-align: bottom;
    outline: none;
}

sup {
	vertical-align: text-top;
	text-transform: none;
	font-size: .7em;
}

a {
	text-decoration: none;
}

header, #menu-wrapper {
	display: none;
	visibility: hidden;
    opacity: 0;
}

ul.spip {
	list-style: disc;
}


/* haut de page *************************************************/
#montreuil-home {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 26px;
	color: white;
	width: 40px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	background-color: #265e9b;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: none;
	line-height: 44px;
	cursor: pointer;
	z-index: 1000;
}
#montreuil-home:hover {
	background-color: #003e7e;
}

/* inamovibles ************************/
#bandeau {
	width: 100%;
	height: 180px;
	position: fixed;
	top: 0;
	background: #265e9b url(images/bg_header.jpg) top left no-repeat;
	background-size: auto 100%;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	z-index: 800;
}
#bandeau.cbp-af-header-shrink {
	height: 100px;
}

#bandeau .social {
	float: left;
	width: 40px;
	margin: 20px 0 0 30px;
	text-align: center;
}
#bandeau .social a i {
	display: inline-block;
	font-size: 36px;
	margin: .2em 0;
	color: white;
	text-shadow: 0 0 4px rgba(0,0,0,.8);
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#bandeau .social a:hover i {
	color: #b9eafb;
}

#bandeau .intro {
	float: right;
	text-align: center;
	margin: 20px 40px 0 0;
	font: 300 1em 'Roboto', sans-serif;
	color: white;
	letter-spacing: 1px;
}
#bandeau .intro span.slogan {
	display: table-cell;
	vertical-align: middle;
    color: white;
}
#bandeau .intro p.ligne1 {
	background-color: #265e9b;
	padding: 6px;
	border-radius: .4em;
    color: white;
}
#bandeau .intro span.nom {
	font-size: 2em;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #b9eafb;
}
#bandeau .intro span.logo {
	display: table-cell;
	height: 140px;
	width: auto;
}
#bandeau .intro span.logo img {
	height: 100%;
	width: auto;
	margin: 0 0 0 20px;
}

/* menu *************************/

.menu {
	position: fixed;
	top: 180px;
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 70px;
	text-align: center;
	background-color: #265e9b;
	border-top: 4px solid white;
	border-bottom: 4px solid white;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	z-index: 1000;
}
#menu-montreuil, #menu-montreuil ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
#menu-montreuil li.item {
	display: inline-block;
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	color: white;
	width: 25%;
	text-align: center;
	text-transform: uppercase;
	padding: .5em 10px;
	border-right: 1px solid white;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	z-index: 10000;
}
#menu-montreuil li.item:hover {
	background-color: #003e7e;
}
#menu-montreuil li.item:first-child {
	border-left: 1px solid white;
}
#menu-montreuil li.item a {
	color: white;
	text-decoration:none;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#menu-montreuil li.item a.on {
	color: #b9eafb;
}

#menu-montreuil ul {
	position: absolute;
	z-index: 10000;
	max-height:0;
	left: 0;
	right: 0;
	overflow: hidden;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#menu-montreuil li:hover ul {
	max-height: 20em;
}
#menu-montreuil li:hover.item ul {
	opacity: 1;
}

#menu-montreuil li.item ul {
	background: #b9eafb url(images/bg_menu.png) bottom right no-repeat;
	background-size: 110px auto;
	margin-top: 9px;
	padding: 10px 0;
	opacity: 0;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#menu-montreuil li.item ul li a {
	color: black;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: .9em;
	line-height: 2em;
	-moz-transition: 0.2s;
	-webkit-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}
#menu-montreuil li.item ul li a:hover, #menu-montreuil li.item ul li a.on {
	color: #003e7e;
}
#menu-montreuil li.item ul hr {
	width: 80%;
	height: 1px;
	background-color: black;
	border: none;
}

.acces {
	position: fixed;
	top: 264px;
	width: 100%;
	text-align: right;
	margin: 0 0 1.5em 0;
	font: 600 1.2em 'Roboto Condensed', sans-serif;
	z-index: 1000;
}
.acces a {
	background-color: #e30404;
	padding: 5px 15px;
	border-radius: .2em 0 0 .2em;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent;
	text-decoration: none;
	color: white;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.acces a i, #actus .grille .plus a i {
	color: white;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.acces a:hover i, #actus .grille .plus a:hover i {
	color: #b9eafb;
}
.acces a:hover i {
	transform: rotateY(180deg);
}


#main {
	display: block;
	width: 96%;
	margin: 190px auto .5em auto;
	padding: 4em 0 5em 0;
	text-align: center;
	background: url(images/bg_main.png) bottom center no-repeat;
	background-size: 100% auto;
}

/******************************************* grille des actus ****************************************/

#actus .grille {
	width: 80%;
	margin: 0 10%;
	display: inline-block;
}

#actus .grille .descriptif {
	width: 100%;
	text-align: justify;
	font: 300 .95em 'Lato', sans-serif;
	margin: 0 0 4em 0;
}
#actus .grille .descriptif h2 {
	font: 600 1.8em 'Roboto Condensed', sans-serif;
	color: #003e7e;
	margin: 0 0 .5em 0;
}

#actus .grille div.carre {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: .4em .4em 0 0;
}
#actus .grille div.carre a span.image-actu img {
	position: relative;
	width: 100%;
	display: block;
	vertical-align: bottom;
	margin-bottom: 100px;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#actus .grille div.carre a:hover span.image-actu img {
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#actus .grille div.carre a:hover span.conteneur {
	background-color: #b9eafb;
}
#actus .grille div.carre a:hover span.titre-actu h4 {
	color: black;
}
#actus .grille div.carre a span.conteneur {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: white;
	padding: 0;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	-ms-transition: 1s;
	transition: 1s;
}
#actus .grille div.carre a span.titre-actu {
	display: block;
	position: absolute;
	top: 1.375rem;
	left: 50%;
	transform: translate(-50%,0);
	width: 90%;
	margin: 0;
	padding: 0;
}
#actus .grille div.carre a span.titre-actu p {
	font: 400 .8em 'Lato', sans-serif;
	color: black;
	line-height: 1;
	margin: 0;
}
#actus .grille div.carre a span.titre-actu h4 {
	font: 600 1.2em 'Roboto Condensed', sans-serif;
	color: #666;
	margin: 0 0 .3em 0;
	text-transform: uppercase;
	line-height: 1.1;
	-moz-transition: 0.6s;
	-webkit-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;
}
.grille div.carre-article, .grille-100 div.carre-article {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	overflow: hidden;
    text-align: left;
    background-color: white;
    border-radius: .3em;
}
.grille div.carre-article span.titre-actu h4, .grille-100 div.carre-article span.titre-actu h4 {
	font: 700 .9em 'Lato', sans-serif;
	color: white;
    background-color: #265E9B;
	margin: 0;
	text-transform: uppercase;
	line-height: 1.2;
    text-align: center;
    padding: 6px 12px;
}
.grille div.carre-article span.titre-actu p.chapo, .grille-100 div.carre-article span.titre-actu p.chapo {
    width: 90%;
	font: 700 .8em 'Lato', sans-serif;
	color: black;
	margin: .5em 5%;
    text-align: center;
}
.grille div.carre-article span.titre-actu p.desc, .grille-100 div.carre-article span.titre-actu p.desc {
    width: 90%;
	font: 400 .8em 'Lato', sans-serif;
	color: black;
	margin: 0 5% .3em 5%;
}
.grille div.carre-article span.titre-actu span.coordonnees, .grille-100 div.carre-article span.titre-actu span.coordonnees {
    display: inline-block;
    width: 90%;
	font: 400 .8em 'Lato', sans-serif;
	color: black;
	margin: .5em 0 0 0;
    background-color: #B9EAFB;
    padding: 10px 5%;
}
.grille div.carre-article span.titre-actu span.coordonnees a, .grille-100 div.carre-article span.titre-actu span.coordonnees a {
    color: #265E9B;
    font-weight: 700;
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.grille div.carre-article span.titre-actu span.coordonnees a:hover, .grille-100 div.carre-article span.titre-actu span.coordonnees a:hover {
    color: black;
}

#actus .grille .plus {
	display: inline-block;
	width: 100%;
	text-align: right;
	margin: .5em 0 1.5em 0;
	font: 600 1.2em 'Roboto Condensed', sans-serif;
	border-top: 2px dotted #555;
}
#actus .grille .plus a {
	background-color: #555;
	padding: 5px 15px;
	border-radius: 0 0 .2em .2em;
	text-decoration: none;
	color: white;
	-moz-transition: 0.2s;
	-webkit-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

span.logo-txt {
    float: right;
    display: inline-block;
    margin: 0 0 0 15px;
    width: 30%;
}

/*********************** fin de la grille *********************************************************/

#footer {
	width: 100%;
	display: block;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	color: black;
	background-color: #ddd;
	padding: 1em 0;
}

#footer strong {
	color: #003e7e;
	font-weight: 700;
}
#footer .grille-footer {
	display: inline-block;
	width: 75%;
	margin: 0 12.5%;
}
#footer .grille-footer .gauche, #footer .grille-footer .centre, #footer .grille-footer .droite {
	text-align: center;
}
#footer .grille-footer .gauche {
	font-size: .9em;
}
#footer .grille-footer .gauche a, #footer .grille-footer .droite a {
	color: #003e7e;
	text-decoration: none;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#footer .grille-footer .gauche a:hover, #footer .grille-footer .droite a:hover, #footer .grille-footer .droite a.on {
	color: black;
}

#footer .grille-footer .centre a img.width-1 {
	width: auto;
	height: 80px;
	display: inline-block;
	text-align: center;
	margin: 5px 0;
	opacity: .65;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#footer .grille-footer .centre a img.width-2 {
	width: auto;
	height: 60px;
	display: inline-block;
	text-align: center;
	margin: 5px 0;
	opacity: .65;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#footer .grille-footer .centre a:hover img.width-1, #footer .grille-footer .centre a:hover img.width-2 {
	opacity: 1;
}
hr {
	border: 0;
	height: 0;
	border-top: 2px dotted #999;
}

#footer .droite small {
	font-size: .75em;
}


/* pages intérieures ********************************************************************/

span.logo_rub {
    display: inline-block;
    position: relative;
    margin: 0 0 2em 0;
    z-index: 2;
    width: 100%;
    background-color: #fff;
}
span.logo_rub h2, #actus h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.6em;
	color: black;
	font-weight: 600;
	margin: 0;
	text-align: center;
    background-color: #fff;
    padding: .4em 0;
}
#actus h2 {
    margin-bottom: 1.5em;
}
h2 a {
    color: #265e9b;
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
h2 a:hover {
    color: #000;
}

#contenu {
	width: 90%;
	margin: 0 5%;
	display: inline-block;
	text-align: left;
}

#contenu span.logo-article {
    position: relative;
    z-index: 2;
    width: 100%;
    display: inline-block;
    margin-bottom: 1em;
}
#contenu span.logo-article img {
    width: 100%;
}
#contenu span.logo-article h2 {
    position: absolute;
    top: 1em;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    padding: 10px 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	color: black;
	font-weight: 600;
	margin: 0 0 1em 0;
	text-align: left;
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#contenu span.logo-article h2 small, #actus h2 small {
	font-size: .75em;
}
#contenu span.logo-article h2 a, #actus h2 a {
	color: #265E9B;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#contenu span.logo-article h2 a:hover, #actus h2 a:hover {
	color: #E30404;
}
#contenu span.logo-article:hover h2 {
    background-color: #eee;
}

#contenu .texte {
	color: black;
	font-family: 'Lato', sans-serif;
}
#contenu .texte .txt {
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
}
#contenu .texte .txt a {
    color: #265E9B;
    font-weight: 600;
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#contenu .texte .txt a:hover {
    color: #E30404;
}

#actus .grille-100 {
	width: 100%;
	margin: 0 auto;
	display: inline-block;
}

a .carre-cc {
    display: inline-block;
    width: 100%;
    padding: 2em 0;
    text-align: center;
    font: 600 2em 'Oswald', sans-serif;
    color: #265E9B;
    background-color: rgba(255,255,255,0.6);
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
a:hover .carre-cc {
    background-color: #fff;
    color: #000;
}


/* tableaux *****************************/
table.montreuil {
    width: 100%;
    margin: 0 0 1em 0;
}
table.montreuil td {
    width: 18%;
    padding: 1em 1%;
    text-align: center;
    vertical-align: center;
    background: white;
}
table.montreuil td strong {
    display: inline-block;
    background: #265E9B;
    padding: 10px 2.5%;
    margin-bottom: .5em;
    width: 95%;
    color: white;
    font-size: 1.1em;
}
table.montreuil td span.trombi {
    display: inline-block;
    width: 100%;
}

/* gestion documents ***************************/
#contenu a .docs {
    display: inline-block;
    position: relative;
    width: 150px;
    height: 150px;
    text-align: center;
    background: rgba(255,255,255,0.7);
    padding: 10px;
    margin: 0 0 1em 5px;
    border: 1px solid #265e9b;
    vertical-align: top;
    -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#contenu a .docs .content-doc {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#contenu a .docs .content-doc i.fas {
    font-size: 2.5em;
    color: #265e9b;
    display: inline-block;
    width: 100%;
    margin-bottom: .2em;
     -moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
#contenu a:hover .docs .content-doc i.fas {
    color: #E30404;
}
#contenu a .docs .content-doc span.titre-doc {
    font-size: .9em;
    font-family: Arial, Helvetica, sans-serif;
    color: #444;
    display: inline-block;
    width: 90%;
    margin: 0;
    padding: 0 5%;
    line-height: 1.2;
}
#contenu a:hover .docs {
    background: white;
    border: 1px solid #E30404;
}
.pagination {
	display: block;
	width: 100%;
	margin: 1em 0;
	font: 400 14px Arial, Helvetica, sans-serif;
	color: black;
}
.pagination strong.on {
	display: inline-block;
	color: white;
	background-color: #E30404;
	width: 24px;
	height: 22px;
	padding: 6px 2px 0 2px;
    text-align: center;
	font-weight: 600;
	border-radius: 14px;
}
.pagination a.lien_pagination {
	display: inline-block;
	color: white;
	background-color: #265e9b;
	width: 24px;
	height: 22px;
	padding: 6px 2px 0 2px;
    text-align: center;
	border-radius: 14px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.pagination a:hover.lien_pagination {
	background-color: #E30404;
}

.pics {
    text-align: center;
    background-color: #ddd;
    padding: 1em;
    margin-top: 1em;
    border-radius: .3em;
    -webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.pics img {
    display: inline-block;
}
.pics p {
    margin: .5em 0 0 0;
    font-size: .9em;
    color: #000;
}
.pics:hover {
    background-color: #F9B000;
}

/* formulaires *****************************/
.formulaire_actes .col-left {
    display: inline-block;
    width: 48%;
    margin: 0 2% 0 0;
    vertical-align: top;
}
.formulaire_actes .col-right {
    display: inline-block;
    width: 49.5%;
    vertical-align: top;
}
span.titre-form-med {
    display: inline-block;
    width: 90%;
    padding: 5px 5%;
    font: 400 1em Arial, Helvetica, sans-serif;
    color: black;
    background-color: white;
    margin: 1em 0 0 0;
    border: 1px solid #265e9b;
}
span.erreur {
    display: inline-block;
    width: 90%;
    padding: 5px 5%;
    font: 600 .9 Arial, Helvetica, sans-serif;
    color: white;
    background-color: #E30404;
    border-right: 1px solid #265e9b;
    border-left: 1px solid #265e9b;
}
.formulaire_actes h4 {
    display: inline-block;
    width: 90%;
    padding: 5px 5%;
    font: 400 1.2em Arial, Helvetica, sans-serif;
    color: white;
    background-color: #265e9b;
    margin: 2em 0 0 0;
}
.formulaire_actes select {
    background-color: #B9EAFB;
    display: inline-block;
    width: 100%;
    padding: 5px 5%;
    font: 400 .9em Arial, Helvetica, sans-serif;
    color: black;
    border-top: none;
    border-right: 1px solid #265e9b;
    border-bottom: 1px solid #265e9b;
    border-left: 1px solid #265e9b;
}
.formulaire_actes input.normal, .formulaire_actes textarea {
    border: none;
    background-color: #d6f3fd;
    display: inline-block;
    width: 90%;
    padding: 5px 5%;
    font: 400 .9em Arial, Helvetica, sans-serif;
    color: black;
    cursor: text;
    resize: vertical;
    border-top: none;
    border-right: 1px solid #265e9b;
    border-bottom: 1px solid #265e9b;
    border-left: 1px solid #265e9b;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.formulaire_actes input.normal:focus, .formulaire_actes textarea:focus, .formulaire_actes input.court:focus {
    background-color: white;
}
.formulaire_actes input.court {
    border: none;
    background-color: #d6f3fd;
    display: inline-block;
    width: 18%;
    padding: 5px 0 5px 5%;
    font: 400 .9em Arial, Helvetica, sans-serif;
    color: black;
    cursor: text;
    resize: vertical;
    border-top: none;
    border-right: 1px solid #265e9b;
    border-bottom: 1px solid #265e9b;
    border-left: 1px solid #265e9b;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
span.gris {
    display: inline-block;
    width: 90%;
    padding: 5px 5%;
    font: 400 1em Arial, Helvetica, sans-serif;
    color: #444;
    margin: 1em 0 0 0;
    border: 1px solid #265e9b;
}
.formulaire_actes input.spip_bouton {
    display: inline-block;
    padding: 8px 20px;
    font: 400 1.4em Arial, Helvetica, sans-serif;
    color: white;
    background-color: #265e9b;
    margin: .5em 0 0 0;
    cursor: pointer;
    border: none;
    border-radius: .2em;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.formulaire_actes input.spip_bouton:hover {
    background-color: #E30404;
}
p.formulaire_ok {
    margin: 0 0 1em 0;
    color: #E30404;
    font-weight: 600;
}

.formulaire_newsletter label {
    font: 400 1.2em 'Roboto';
    color: #000;
}
.formulaire_newsletter input.text {
    display: inline-block;
    border: 2px solid #265e9b;
    padding: 4px 10px;
    border-radius: .25em;
    background-color: #fff;
    color: #444;
    margin-left: 5px;
}
.formulaire_newsletter input.submit {
    display: inline-block;
    border: none;
    padding: 8px 12px;
    border-radius: .25em;
    background-color: #265e9b;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    transition: .25s ease;
}
.formulaire_newsletter input.submit:hover {
    background-color: #444;
}
p.reponse_formulaire_ok {
    font-size: 1.1em;
    color: #265e9b;
}

@media (max-width: 1200px) {

    #menu-montreuil li.item ul li a {
        font-size: .8em;
        line-height: 1.1;
    }
    
}

@media (max-width: 1080px) {
    
    #menu-montreuil li.item {
        font-size: 1.6vw;
        width: 29%;
    }

    #actus .grille {
        width: 96%;
        margin: 0 2%;
        display: inline-block;
    }
    
}

@media (max-width: 680px) {
    
    #bandeau .intro {
        margin: 20px 20px 0 0;
    }
    #bandeau .social {
        margin: 40px 0 0 20px;
    }
    #bandeau .intro span.logo img {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    
    #menu-montreuil li.item {
        font-size: 1.85vw;
        width: 28%;
    }
    
    .grille div.carre-article, #actus .grille div.carre, .grille div.carre-article, .grille-100 div.carre-article, a .carre-cc {
        margin-bottom: 1em;
    }
    
}

@media (max-width: 580px) {
    
    #main {
        margin: 50px auto .5em auto;
    }
    
    #contenu span.logo-article img {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    #contenu span.logo-article h2 {
        top: 1em;
        background-color: #fff;
    }
    
    #bandeau .intro {
        font: 300 .85em 'Roboto Condensed', sans-serif;
        letter-spacing: normal;
    }
    #bandeau .intro span.nom {
        letter-spacing: normal;
    }
    
    .menu {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    #menu-wrapper {
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    #main {
        width: 95%;
        margin: 120px 2.5% .5em 2.5%;
    }
    #main h2 {
        font-size: 1.2em;
        width: 90%;
        padding-right: 5%;
        padding-left: 5%;
    }
}