@font-face { font-family: OpenSans; font-weight: 300; font-style: normal; src: url('OpenSans/OpenSans-Light.ttf'); }
@font-face { font-family: OpenSans; font-weight: 400; font-style: normal; src: url('OpenSans/OpenSans-Regular.ttf'); }
@font-face { font-family: OpenSans; font-weight: 500; font-style: normal; src: url('OpenSans/OpenSans-Medium.ttf'); }
@font-face { font-family: OpenSans; font-weight: 600; font-style: normal; src: url('OpenSans/OpenSans-SemiBold.ttf'); }
@font-face { font-family: OpenSans; font-weight: 700; font-style: normal; src: url('OpenSans/OpenSans-Bold.ttf'); }
@font-face { font-family: OpenSans; font-weight: 800; font-style: normal; src: url('OpenSans/OpenSans-ExtraBold.ttf'); }
@font-face { font-family: OpenSans; font-weight: 300; font-style: italic; src: url('OpenSans/OpenSans-LightItalic.ttf'); }
@font-face { font-family: OpenSans; font-weight: 400; font-style: italic; src: url('OpenSans/OpenSans-Italic.ttf'); }
@font-face { font-family: OpenSans; font-weight: 500; font-style: italic; src: url('OpenSans/OpenSans-MediumItalic.ttf'); }
@font-face { font-family: OpenSans; font-weight: 600; font-style: italic; src: url('OpenSans/OpenSans-SemiBoldItalic.ttf'); }
@font-face { font-family: OpenSans; font-weight: 700; font-style: italic; src: url('OpenSans/OpenSans-BoldItalic.ttf'); }
@font-face { font-family: OpenSans; font-weight: 800; font-style: italic; src: url('OpenSans/OpenSans-ExtraBoldItalic.ttf'); }

html * {
    font-family: OpenSans;
}

html, body { margin: 0;
    height: 100%;
}

body {
}

.container {
    background-color: #f4fff5;
    display:flex;
    min-height: 100%;
}

.box_0 {
    flex: 0 1 200px;
}

.box_1 {
    background-color: white;
    flex: 0 0 940px;
    text-align: center;
}

.box_2 {
    flex: 1 1;
}

table, th, td {
    border: 1px solid black;
}

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

th, td {
    width: 2.5em;
    height: 2.5em;
    text-align: center;
    vertical-align: middle;
}

@media only screen and (max-width: 940px) {
    .container {
        flex-direction: column;
    }
    
    .box_0, .box_3 {
        visibility: collapse;
    }
}
