.menu {
    position:fixed;top:10px;left:10px;
}
.noAldo  #zoneTab_aLdo{
    display:none ! important;
}
/****************************************************************/
/* LOADER PROGRESS BAR */
/****************************************************************/
#SoInitloader  {
    margin: 50px auto;
    width: 300px;
}
#SoInitloader progress[value] {
    width: 250px;
    height: 20px;
}
#SoInitloader progress {
    width: 400px;
    height: 14px;
    margin: 50px auto;
    display: block;
    /* Important Thing */
    -webkit-appearance: none;
    border: none;
}

/* All good till now. Now we'll style the background */
#SoInitloader progress::-webkit-progress-bar {
    background: black;
    border-radius: 50px;
    padding: 2px;
    box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.2);
}

/* Now the value part */
#SoInitloader progress::-webkit-progress-value {
    border-radius: 50px;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
    background:
        -webkit-linear-gradient(45deg, transparent, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%),
        -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),
        -webkit-linear-gradient(left, #529024, #5ca028);

    /* Looks great, now animating it */
    background-size: 25px 14px, 100% 100%, 100% 100%;
    -webkit-animation: move 5s linear 0 infinite;
}

/* That's it! Now let's try creating a new stripe pattern and animate it using animation and keyframes properties  */

@-webkit-keyframes move {
    0% {background-position: 0px 0px, 0 0, 0 0}
100% {background-position: -100px 0px, 0 0, 0 0}
}
/* Prefix-free was creating issues with the animation */

#pages, .loginBlockForm {
    margin-top:10px ! important;
}
#fldEmail, #fldPassword {
    margin:5px 0 5px;
}

.loginBlockForm {
    margin-top:10px;
    display:none;
}
.loginBlockForm .msg {
    display:none;
}
