html, body {
    margin: 0;
    padding: 0;
}

body {
    background: url(../images/apbleu.jpg);  /* url(../images/aprouge.jpg) - url(../images/apjaune.jpg) - url(../images/apnoir.jpg) - url(../images/apvert.jpg) */
   /* background: radial-gradient(#ffffff 20%, #00A8D2 40%);*/
    background-repeat: repeat;       
   /*  MARGIN-TOP: 5px;
    MARGIN-LEFT: 5px;
    MARGIN-RIGHT: 5px;
    MARGIN-BOTTOM: 0px;
    border: 10px solid rgb(0, 255, 0); */
}

header {
    /* text-transform: uppercase; */ /*passe le menu en majuscule*/
    background-color: #FFF;      
    padding: 10px 10px 10px 10px; /* H D B G*/
    box-shadow: 0 1px 16px rgba(0, 0, 0, .4);   /*box-shadow: [horizontal] [vertical] [color];*/
    margin-bottom:0px;
               /* ombre interne */
   -moz-box-shadow:    inset 0 0 10px #000000;
   -webkit-box-shadow: inset 0 0 10px #000000;
   box-shadow:         inset 0 0 10px #000000;
}

nav {
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
}

/* ===============================
   Structure globale
   =============================== */
#global {
    width: 100%;
    margin: auto;
    padding_top: 0px;
    display: flex;              /* place les 3 blocs côte à côte */
    align-items: stretch;       /* les étire à la même hauteur */
    justify-content: space-between;
    flex-wrap: nowrap;          /* empêche le retour à la ligne */
}

/* ===============================
   Colonne gauche
   =============================== */
#sidebar-gauche {
    width: 40%;
    background: #000;
    background-size: cover;
    color: white;  
    padding: 0px;
    border-radius: 0px 0px 0px 0px;  /* gauche H et gauche D */
    padding-bottom:20px;
}

/* ===============================
   Contenu central
   =============================== */
#contenu {
    width: 45%;
    background: #000;
    background-size: cover;
    color: white; 
    padding: 0px;
    border-radius: 0px 0px 0px 0px; /* aucun angle */
}

/* ===============================
   Colonne droite
   =============================== */
#menu-droite {
    width: 15%;
    margin-top: 0px; /* marge si tu veux qu’elle descende un peu */
    /*background: #000; */
    /*background: linear-gradient(#00A8D2, #FFFFFF); /* Dégradé + GIF */
    background: radial-gradient(circle, #FFFFFF, #00A8D2); /* Dégradé + GIF */
    /*background: url(../images/apbleu.jpg); /* arriere plan */
    color: white; 
    padding: 0px;
    border-radius: 0px 0px 0px 0px;/*haut D haut G */
}  

#logomenu {
    display: inline-block;                                           
    background: url(../images/logoreliefmenuP1.jpg) center no-repeat;
    width: 110px; /*76*/
    height: 83px; /*57*/
    padding-top:0px;
    }

#letitre_OLD {
    text-align:left;
    padding-left:10px;
    font-size:54px;/*54*/
    color:#000000;/*FFD700*/
    font-family: cloisterblack;
    font-weight: normal;
    font-style: normal;
    text-shadow: 6px 2px 5px grey, -6px -2px 3px white; /*Décalage de l’ombre vers la droite  Décalage de l’ombre vers le bas  Valeur du flou de l’ombre  Couleur de l’ombre */
    /* text-shadow: -1px -1px grey, 6px 2px #C0C0C0 ; */

    /* box-shadow: 0 1px 16px rgba(0, 0, 0, .4); */
    /* background-color: rgba(0, 0, 0, .4); */
}

#letitre {
    text-align: left;
    padding-left: 10px;
    font-size: 54px;            /* ? 42réduit l'effet loupe */
    line-height: 1;             /* FIX hauteur */
    color: #000000;
    font-family: cloisterblack, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    text-shadow: 6px 2px 5px grey, -6px -2px 3px white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

#logogauche {
    display: inline-block;
    background: url(../images/logoreliefPP.gif) center no-repeat;
    width: 191px;
    height: 144px;
    }

li {
    display: inline-block;
    margin-left: 0px;
    border-radius:10px;
    font-size: 25px;
    color:#000000;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
.button {
    text-transform: uppercase; 
    float: right;
    margin-top: -16px;
    line-height: 84px;
    height: 84px;/*84*/
    text-decoration: none;
    padding: 0 16px;
}
.button-sign-up {
    background-color: #EEE;
}

#hamburger, #hamburger-content {
    display: inline;
}

#hamburger-button {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 30px;
    vertical-align: top;
    padding-bottom:0px;
    padding-top: 0px;
    /* line-height: 47px; */
    float: right;
    margin-right: 2px;
}

#hamburger-overlay {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}

#hamburger-sidebar { /* style de la side bar */
    display: none;
    position: fixed;
    width: 40%; /*  26% - 84% origine largeur du recouvrement du menu avec hamburger*/
    z-index: 20;
    height: 70%; /* hauteur du menu slide*/
    top: 0;
    left: 0;                
    /* background-color: #FFF; */
    background-color: rgba(255, 255, 255, .8);  /* transparence du fond du menu hamburger */
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .2s ease-out;  
    border-bottom-right-radius: 20px; 
    border-top-right-radius: 20px;
}
#hamburger-sidebar li {
    display: block;
}
#hamburger-sidebar-header { 
    height:40px;  /* espace haut du menu */

     /* background: url(../images/sidebar-header.png) center; */
    /* background: url(../images/Logo_aviva.jpg) center no-repeat;*/
    /* background-size: cover; */
   /* padding-top:25px; */
   /* padding-bottom:25px;*/
}
#hamburger-sidebar-body {
    /* padding: 0px 0px 0px 0px; */
    padding: 16px 8px;
}

.legende
{
FONT-SIZE: 10pt;
color: #000000; /* E4E4E4 */
FONT-FAMILY: Verdana, Arial, Helvetica;
text-align: center;
}

.adhesanuel
{
background-color:#000000;
color:#00FF00;
font-weight:bold;
font-size: 16px;
text-align:center;
padding-right:10px; 
padding-bottom:10px;
padding-left:10px; 
padding-top:10px;
border-radius: 20px;
}

.texmembre
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
font-style : normal;
text-align: center;
color: #00FFFF;
}

.textbonomeneige {
   text-align:center;
    font-size:22px;
    FONT-FAMILY: Times new roman, Arial, Verdana, Helvetica;
    font-weight: normal;
    font-style: italic;
    vertical-align:top;
    padding-top:0px;
    color:#FFFFFF;
    border: 0px solid rgb(255, 0, 0);
    }

.textbonomeneige1 {
   text-align:center;
    font-size:16px;
    FONT-FAMILY: Times new roman, Arial, Verdana, Helvetica;
    font-weight: normal;
    font-style: normal;
    vertical-align:top;
    padding-top:0px;
    color:#FFFFFF;
    border: 0px solid rgb(255, 0, 0);
    }

.bonomeneige {
    width: 167px;
    height: 208px;
    }

.halloweenFU {
    width: 149px;
    height: 208px;
    }

.textmotocaranaval {
   text-align:center;
    font-size:22px;
    FONT-FAMILY: Times new roman, Arial, Verdana, Helvetica;
    font-weight: normal;
    font-style: italic;
    padding-top:0px;
    color:#FFFFFF;
    border: 0px solid rgb(255, 0, 0);
    }
.motocaranaval {
    width: 177px;
    height: 118px;
    }
.motohalloween {
    width: 250px;
    height: 193px;
    }

.textmerci {
   text-align:center;
    font-size:28px;
    FONT-FAMILY: Times new roman, Arial, Verdana, Helvetica;
    font-weight: normal;
    vertical-align:top;
    padding-top:0px;
    color:#FFFFFF;
    border: 0px solid rgb(255, 0, 0);
    }

.alerte
{
    MARGIN-TOP: 0px;
    FONT-WEIGHT: normal;
    FONT-SIZE: 20pt;
    MARGIN-BOTTOM: 0px;
    COLOR: #FF0000;
    TEXT-ALIGN:center;
    FONT-FAMILY: Times new roman, Arial, Verdana, Helvetica;
}

.tabloparchemin {
    width:350px;
    background-color:#000000;
    }

.parchemin {
    background: url(../images/parchemin4.1PPP.jpg) center no-repeat;
    width: 100%;
    height: 187px;
    margin:auto;
    }

.textederoulantpac{
text-align:left;
vertical-align:top;
padding-top:29px;
padding-left:35px;
padding-right:35px;
padding-bottom:0px;
FONT-FAMILY: Lobster,Comic Sans MS,cursive;
FONT-SIZE: 14pt;
color:#000000;
width: 300px;
height: 110px;
}

#letitreinscrparade {
    text-align:center;
    font-size:18px;/*54*/
    color:#FFD700;/*FFD700*/
    font-family: Times,cloisterblack;
    font-weight: bold;
    font-style: italic;
    padding-right:10px;
    /*text-shadow: -1px -1px black, 3px 2px #000000 ;  /*Décalage de l’ombre vers la droite  Décalage de l’ombre vers le bas  Valeur du flou de l’ombre  Couleur de l’ombre */

    /* box-shadow: 0 1px 16px rgba(0, 0, 0, .4); */
    /* background-color: rgba(0, 0, 0, .4); */
}
#anneeinscrparade {   
    text-align:left;
    padding-left:10px;
    font-size:12px;/*54*/
    color:#FFD700;/*FFD700*/
    FONT-FAMILY: Verdana;
    font-weight: bold;
    font-style: normal; 
    padding-top:40px;/*60*/
    /*text-shadow: -1px -1px black, 3px 2px #000000 ; */  /*Décalage de l’ombre vers la droite  Décalage de l’ombre vers le bas  Valeur du flou de l’ombre  Couleur de l’ombre */

    /* box-shadow: 0 1px 16px rgba(0, 0, 0, .4); */
    /* background-color: rgba(0, 0, 0, .4); */
}

.ap_tablo {
    background: url(../images/apnoir.jpg); /*(images/aprouge.jpg) (images/apjaune.jpg) (images/apbleu.jpg*/)
    background-repeat: repeat;
    MARGIN-TOP: 0px;
    MARGIN-LEFT: 0px;
    MARGIN-RIGHT: 0px;
    MARGIN-BOTTOM: 0px;
}
.Adhes
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
font-style : normal;
text-align: center;
color: #00FFFF;
}

.titreAdhes
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
font-style : normal;
text-align: center;
color: #FFFF00;
border: 0px solid rgb(255,255,255);
}

.compteur
{
background: #000000;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
margin-top: 200px;
color: #FF0000;
}

.perdu
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #FFFFFF;
}

.amenag
{
    FONT-SIZE: 11pt;
    color: #00CCFF;
    FONT-FAMILY: Arial, Tahoma, Verdana, sans-serif ;
    FONT-WEIGHT: normal;
}
.tabloformulaire
{
width:60%;
}

.titreformulaire
{
font-family: Times new roman, Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 34px;
font-weight: bold;
font-style : italic;
text-align: center;
color: #FFFFFF;
}

.extrexcel
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
font-style : normal;
text-align: center;
color: #FFFFFF;
border: 1px solid rgb(0,255,0);
text-decoration:none; 
background-color: #000000;
}
.attnformulaire
{
font-family: Times new roman, Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
font-style : italic;
text-align: center;
color: #FFFF00;
}
.textformulaire
{
font-family: Times new roman, Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: normal;
font-style : italic;
text-align: center;
color: #FFFFFF;
} 
.textcnil
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: normal;
font-style : normal;
text-align: left;
color: #FFFFFF;
}

.titresortie3mois
{
FONT-SIZE: 12pt;
COLOR: #FFD700;
FONT-FAMILY: Verdana, Arial, Helvetica;
TEXT-ALIGN: center;
FONT-WEIGHT: normal;
}

.lesortie
{
FONT-SIZE: 8pt;
COLOR: #FFFFFF;
FONT-FAMILY: Verdana, Arial, Helvetica;
TEXT-ALIGN: center;
FONT-WEIGHT: normal;
/* border: 1px solid rgb(255,255,255); */
}
.menumaj
{
background: #000000;
font-family: Verdana,Tahoma,Arial,Helvetica,Sans-serif;
font-size: 12px;
font-weight: normal;
color: #00FF00;
border: 3px solid rgb(255,0,0);
WIDTH: 150 px;
height: 25px;
text-align: center;
padding:2;
text-decoration:none
}

.menugestion
{
font-weight: normal;
FONT-SIZE: 10pt;
color: #FFFFFF;
background-color: #000000;
TEXT-DECORATION: none
}

.menugestionmdp
{
font-weight: normal;
FONT-SIZE: 12pt;
color: #00FF00;
TEXT-DECORATION: none;
}


.titre
{
FONT-WEIGHT: bold;
FONT-SIZE: 20pt;
TEXT-ALIGN: center;
COLOR: #0808AD;
HEIGHT: 100px;
FONT-FAMILY: Times new roman,Arial, Verdana, Helvetica;
}


li {
    display: inline-block;
    margin-left: 0px;
    border-radius:10px;
    font-size: 25px;
    color:#000000;
    margin: 0;
    padding: 0;
    border: 0;      1
    font: inherit;
    vertical-align: baseline;
}
.button {
    text-transform: uppercase; 
    float: right;
    margin-top: -16px;
    line-height: 84px;
    height: 84px;/*84*/
    text-decoration: none;
    padding: 0 16px;
}
.button-sign-up {
    background-color: #EEE;
}

#hamburger, #hamburger-content {
    display: inline;
}

#hamburger-button {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 30px;
    vertical-align: top;
    padding-bottom:0px;
    padding-top: 0px;
    /* line-height: 47px; */
    float: right;
    margin-right: 2px;
}

#hamburger-overlay {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}

#hamburger-sidebar { /* style de la side bar */
    display: none;
    position: fixed;
    width: 40%; /*  26% - 84% origine largeur du recouvrement du menu avec hamburger*/
    z-index: 20;
    top: 0;
    left: 0;                
    /* background-color: #FFF; */
    background-color: rgba(255, 255, 255, .8);  /* transparence du fond du menu hamburger */
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .2s ease-out;
}
#hamburger-sidebar li {
    display: block;
}
#hamburger-sidebar-header {
     /* background: url(../images/sidebar-header.png) center; */
    /* background: url(../images/Logo_aviva.jpg) center no-repeat;*/
    /* background-size: cover; */
    /*height:80px;*/
   /* padding-top:25px; */
   /* padding-bottom:25px;*/
}
#hamburger-sidebar-body {
    /* padding: 0px 0px 0px 0px; */
    padding: 16px 8px;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;  
   box-shadow: 10px 10px 10px 4px rgba(119, 119, 119, 0.76);
  border-radius:40px;
  background-color: #2196F3;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto; /*auto*/
  float: left;
  width: 100%;
  border: 0;
  }

.encartpa
{
border: 0px solid rgb(8,8,173);
width:100%;
text-align:center;
vertical-align:top;
padding-top:10px;
padding-left:5px; 
padding-right:5px;
}

/* ===============================
   PARTIE RESPONSIVE
   =============================== */

/* ===============================
   RESPONSIVE OPTIMISE
   =============================== */

/* -------- Desktop large >1365px -------- */
@media (max-width: 1365px) {
    #logomenu {
        width: 110px;
        height: 83px;
        padding-top: 0;
    }

    #letitre {
        font-size: 44px;
    }

    #logogauche {
        width: 150px;
        height: 113px;
    }

    .textbonomeneige {
        font-size: 18px;
    }
    .bonomeneige {
        width: 117px;
        height: 146px;
    }
    .textmerci {
        font-size: 20px;
    }

    .tabloparchemin {
        width: 600px;
        margin: auto;
    }

    .parchemin {
        width: 100%;
    }

    .textederoulantpac {
        font-size: 14pt;
        width: 300px;
        height: 110px;
    }

    #letitreinscrparade {
        font-size: 20px;
    }

    #anneeinscrparade {
        font-size: 22px;
        padding-top: 50px;
    }

    li {
        font-size: 20px;
    }

    .tabloformulaire {
        width: 100%;
    }

    .titreformulaire {
        font-size: 24px;
    }

    .textformulaire {
        font-size: 14px;
    }
}


/*==============================
  Media Query pour écrans =1080px
===============================*/
@media (max-width: 1080px) {

    /* Hamburger menu */
/*     #hamburger-content { display: none; }
    #hamburger-button, #hamburger-sidebar,
    .hamburger-activated #hamburger-overlay { display: block; }
    .hamburger-activated #hamburger-sidebar { transform: translateX(0); } */

    /* Colonnes empilées */
    #global {
        /* flex-direction: column;
        align-items: stretch; */
    }

    #sidebar-gauche {
        width: 40%;
        margin-top: 0;
        border-radius: 0;
    }
    #contenu {
        width: 43%;
        margin-top: 0;
        border-radius: 0;
    }
    #menu-droite {
        width: 17%;
        margin-top: 0;
        border-radius: 0;
    }

    #logomenu { width: 130px; height: 98px; }
    #letitre { font-size: 50px; }
    #logogauche { width: 150px; height: 113px; }

    .textbonomeneige { font-size: 14px; }
    .bonomeneige { width: 67px; height: 83px; }
    .textmerci { font-size: 14px; }

    .tabloparchemin { width: 100%; margin: auto; }
    .parchemin { width: 250px; height: 134px; }

    .textederoulantpac { font-size: 10pt; width: 200px; height: 110px; }
    #letitreinscrparade { font-size: 14px; }
    #anneeinscrparade { font-size: 18px; padding-top: 28px; }

    li { font-size: 15px; }
    .titreformulaire { font-size: 14px; }
    .textformulaire { font-size: 14px; }
}



/* -------- Tablette <=1024px -------- */
@media (max-width: 1024px) {
    /* Hamburger menu */
    #hamburger-content { display: none; }
    #hamburger-button, #hamburger-sidebar,
    .hamburger-activated #hamburger-overlay { display: block; }
    .hamburger-activated #hamburger-sidebar { transform: translateX(0); }

    /* Colonnes empilées */
    #global {
        flex-direction: column;
        align-items: stretch;
    }

    #sidebar-gauche,
    #contenu,
    #menu-droite {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    #logomenu { width: 130px; height: 98px; }
    #letitre { font-size: 50px; }
    #logogauche { width: 150px; height: 113px; }

    .textbonomeneige { font-size: 14px; }
    .bonomeneige { width: 67px; height: 83px; }
    .textmerci { font-size: 14px; }

    .tabloparchemin { width: 100%; margin: auto; }
    .parchemin { width: 250px; height: 134px; }

    .textederoulantpac { font-size: 10pt; width: 200px; height: 110px; }
    #letitreinscrparade { font-size: 14px; }
    #anneeinscrparade { font-size: 18px; padding-top: 28px; }

    li { font-size: 15px; }
    .titreformulaire { font-size: 14px; }
    .textformulaire { font-size: 14px; }
}

/* -------- Smartphone <=767px -------- */
@media (max-width: 767px) {
    /* Hamburger menu */
    #hamburger-content { display: none; }
    #hamburger-button, #hamburger-sidebar,
    .hamburger-activated #hamburger-overlay { display: block; }
    .hamburger-activated #hamburger-sidebar { transform: translateX(0); }

    /* Colonnes empilées */
    #global {
        flex-direction: column;
        align-items: stretch;
    }

    #sidebar-gauche,
    #contenu,
    #menu-droite {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    #logomenu { width: 96px; height: 72px; }
    #letitre { font-size: 20px; }

    .textbonomeneige { font-size: 14px; }
    .bonomeneige { width: 67px; height: 83px; }
    .textmerci { font-size: 14px; }

    .tabloparchemin { width: 100%; margin: auto; }
    .parchemin { width: 250px; height: 134px; }

    .textederoulantpac { font-size: 10pt; width: 200px; height: 110px; }
    #letitreinscrparade { font-size: 14px; }
    #anneeinscrparade { font-size: 18px; padding-top: 28px; }

    li { font-size: 15px; }
    .titreformulaire { font-size: 14px; }
    .textformulaire { font-size: 14px; }
}

