html{
    font-family: Helvetica, sans-serif;
}

body{
    margin: 0;
    padding: 0;
    background-color: rgb(255,255,255);
}

header{
    float: left;
    position: relative;
    display: inline;
    width: 100%;
    z-index: 1;
    background-color: #009374;
    padding: 0;
    margin-bottom: 30px;
}

header table {
    display: block;
    background-color: white;
    padding-right: 30px;
}
header tbody {
}
header td {
    padding: 0;
}

header h1 {
    display: inline-block;
    float: left;
    font-size: 20px;
    font-weight: lighter;
    color: rgb(0,0,0);
    height: 100%;
    margin: 0 0 0 15px;
}
header img, #sideBar img {
    display: block;
    margin: 0;
    padding: 5px 5px 5px 15px;
}
header a {
    float: left;
    height: 100%;
    display: inline;
    text-transform: uppercase;
    text-decoration: none;
}

#content{
    position: absolute;
    top: 202px;
    left: 50%;
    width: 375px;
    transform: translateX(-50%);
}

#nav a {
    line-height: 82px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
}

#nav {
    background-color: #009374;
    margin-top: 0;
    display: inline-block;
    float: right;
}
#nav tbody {
}
#nav tr {
    margin: auto;
    position: relative;
    right:0;
}

#nav td {

}

#nav a:hover {
    background-color: #66bfac;
}

p {
    font-size: 20px;
}

input {
    font-size: 20px;
    padding: 5px;
    border: 1px solid black;
}

[type="text"], [type="password"], [type="submit"] {
    width: 100%;
}

[type="checkbox"] {
    position: relative;
    z-index: 0;
    -webkit-appearance: none;
}
[type="checkbox"] + label {
    margin-left: -18px;
    position: absolute;
}
[type="checkbox"] + label::before {
    width: 17px;
    height: 17px;
    border-radius: 2px;
    border: 1px solid black;
    background-color: #fff;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    z-index: 5;
    position: relative;
}
[type="checkbox"]:checked+label::before {
    box-shadow: inset 0 0 0 2px #fff;
    background-color: #009374;

}

ul {list-style:none;
    padding-left: 0;
}

[type="submit"] {
    background-color: #009374;
    color: white;
}

[type="submit"]:hover {
    background-color: #66bfac;
}