﻿html, body,form {
    font-family: Arial;
    margin: 0;
    height: 100%;
}
.page{
    width:100%;
    height:100%;
}
.menu {
    width: 200px;
    height: 100%;
    background-color: #2796fe;
    color: white;
    display: inline-block;
    vertical-align: top;
}
.menuHeading {
    background-color: white;
    color: #2796fe;
    font-size: large;
    font-weight: bold;
    margin: 0;
    padding: 10px;
    border-right: 5px solid #2796fe;
    border-left: 5px solid #2796fe;
}
.menuItem{
    margin:0;
    padding:10px;
}
.menuItem a {
    color:white;
    font-size:large;
    font-weight:bold;
    text-decoration:none;
}
.menuItem a:hover {
    text-decoration:underline;
}
.content {
    display: inline-block;
    width:calc(100% - 220px);
    height:calc(100% - 20px);
    padding:10px;
}
h1, h2, h3 {
    color: #2796fe;
}
.linkButton {
    background-color: #2796fe;
    color: white;
    padding:5px;
    margin:5px;
    text-decoration:none;
    font-size:medium;
}
.button {
    background-color: #2796fe;
    color: white;
    border: none;
    font-size: medium;
    padding: 5px;
    cursor:pointer;
}
select, input[type=text] {
    font-size: medium;
    color: #2796fe;
}
select{
    width:258px;
    height:24px;
}
input[type=text] {
    width: 250px;
}