@charset "utf-8";
body {
    background-image: url("../back.jpg");
}
#spinner{
    background: url("cc_loading.png") no-repeat 100% 100%;
    height: 128px;
    width: 128px;
    margin: -64px 0 0 -64px;
    animation: spinnerSlides 1s steps(6) infinite;
}
/*cc spinner animation*/
@keyframes spinnerSlides{
    from{background-position-x: 0;}
    to{background-position-x: -768px;}
}
/*cc spinner animation*/