
/*** PRELOADER ***/

@-moz-keyframes APreloaderRotation {
    0% {
        opacity: 1;
        -moz-transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes APreloaderRotation {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotate(360deg);
    }
}

@keyframes APreloaderRotation {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.CSite_PreloaderContainer
{
    position: fixed;

    display: block;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

#m_cSitePreloader
{
    z-index: 500;
}

.CSite_Preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.CSite_PreloaderCircleContainer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -moz-animation-name: APreloaderRotation;
    -moz-animation-duration: 2.0s;
    -moz-animation-delay: 0.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-name: APreloaderRotation;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-delay: 0.0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

.CSite_PreloaderCircle {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 98px;
    height: 98px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.CSite_PreloaderBarColor {
    background-color: #ffffff;
}

.CSite_PreloaderBarBGColor {
    background-color: #000000;
}

.CSite_PreloaderBar {
    position: absolute;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    left: 50%;
    top: 0px;
    width: 50%;
    height: 100%;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in;
    -moz-animation-name: APreloaderRotation;
    -moz-animation-duration: 2.0s;
    -moz-animation-delay: 0.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-name: APreloaderRotation;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-delay: 0.0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

#m_cSite_PreloaderBar2, #m_cModel_PreloaderBar2 {
    left: 0%;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -moz-animation-delay: 0.0s;
    -webkit-animation-delay: 0.0s;
    animation-delay: 0.0s;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

#m_cSite_PreloaderCircleTop {
    left: 5px;
    top: 5px;
    width: 90px;
    height: 90px;
}

/*** PRELOADER ***/