/* Preload images */
body:after{
    display:none;
    content:
    url("../img/home.png")
    url("../img/user.png")
    url("../img/back.png")
    url("../img/reset.png")
    url("../img/Menu-125x125.png")
    url("../img/logo_new_sansBord.png")}

#newHeader{
    width: 100%;
    height: 80px;
    z-index: 20;
    position: fixed;
    background-color: white;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: row;
}

#colonneGauche,#colonneDroite{
    width: calc(100% / 3 - 10px);
    display: flex;
    align-content: center;
    align-items: center;
}

#colonneGauche{
    margin-left: 10px;
    flex-direction: row;
}

#colonneDroite{
    margin-right: 10px;
    flex-direction: row-reverse;
}

#colonneCentre{
    position: relative;
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    margin-bottom: 5px;
}

#newHome,#newUser,#newBack,#newReset,#newBurger{
    width: 30px;
    height: 45px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#newHome{background-image: url("../img/home.png")}
#newBurger{background-image: url("../img/Menu-125x125.png")}
#newUser{background-image: url("../img/user.png")}
#newBack{background-image: url("../img/back.png")}
#newReset{
    background-image: url("../img/reset.png");
    margin-left: 10px;
}

#newTitre{
    position: relative;
    text-align: center;
    text-decoration: underline;
    width: 100%;
    height: calc(100% / 2);
    font-size: 28px;
    color: #3498db;
}

#newVersion{
    position: fixed;
    top: 55px;
    left: calc(50% + 65px);
    font-size: 11px;
}

#newLogo{
    width: 100%;
    height: calc(100% / 2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px 22px;
    background-image: url("../img/logo_new_sansBord.jpg");
}

#newUserInitiales{
    cursor: pointer;
    text-align: right;
    margin-right: 5px;
    text-transform: uppercase;
    color: #3498db;
    font-size: 22px;
}

@media (max-width: 440px) { 
    #newLogo{
        background-size: 100px 18px;
    }

    #newTitre{
        font-size: 24px;
    }

    #newVersion{
        top: 50px;
        left: calc(50% + 55px);
        font-size: 10px;
    }
}