html,
body {
    margin: 0;
    background-color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.navigationBar {
    color: #ffffff;
    float: left;
    width: 200px;
    height: 100%;
    position: fixed;
    background-color: #000020;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    display: none;
}

.page {
    width: 100%;
    margin-left: 0;
}

.menuopen .navigationBar {
    display: block;
}

.menuopen .page {
    width: calc(100%-200px);
    margin-left: 200px;
}

.header {
    background-color: #f0f0f0;
    height: 52px;
    top: 0;
    position: fixed;
    overflow: hidden;
    z-index: 100;
    border-bottom: 1px solid #cccccc;
    width: 100%;
    color: #000080;
}

.content {
    margin-top: 52px;
    display: border-box;
    padding: 10px;
}

h1 {
    padding-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding-top: 5px;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0;
}

.menu a,
.menu a:visited {
    width: 180px;
    display: block;
    height: 30px;
    padding-left: 20px;
    padding-top: 10px;
    text-decoration: none;
    color: white;
}

.menu li.current a {
    background-color: #000080;
    color: white;
}

.menu a:hover {
    background-color: #ff5800;
    color: white;
}

.menubutton {
    float: left;
    display: block;
    width: 53px;
    height: 53px;
    background-position: left top;
    background-size: 53px 53px;
    background-image: url('/images/menuicon.png');
}

.menubutton a {
    width: 53px;
    height: 53px;
    display: block;
}

ul {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    margin: 0;
}

.content a {
    color: #ff5800;
    text-decoration: none;
}

.content a:hover {
    color: #ff5800;
    text-decoration: underline;
}

.navigationBar hr {
    border-color: #ff5800;
    margin: 30px 0;
}

.navigationBar #menulogo {
    width: 110px;
    height: 147px;
    padding: 45px;
    padding-bottom: 10px;
}

h2,
h3,
h4 {
    margin-bottom: 0;
}

input[type="text"] {
    width: 250px;
}

input {
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #ff5800;
    margin: 2px 4px 2px 0;
    background: #ffffff;
    width: 129px;
}

input[type=submit] {
    background: #000080;
    border: 0;
    color: #ffffff;
    border: 1px solid #000080;
}

@media only screen and (max-width: 813px) {
    .header {
        background-color: #000020;
        color: #ffffff;
    }
}

@media only screen and (min-width: 814px) {
    .menubutton {
        display: none;
    }
    .navigationBar {
        display: block;
    }
    .page {
        width: calc(100%-200px);
        margin-left: 200px;
    }
}