#loader {
    display: none;
    /*height: 48px;*/
    left: 50%;
    margin-left: -24px;
    margin-top: -24px;
    position: fixed;
    _position: absolute;/* IE6対策 */
    top: 50%;
    /*width: 48px;*/
    z-index: 100;
}

#fade {
    background-color: #000;
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
}

#loader-bg {
    background: #000;
    display: none;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1500;
}

#loader {
    display: none;
    z-index: 1501;
}

.spinner {
    margin: 46px auto 0;
    text-align: center;
    width: 70px;
}

.spinner > div {
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    height: 18px;
    width: 18px;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
