body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

#appWrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 720px;
    width: 1280px;

    border-right: 2px dashed red;
    border-bottom: 2px dashed red;
}

#fxm_focus {
    display: none;
}

.view {
    position: absolute;
    top: 0;
    left: 0;
    height: 720px;
    width: 1280px;
    overflow: hidden;
    background-color: #fefefe;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.mainContent {
    margin: 75px 100px;
    background-color: rgba(0, 0, 36, .25);
    padding: 30px;
    border: 2px solid black;
    color: #0a0a0a;
}

.focusable {
    cursor: pointer;
    border: 2px solid #202020;
    border-radius: 5px;
    background-color: #fefefe;
    font-weight: bold;
    padding: 5px 8px;
    text-align: center;
    margin-bottom: 5px;
}

.focusable.focus {
    /*font-style: italic;*/
    border: 2px solid greenyellow;
}

#showMenu {
    position: absolute;
    top: 50%;
    left: 25px;
    width: 18px;
    height: 28px;
}

#leftMenu {
    background-color: rgba(36, 36, 36, 0.75);
    position: absolute;
    top: 0;
    left: -250px;
    height: 720px;
    width: 250px;
    overflow: hidden;
    z-index: 98;

    padding-top: 25px;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

#leftMenu > button {
    display: block;
    width: 100%;
    border-top: 2px solid lightgrey;
    border-bottom: 2px solid lightgrey;
    border-left: none;
    border-right: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0 auto 10px;
}

#leftMenu > button.focus {
    border-top: 2px solid greenyellow;
    border-bottom: 2px solid greenyellow;
    border-left: none;
    border-right: none;
}