body {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#errorPrinter {
    position: absolute;
    left: 43%;
    top: 40%;
    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;
}
#errorImage {
	position: absolute;
    right: 1%;
    top: 17%;
    z-index: 9;
	animation: fadefake 1s linear infinite;
}
#errorName {
    color: #ffb6c1;
	font-size: 250%;
    font-weight: bold;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
	text-align: left;
}
#errorMessage {
    color: #ffc935;
	font-size: 120%;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
	margin-top: 100px;
	text-align: left;
}
#errorStack {
    color: #fff;
	font-size: 60%;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
	margin-top: 24px;
	text-align: left;
}
#retryButton {
    font-size: 20px;
    color: #fff;
    background-color: #000;
    border-radius: 8px;
    margin: 20px;
    padding: 10px;
}
#fpsCounterBox {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 101px;
    height: 20px;
    background: #222;
    opacity: 0.8;
    z-index: 8;
}
#fpsCounterLabel {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 3px 4px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    font-family: rmmz-numberfont;
    color: #fff;
    text-align: left;
}
#fpsCounterNumber {
    position: absolute;
    left: 4px;
    top: 0px;
    padding: 3px 1px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    font-family: rmmz-numberfont;
    color: #fff;
    text-align: right;
}
#fpsCounterDuration {
    position: absolute;
    bottom: 0px;
    right: 87px;
    padding: 3px 8px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    font-family: rmmz-numberfont, monospace;
    color: #fff;
    text-align: right;
}
#loadingSpinner {
    margin: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 120px;
    height: 120px;
    z-index: 10;
}
#loadingSpinnerImage {
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
    width: 96px;
    height: 96px;
    border: 12px solid rgba(255, 255, 255, 0.25);
    border-top: 12px solid rgba(255, 255, 255, 1);
    animation: fadein 2s ease, spin 1.5s linear infinite;
}
@keyframes fadein {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes fadefake {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}