/**********************************************
*             preloader                       *
**********************************************/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1000;
}
#pre_center {
    position: absolute;
}
#status {
    width: 60px;
    height: 60px;
    position: relative;
}
#pre_cross {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 0;
}
#top, #bottom {
    width: 2px;
    height: 1.438em;
    background-color: black;
}
#left, #right {
    width: 1.438em;
    height: 2px;
    background-color: black;
}
#top {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
}
#right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
}