body {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#errorPrinter {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 640px;
    height: 100px;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 1px 1px 3px #000;
    font-size: 20px;
    color: #fff;
    z-index: 9;
}
#errorName {
    color: #ff0;
    font-weight: bold;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
#errorMessage {
    color: #fff;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
#retryButton {
    font-size: 20px;
    color: #fff;
    background-color: #000;
    border-radius: 8px;
    margin: 20px;
    padding: 10px;
}
#fpsCounterBox {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 90px;
    height: 40px;
    background: #222;
    opacity: 0.8;
    z-index: 8;
}
#fpsCounterLabel {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 5px 10px;
    height: 30px;
    line-height: 32px;
    font-size: 12px;
    font-family: rmmz-numberfont, sans-serif;
    color: #fff;
    text-align: left;
}
#fpsCounterNumber {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 5px 10px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    font-family: rmmz-numberfont, monospace;
    color: #fff;
    text-align: right;
}
#loadingSpinner {
    margin: 0;
    position: absolute;
    right: 2%;
    bottom: 2%;
    z-index: 10;
    overflow: hidden;
    animation: fadein 1s ease;
}
#loadingSpinnerSerpent {
    animation: fadein 1s ease;
}
#loadingSpinnerImage {
    background-image: url("../img/pictures/umn.png");
    background-position: -1px -1px;
    margin: 1px;
    padding: 0;
    width: 254px;
    height: 254px;
    animation: spinLinear 5s linear infinite, spinEase 5s ease-in 1;
    animation-delay: 0.5s;
}
#loadingSpinnerImageHead {
    background-image: url("../img/pictures/umn.png");
    position: absolute;
    background-position-x: -256px;
    background-position-y: -1px;
    top: 63px;
    left: 103px;
    width: 48px;
    height: 22px;
}
#loadingSpinnerEmblem {
    background-image: url("../img/pictures/umn.png");
    background-position: -256px -182px;
    position: absolute;
    top: 92px;
    left: 91px;
    width: 74px;
    height: 74px;
    animation: spinY 3s linear infinite;
}
@keyframes spinY {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes fadein {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    20% {
        opacity: 0;
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes spinEase {
    0% {
        transform: rotate(0deg);
        animation-timing-function: ease-in;
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spinLinear {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
