body {
    font-family: sans-serif;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background-color: #000000;
}

#worldCanvasHolder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

#debugCanvasHolder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

#debugWindow {
    position: fixed;
    right: 5px;
    top: 5px;
    width: 50%;
    height: auto;
    color: #ffffff;
    text-align: right;
    font-family: sans-serif;
    opacity: 0.2;
    display: none;
}

#cityTileData {
    position: fixed;
    visibility: hidden;
}

#guiBorder {
    position: fixed;
    z-index: 999;
    border: 1px rgba(225, 255, 255, 0.2) solid;
    left: -2px;
    top: -2px;
    width: 0px;
    height: 0px;
    box-shadow: 0px 0px 30px rgba(20, 0, 20, 0.1);
    transform: translateZ(0.0001px);
    visibility: hidden;

}

#introText {
    font-size: 12px;
    letter-spacing: 2px;
    position: fixed;
    z-index: 999;
    left: 3vw;
    top: 3vw;
    color: #888888;
}

#startButton {
    font-size: 12px;
    letter-spacing: 2px;
    position: fixed;
    z-index: 998;
    border: 1px rgba(225, 255, 255, 0.2) solid;
    left: 50%;
    margin-left: -100px;
    bottom: 20%;
    width: 200px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 30px rgba(20, 0, 20, 0.1);
    transform: translateZ(0.0001px);
    cursor: pointer;
    visibility: hidden;
}

#logoOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 990;
}

#loaderProgress {
    font-size: 12px;
    letter-spacing: 2px;
    position: fixed;
    z-index: 997;
    /*            border: 1px rgba(225, 255, 255, 0.2) solid;*/
    left: 50%;
    margin-left: -100px;
    bottom: 80px;
    width: 200px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 30px rgba(20, 0, 20, 0.1);
    transform: translateZ(0.0001px);
    /*            cursor: pointer;*/
    /*            visibility: hidden;*/
    opacity: 0.3;
}

.alias {
    image-rendering: optimizeSpeed;
    /* Older versions of FF          */
    image-rendering: -moz-crisp-edges;
    /* FF 6.0+                       */
    image-rendering: -webkit-optimize-contrast;
    /* Safari                        */
    image-rendering: -o-crisp-edges;
    /* OS X & Windows Opera (12.02+) */
    image-rendering: pixelated;
    /* Awesome future-browsers       */
    -ms-interpolation-mode: nearest-neighbor;
    /* IE                            */
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#preloaderIcon {
    position: fixed;
    height: 50px;
    width: 50px;
    left: 50%;
    bottom: 30%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border-bottom-color: #aaaaaa;
    border-left-color: #aaaaaa;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-width: 1px;
    border-left-width: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 995;
}

@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

#fullscreenButton {
    position: fixed;
    right: 8px;
    top: 8px;
    width: 32px;
    height: 18px;
    z-index: 1001;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    cursor: pointer;
    opacity: 0;
}

#fullscreenButton:hover {
    border: 1px rgba(255, 255, 255, 0.3) solid;
}

#fullScreenInnerBox {
    position: absolute;
    margin-left: 5px;
    margin-top: 2px;
    width: 20px;
    height: 12px;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    visibility: hidden;
}

#controlControlPanel {
    position: fixed;
    bottom: 0px;
    height: 40px;
    width: 100%;
    left: 0px;
    z-index: 1002;
    overflow: hidden;
    /* display: none; */
}

#manualButton {
    position: absolute;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    height: 30px;
    bottom: 0px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    color: rgba(0, 0, 0, 1);
    font-size: 15px;
    /*    border: 1px rgba(255, 255, 255, 0.2) solid;*/
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    visibility: hidden;
}

#manualButton:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

#controlControlButtons {
    position: absolute;
    bottom: 0px;
    height: 40px;
    width: 260px;
    left: 50%;
    margin-left: -130px;
    text-align: center;
    font-size: 0px;
    visibility: hidden;
}

.controlButton {
    position: relative;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    text-align: center;
    display: inline-block;
    /*    float: left;*/
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px rgba(255, 255, 255, 0.2) solid;
    cursor: pointer;

}

.controlButton:hover {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

#controlsClose {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    color: rgba(0, 0, 0, 1);
    font-size: 15px;
    /*    border: 1px rgba(255, 255, 255, 0.2) solid;*/
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

#controlsClose:hover {
    background-color: rgba(255, 255, 255, 0.5);
}
