/* Сдесь находятся основные CSS стили Preloder */

#preloder {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #fff;
    z-index: 1001;
}

.loader {
    position: relative;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin-top: -32px;
    margin-left: -32px;
    background: url('../preloder.gif') no-repeat 50% 50%;
    /*расположение (url) изображения gif и др. параметры*/
}