@charset "utf-8";
/* CSS Document */
html, body {
height: 100%;
margin: 0px;
}

#header {
height: 80px;
background-color: #BA5E1B;
color: black;
line-height: 80px;
text-align: center;
}

#nav {
background-color: #D1BEA1;
height: calc(100% - 100px);
width: 100px;
float: left;
}

#nav a {
text-align: center;
display: block;
background-color: #BEB99E;
padding: 10px;
color: #511D1D;
text-decoration: none;
}

#nav a:hover {
background-color: #71813A;
color: antiquewhite;
}

#main {
width: 700px;
padding: 50px;
float: left;
}

#footer {
height: 20px;
background-color: #BA5E1B;
color: black;
text-align: center;
clear: both;
}

.caption {
background-color: #BA5E1B;
color: black;
text-align: right;
font-family: arial, sans-serif;
font-size: 9px;
padding: 5px;
}

.caption a {
color: white;
}