@charset "UTF-8";

   

/* --- General Styles --- */
body, h1, h3, p {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 38px;
    color: #4e6a7b;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff; /* Fond blanc pour tout sauf la BannerArea */
}

h1 {
    font-size: 48px;
    color: #ac913b;
}

h3 {
    font-size: 30px;
    color: #6a4d4d;
    text-transform: uppercase;
}

a {
    color: #36C;
    text-decoration: none;
}

a:visited {
    color: black;
}

a:hover {
    color: #5872f4;
}

/* BannerArea */

.bannerArea {
	width: 100%;
	/*min-width: 100%;*/
	height: 150px;
	margin:0;
	background: #ffffff url(images/banner.jpg) no-repeat center top;
}
.bannerArea .container {
	position: relative;
	min-width: 100%;
	height: 155px;
	margin: 0 auto 0 auto;
	padding: 35px 0px 0px 0px;
	color: black;
	font-size: 12px;
}
.bannerArea .container .site_logo {
	position: absolute;
	min-width: 100%;
	height: 100px;
	background: url(images/logo.png) no-repeat 0 0;
	left: 20px;
	top:30px;
}
.bannerArea .container .site_date {
	position:absolute;
	left: 20px;
	top:160px;
	color: black;
	font-size: 12px;
}
/* --- Content Area --- */

.contentArea {
    min-width: 100%;
    background-color: #ffffff;
	display: block;
	/*display: flex;
    flex-direction: column; /* Aligne les sections verticalement */
}

.contentArea .container {
    min-width: 100%;
    padding: 0;
	margin: 0 0 0 5%;
	box-sizing: border-box;
    color: black;
}
.contentArea .container .left_col {
    min-width: 100%; /* Assure que l'élément prend toute la largeur */
    padding: 0; /* Réinitialise les marges intérieures */
    margin: 0; /* Réinitialise les marges extérieures */
    text-align: left; /* Alignement du texte */
    font-size: 16px; /* Taille de police adaptée */
    line-height: 1.5; /* Espacement entre les lignes */
    box-sizing: border-box; /* Inclut les marges/paddings dans la largeur totale */
}

.contentArea .container .right_col {
    min-width: 100%; /* Assure que l'élément prend toute la largeur */
    padding: 0; /* Réinitialise les marges intérieures */
    margin: 0; /* Réinitialise les marges extérieures */
    text-align: left; /* Alignement du texte */
    font-size: 16px; /* Taille de police adaptée */
    line-height: 1.5; /* Espacement entre les lignes */
    box-sizing: border-box; /* Inclut les marges/paddings dans la largeur totale */
}



/* .right_col { */
        /* order: -1; /* Déplace la colonne de droite en haut */ */
    /* } */
 /* .left_col { */
        /* order: 0; /* Place la colonne de gauche après */ */
    /* } */


    Assurer que tout prend 100% de la largeur disponible
 .left_col, .right_col {
        width: 100%; /* Chaque section occupe toute la largeur */
        float: none; /* Supprime le flottement qui cause des problèmes */
        padding: 10px; /* Ajoutez un espace interne pour l'esthétique */
        box-sizing: border-box; /* Inclut le padding dans la largeur totale */
    }

/* --- Footer Area --- */
.footerArea {
    width: 100%;
    height: 50px;
    /*background-color: #6a4d4d;*/
    color: black;
}

.footerArea .container {
    width: 100%;
    padding: 10px;
    text-align: center;
}

/* .clear_both { */
    /* clear: both; */
/* } */


 