
/* GENERAL *******************************/

    html,body{
        margin: 0;
        border: 0;
        padding: 0;
        height: 1000px;
        font-family: 'Asap', sans-serif;
    }
    .page{
        position: fixed;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover; 
       background-size: cover;
       background-position: center center;
       overflow: hidden;
    }

    .page1{background-image: url(images/home.jpg);}
    .page2{background-image: url(images/batiment1.jpg);}
    .page3{background-image: url(images/batiment2.jpg);}
    .page4{background-image: url(images/batiment3.jpg);}
    .page5{background-color:#000}
    .page6{background-image: url(images/batiment1.jpg);}
    
    #header{
        background-color: rgba(4,4,4,0.82);
        border-bottom:9px solid #185fbd;
        position: fixed;
        width: 100%;
        z-index: 2;
    }
    #header ul{
        margin: 0;
        border: 0;
        padding: 0;
        font-size: 0px;
        text-align: center;
    }
    #header ul li{
        list-style-type: none;
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        position: relative;
        height: 50px;
        width: 150px;
    }
    #header ul li .fd{
        background-color: #185fbd;
        position: absolute;
        bottom: 0;
        left: 1px;
        width: 100%;
        height: 0;
        z-index: 1;
    }
    #header ul li a{
        position: absolute;
        z-index: 2;
        display: block;
        height: 50px;
        line-height: 50px;
        width: 150px;
        text-align: center;
        color:#fff;
        text-decoration: none;
        border-left: 1px solid rgba(255,255,255,0.31);
    }
    #header ul li:last-child a{
        border-right: 1px solid rgba(255,255,255,0.31);
    }
    .content{
        width: 900px;
        margin: 0 auto;
    }
    .clear{
        clear: both;
    }  

/* LOADER *******************************/

    #loader{
        position: fixed;
        height: 100%;
        width: 100%;
        z-index: 999;
    }
    #loader .barre{
        height: 5px;
        position: absolute;
        top: 50%;
        margin-top: -2px;
        width: 0;
        background-color: #fff;
        z-index: 2;
    }
    #loader .haut,
    #loader .bas{
        background-color: #000;
        height:50%;
        position: absolute;
        width: 100%;
    }
    #loader .haut{
        top:0;
    }
    #loader .bas{
        bottom:0;
    }
    #loader .centre{
        width: 400px;
        height: 500px;
        top: 50%;
        left: 50%;
        margin-top: -250px;
        margin-left: -200px;
        position: absolute;
        background-image: url(images/loader.png);
        background-repeat: no-repeat;
        background-position:  center center;
        opacity:0;
    }
    #loader .centre .titre{
        color:#fff;
        text-align:center;
        text-transform: uppercase;
        position:absolute;
        bottom: 70px;
        width: 100%;
    }
    #loader .image{
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background-image: url(images/loader_fond.png);
        background-repeat: no-repeat;
        background-position:  center center;
         -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
    }
