
/* Style principal*/
* {
    box-sizing: border-box;
}



article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display:block;
}

p{
    margin: 0;
}

body{ 
     background-color:#EEEEEE;
     color:#000000;
     text-align:center; 
     margin:0px;
     font-family: Arial, sans-serif;font-size: 14px;
}

/*ancre*/
a{
    color: #0066AA; 
    text-decoration: none;
    cursor: pointer;
}
a:hover{
    color: #00CCFF; 
    text-decoration: none
}

div{
    text-align:left;
}

hr{
    max-width: 400px; 
    margin-bottom: 20px;
}

strong{
    color:#0078F8;
}

header{
    width: 100%; 
    min-width: 980px;
    text-align: left; 
    margin-left: auto; 
    margin-right: auto;
    background: repeat-x;
    background-color:#0078F8;
    margin-bottom:15px;
}


header div#entete{
    width: 980px; 
    min-height: 120px; 
    text-align: left; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}


header div#nav{
    width: 100%; 
    text-align: center; 
    background-color:#444444; 
    overflow:hidden;
    height:31px;
}


footer{
    float: left;
    width:100%;
    min-width: 980px;
    min-height:400px;
    padding-top: 10px;
    background-color: #FFFFFF;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    color: #222222;
}

footer a{
    color: #0078F8; 
    text-decoration: none
}

footer a:hover{
    color: #0078F8; 
    text-decoration: underline;
}

article{
    background-color: #FFFFFF;
    border: #000000 solid 0px;
    width:980px;
    margin-top: auto;
    margin-bottom: auto;
    padding-left:30px;
    padding-right:30px;
    padding-top:40px;
    padding-bottom:40px;
    color: #222222;
    min-height: 500px;
    line-height: 25px;
    border-radius:10px;  
    text-align: justify;
}


article a{
    color: #0078f8; text-decoration: none;
}

article a:hover{
    color: #0078f8; 
    text-decoration: underline;
}


article#etroit{
    background-color: #FFFFFF;
    border: #000000 solid 0px;
    width:680px;
    margin-top: auto;
    margin-bottom: auto;
    padding-left:30px;
    padding-right:30px;
    padding-top:40px;
    padding-bottom:40px;
    color: #222222;
    min-height: 500px;
    line-height: 25px;
    border-radius:10px;
    float: left;
    text-align: justify;
}


article#etroit a{
    color: #0078f8; 
    text-decoration: none;
}

article#etroit a:hover{
    color: #0078f8; 
    text-decoration: underline;
}



section{
    margin-top: 8px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width:980px;
    text-align: left;
    border: #00AAFF solid 0px;
    padding: 5px 0px 10px 0px;
    min-height: 500px;
    height: 100%;
    overflow: hidden;
    border-radius:10px;
}

section h1{
    font-size: 22px;
    padding-top: 0px; 
    padding-bottom: 10px; 
    margin:0px 0px 0px 0px; 
    text-align: left; 
    color:#0078f8;
}

div#repere{
    width: 980px; 
    font-size:12px; 
    margin-right: auto; 
    margin-left: auto; 
    margin-top: 5px; 
    margin-bottom: 5px; 
    overflow: hidden; 
}

#repere span{color:#0078f8;}

#repere a{
    color:#0078f8;
    text-decoration:none;
    transition-property:text-decoration; 
    transition-duration:0.8s
}

#repere a:hover{
    color:#0078f8; 
    text-decoration:underline;
}


h2{
    color: #0078f8;
    font-size: 20px; 
    margin-top: 0px;
}

h3{
    color: #0078f8; 
    margin: 0;
}

h4{
    color: #0078f8; 
    margin: 0;
}

h5{
    color: #0078f8;
    padding-top: 0px;
    padding-bottom: 10px; 
    margin:0px 0px 0px 0px;
}

h6{color: #0078f8;}


input{
    background-color: #f4f4f4;
    border: 1px solid #0058ff;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px; 
    line-height:20px;
    height: 26px;
}


input[type='submit'],input[type='button']{
    background-color: #0078F8;
    border: 1px solid #0078F8;
    color:#FFFFFF;
    font-weight: bold;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px; 
    line-height:20px;
    height: 26px;
}


textarea{
    background-color: #f4f4f4;
    border: 1px solid #0058ff;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

/*Menu CSS3*/
nav{
    width: 100%;
    background-color: #888888;
    height: 36px;
    text-align: center;
}

nav ul{
    padding: 0; margin: 0;
    text-align: center;
}
nav ul li{
    display: inline;
    list-style: none;
}

nav ul li a{
    display:inline-block;
    margin: 0px;
    padding: 10px 20px;
    font-weight: bold;
    color: #FFFFFF;
    transition-duration: 0.8s;
    transition-property:all;
}

nav ul li a:hover{
   background-color:#FFFFFF;
   color: #0078f8;
}

nav ul li a.surbrillance{
    background-color:#FFFFFF;
    color: #0078F8;
}

nav ul li a.surbrillance:hover{
    background-color:#FFFFFF;
    color: #0078F8;
 }
 
 
 nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    border-bottom: 5px solid #888888;
}

    
.centre_images{
    width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center; 
}

.float_left{float:left}

.float_right{float:right}

.width_newsletter{
    width: 250px;
}

.espace_droit{
    margin-right: 40px; 
    margin-bottom:30px;  
    border-radius: 10px;
}

.espace_gauche{
    margin-left: 30px; 
    margin-bottom:30px; 
    border-radius: 10px;
}

.note{
    font-weight: bold; 
    color: #00AA00; 
    padding-left: 10px
}

.navigation{
    color: #FFFFFF; 
    text-decoration: none; 
}
.bouton_detail{
    width:100%; 
    margin-left:auto; 
    margin-right:auto; 
    text-align:right;
    overflow:hidden;
    padding-right:40px
}


/* Structutre du menu pour Mobile : Smartphone et Tablettes*/

#raccourci_menu{
    width:70px;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
    margin-right: 5px;
    background-color: #888888;;
    display:none;
    position: fixed;
    color:#FFFFFF;
    text-align: center;
    border-radius: 10px;
    left: 10px;
    box-shadow: 3px 3px 2px #000000;
}



#raccourci_menu div{
    margin: auto;
    text-align: center;
    display: inline;
}

#raccourci_menu div a{
    color: #FFFFFF;
    font-weight: bold;
}

#raccourci_menu div a:hover{
    color: #FFFFFF;
    text-decoration: none;
}

#menu_mobile{
    background-color: #888888;
    position: fixed;
    visibility: hidden; 
    margin:10px;
    border-radius: 10px;
    padding: 15px 0px 15px 0px;
    opacity: 0;
    box-shadow: 3px 3px 2px #000000;
    z-index: 1000;
}

#menu_mobile a{
    color: #FFFFFF;
    display: block;
    padding: 4px 15px 4px 15px;
    font-weight: bold;
    background-color: #888888;
    transition-duration: 0.8s;
    transition-property: all;
    
}

#menu_mobile a:hover{
    color: #0078F8;
    background-color: #FFFFFF;
}





#filtre, #fade{ /*--Masque opaque noir de fond--*/
    display: none; /*--masqué par défaut--*/
    background: #000;
    position: fixed; left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: .40;
    z-index: 1000;
}
.popup_block{
    display: none; /*--masqué par défaut--*/
    text-align:center;
    background: #fff;
    padding: 20px;
    border: 2px solid #444444;
    color:#444444;
    float: left;
    font-size:14px;
    font-weight:bold;
    position: fixed;
    top: 50%; left: 50%;
    z-index: 1001;


    box-shadow: 0px 0px 20px #000;
    /*--Coins arrondis en CSS3--*/

    border-radius: 10px;
}

.popup_block a{
    color: #444444; 
    text-decoration: none;
    font-weight:normal
}

.popup_block a:hover{
    color: #444444; 
    font-weight:normal;
    text-decoration: underline
}


#news_suivante{
    float:right; 
    color:#0078f8; 
    width:250px; 
    text-align:right;
    padding-right:10px;
}

#news_precedente{
    float:left; 
    color:#0078f8; 
    width:250px;
    padding-left:10px;
}

.body_editeur{
    background-color:#FFFFFF;
    color:#222222; 
    font-family: Arial, sans-serif;
    font-size: 14px;
}

#logo{
    border-width:0px; 
    margin-top: 15px; 
    float: none
}


/*Signalétique de chargement Ajax*/

div#ajax_loading{ 
    background-image:url('../image/ajax-loader.gif');
    position:absolute;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    visibility:hidden;
    height:31px;
    width:31px;
    z-index:99;
} 

div#ajax_fin_chargement{
    background-color: #FFFF00;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    visibility:visible;
    color: #000000;
    width: 600px;
    height: 80px
}

div#message_questionnaire{
    border: #008787 solid 4px;
    position:absolute;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    visibility:hidden;
    width:600px;
    z-index:99;
    background-color: #FFFF00;
    color: #333333;
    font-weight: bold;
    padding: 10px 10px 10px 10px;
    border-radius:10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.ajax_loading_visible{ 
    visibility:visible;
} 



.menu_droit{
    background-color: #888888;
    border: #000000 solid 0px;
    width:280px;
    margin-top: auto;
    margin-bottom: auto;
    padding:30px 0px 30px 0px;
    color: #222222;
    min-height: 500px;
    line-height: 25px;
    border-radius:10px;
    float: right;
}

.menu_droit a{
    background-color: #888888;
    color:#FFFFFF;
    text-decoration:none;
    padding: 5px;
    transition-property: all;
    transition-duration: 0.8s;
    width: 100%;
    display: block;
}

.menu_droit a:hover{
    background-color: #FFFFFF;
    color:#0078F8;
    text-decoration:none;
}



.lien_nav{
    color:#FFFFFF;
    text-decoration:none;
}

.lien_nav:hover{
    color:#00FFFF;
    text-decoration:none;
}



.lien{
    color:#0078f8;
    text-decoration:none;
}

.lien:hover{
    color:#0078f8;
    text-decoration:underline;
}



.lien:visited{
    color:#00AAAA;
    text-decoration:none;
}

.lien_pied_page{
    color:#FFFFFF;
    text-decoration:none;
}

.lien_pied_page:hover{
    color:#00FFFF;
    text-decoration:none;
}


.lien_favori{
    color:#FFFFFF;
    font-weight: bold;
    text-decoration:none;
}

.lien_favori:hover{
    color:#00FFFF;
    font-weight: bold;
    text-decoration:none;
}

.lien_favori:visited{
    color:#FFFFFF;
    font-weight: bold;
    text-decoration:none;
}

.bouton{
    background-color: #0078F8;
    font-weight: bold;
    color: #FFFFFF;
    height: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}


.erreur_saisie{
    border-color: #FF0000;
    background-color: #FFFFAA
}

.erreur_zone{
    border-color: #FF0000; 
    background-color: #FFFFAA;
}
erreur_label{
    color: #FF0000; 
    visibility: visible;
}

.zone_saisie{
    background-color: #FFFFFF;
}

.taille_adresse{
    background-color: #FFFFFF;
    width:200px
}



.menu_droit h4{
    color: #FFFFFF;
    margin: 0;
}

.date_parcours{
    color: #006060; 
    text-decoration: underline;
}

.titre_poste{
    color:#000000;
    font-weight: bold
}
.sous_rubrique_competence{
    color:#000000; 
    font-weight: bold;
}
.vocabulaire{
    color: #008787; 
    font-weight: bold; 
    text-decoration: none;
}
.definition{}
.obligatoire{color: #FF0000;}


#block_logo{
    width: 980px;
    text-align: center; 
    float: none;
    overflow: hidden;
}


#newsletter{
    overflow: hidden; 
    float: right; 
    padding-top: 20px;
}

#newsletter .bouton{
    width: 80px;
}

#newsletter input{
   width: 200px;
}


#bloc_formulaire{
    text-align:left;
    float:left;
    overflow: hidden;
}

#bloc_formulaire input{
    background-color: #f4f4f4;
    border: 1px solid #007788;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

#bloc_formulaire button{
    background-color: #007895;
    border: 1px solid #007895;
    border-radius: 5px;
    color: #ffffff; 
    font-weight: bold;
}

.row:after {
    content: "";
    clear: both;
    display: block;
}

[class*="col-"] {
    float: left;
    padding: 10px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}




.colonne_horaire
{
    margin-top:-16px;
    margin-bottom:12px;
    padding: 4px;
}

/*Media inférieur à 1000px */
@media (max-width: 1000px) {

    /*     passer tous les éléments de largeur fixe en largeur automatique */
     article,article#etroit,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,div,div#entete, div#navigue_menu {
        width: auto;
        float: none;
        margin: 0px auto 0px auto;
        padding: 0;
     }

     nav{
        display:none;
        visibility:hidden;
    }

    footer,header,div{min-width: 20px;}


    /*  fixer une largeur maximale  de 100 % aux éléments potentiellement problématiques */
     table, td, blockquote, code, pre, textarea, input, iframe, object, embed, video,nav,section,div,div#entete, header, div#navigue_menu, footer, article,ul {
         max-width: 100%;
     }

    /* conserver le ratio des images et empêcher les débordements de boîtes dûs aux border ou padding */
     img {
        height: auto; width: auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
     }

    /*  gestion des mots longs */
     textarea, table, td, th, code, pre, samp {
    /*   word-wrap: break-word;  passage à la ligne forcé */
        -webkit-hyphens: auto;  
        /*césure propre */
        -moz-hyphens: auto;
    /*   hyphens: auto;*/
     }
     code, pre, samp {
        white-space: pre-wrap; 
        /*   passage à la ligne spécifique pour les éléments à châsse fixe */
     }


     #raccourci_menu{
        display: block;
     }

     article{
         padding: 10px;
     }

    footer{
        padding: 10px;
     }

     header{margin-bottom:15px;}

     div#repere{
         width:95%;
         margin-top: 5px; 
         margin-bottom: 5px;
     }

     div#footer_blog{
        border-width:0px;
        text-align:left;
        width:auto;
        margin-bottom:20px;
     }

     #logo{
        float: none; 
        margin-left: auto; 
        margin-right: auto; 
     }

     /*  masquer les éléments superflus */

     .hide_mobile {
        display: none !important;
     }


     section{
         width: 95%;
     }

      article#etroit{
         padding: 10px;
     }

     .menu_droit{
        float:none;
        width:auto;
        margin-left:auto;
        margin-right:auto;
        margin-top:50px;
        height:auto;
        min-height:0px;
     }


    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}


@media (max-width: 640px) {

    /*     passer tous les éléments de largeur fixe en largeur automatique */
     article,article#etroit,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,div,div#entete, div#navigue_menu {
        width: auto;
        float: none;
        margin: 0px auto 0px auto;
        padding: 0;
     }

     nav{
        display:none;
        visibility:hidden;
    }

     footer,header,div{min-width: 20px;}

     li{display: block;}
    /*  fixer une largeur maximale  de 100 % aux éléments potentiellement problématiques */
     table, td, blockquote, code, pre, textarea, input, iframe, object, embed, video,nav,section,div,div#entete, header, div#navigue_menu, footer, article,ul {
         max-width: 100%;
     }
    /* conserver le ratio des images et empêcher les débordements de boîtes dûs aux border ou padding */
     img {
        height: auto; width: auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    /*   box-sizing: border-box;*/
     }

    /*  gestion des mots longs */
     textarea, table, td, th, code, pre, samp {
        /*   word-wrap: break-word;  passage à la ligne forcé */
        -webkit-hyphens: auto;  
        /*césure propre */
        -moz-hyphens: auto;
        /*   hyphens: auto;*/
     }
     code, pre, samp {
         white-space: pre-wrap; 
    /*   passage à la ligne spécifique pour les éléments à châsse fixe */
     }



     article{
         padding: 10px;
     }

    header{margin-bottom:15px;}

    footer{
        padding: 10px;
    }


     div#repere{
         width:95%;
         margin-top: 5px; 
         margin-bottom: 5px;
     }


     #logo{
         float: none; 
         margin-left: auto; 
         margin-right: auto; 
     }

     /*  masquer les éléments superflus */
     .hide_mobile {
         display: none !important;
     }


     section{
         width: 95%;
     }


     article#etroit{
         padding: 10px;
     }

     .menu_droit{
        float:none;
        width:auto;
        margin-left:auto;
        margin-right:auto;
        margin-top:10px;
        height:auto;
        min-height:0px;
     }

    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
    
}