/* --------------------------------------------------------------

   layout.css
   Disposition des blocs principaux
   cf.: http://romy.tetue.net/structure-html-de-base

-------------------------------------------------------------- */

/* Elements principaux
------------------------------------------ */
body 
{ background-color:#B8CBD0;
}
.chapo {
  background-color:#B8CBD0;
  color:#344D59;
}
.arbo {color:black;
}
.spip_logo_site {background:rgba(255,255,255,0)}

.texte p {
   /** Le texte est justifié */
   text-align: justify; 
   /** On indente le texte de l'espace représentant 5 caractères */
   text-indent: 2em;
}

.texte p:first-letter {
   /** On augmente la taille de la première lettre */
   font-size: 100%;
}
#mobile-header {
    display: none;
}
@media only screen and (max-width: 767px){
    #mobile-header {
        display: block;
    }
}

/* fin */