@charset "UTF-8";

#loader{
    width: 100px;
    height: 100px;
    display: none;
    position: fixed;
    _position: absolute;     /* IE6対策 */
    top: 50%;
    left: 50%;
    margin-top: -15px;       /* heightの半分のマイナス値 */
    margin-left: -15px;      /* widthの半分のマイナス値 */
    z-index: 99999;             /* #fadeより多い値 */
}
#fade{
    width: 100%;
    height: 100%;
    display: none;
    background-color: #F1CDCD;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99998;              /* #loaderより少ない値 */
}