html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
}
#container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: relative
}

#container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: relative
}

#container canvas, #container #bg {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
}

#container canvas {
    z-index: 90;
}

#container #bg {
    z-index: 100;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
    opacity: 1;
    transition: opacity 1s;
    transition-timing-function: ease;

    max-width: 100%;
    max-height: 100%;
}

#progressIndicator {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;

    margin-left: -50px;
    margin-top: -50px;

    z-index: 101;
    display: block;
    text-align: center;
}

#progressIndicator.error {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    margin: 0;
    background: transparent url("../img/error.png") no-repeat center center;
}

#progressIndicator.touch {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    margin: 0;
    background: transparent url("../img/touch.png") no-repeat center center;
}