body {
    background-color: #003C5B;
}
#pageloader {
    position: fixed;
    width: 100%;
    height: 100%; 
    top: 0;
    left: 0;
    background-color: #003C5B;
    z-index: 1500;
}
#pagebody {
    visibility: hidden;
}
.amcloader {
    position: fixed;
    width: 200px;
    height: 30px;
    text-align: center;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -100px;
}
.amcloader > div {
    background: url(../images/amclinks-smalllogo.jpg) 0 0 no-repeat;
    height: 27px;
    width: 30px;
    margin: 5px;
    display: inline-block;
    -webkit-animation: stretchdelay 1s infinite ease-in-out;
    animation: stretchdelay 1s infinite ease-in-out;
}
.amcloader .circ1 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.amcloader .circ2 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.amcloader .circ3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.amcloader .circ4 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.amcloader .circ5 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.amcloader .loading {
    font-family: 'OpenSans-Light-webfont';
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    margin: 20px
}
@-webkit-keyframes stretchdelay {
    0%, 40%, 100% { -webkit-transform: translateY(-10px) }  
    20% { -webkit-transform: translateY(-30px) }
}
@keyframes stretchdelay {
    0%, 40%, 100% { 
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
    } 20% {
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
    }
}
