div#container
{
   width: 950px;
   position: relative;
   margin: 0 auto 0 auto;
   text-align: left;
}
body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   text-align: center;
}
#ButtonUp
{
   border-width: 0;
   vertical-align: top;
}
#ButtonRight
{
   border-width: 0;
   vertical-align: top;
}
#ButtonDown
{
   border-width: 0;
   vertical-align: top;
}
#ButtonLeft
{
   border-width: 0;
   vertical-align: top;
}
#ButtonHome
{
   border-width: 0;
   vertical-align: top;
}
#ButtonScreenSize
{
   border: 1px solid #0D6EFD;
   border-radius: 4px;
   background-color: #0D6EFD;
   background-image: none;
   color: #FFFFFF;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 16px;
   padding: 1px 6px 1px 6px;
   text-align: center;
   -webkit-appearance: none;
   margin: 0;
}
#ButtonScreenSize:focus
{
   outline: 0;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
#CubeViewport
{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 500px;
    height: 500px;
    perspective: 300px;
    overflow: hidden;
    border: 1px solid #000;
    background: #111;
}

#Camera
{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 1px;
    transform-style: preserve-3d;
}

#Room
{
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    transform-style: preserve-3d;
    transition: transform 1.0s ease;
}

.cube-face
{
    position: absolute;
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
    box-sizing: border-box;
    border: 2px solid #000;

    font-family: Naviword;
    font-weight: bold;

    backface-visibility: visible;
    overflow: hidden;
}

.face-front
{
    background: #e8d17a;
    transform: translateZ(-250px);
}

.face-back
{
    background: #e89a6a;
    transform: rotateY(180deg) translateZ(-250px);
}

.face-left
{
    background: #9ac97a;
    transform: rotateY(90deg) translateZ(-250px);
}

.face-right
{
    background: #d99aaa;
    transform: rotateY(-90deg) translateZ(-250px);
}

.face-top
{
    background: #8fbce8;
    transform: rotateX(-90deg) translateZ(-250px);
}

.face-bottom
{
    background: #bdbdbd;
    transform: rotateX(90deg) translateZ(-250px);
}

.hidden-face
{
    visibility: hidden;
}

.game-text-object
{
    position: absolute;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

#ActionList
{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;

    background: white;
    border: 2px solid #808080;
}

.action-item
{
    padding: 8px;
    cursor: pointer;
    user-select: none;
    border-bottom: 2px solid #b0b0b0;
}

.action-item:hover
{
    background: #DCEEFF;
}


