@charset "UTF-8";
/* CSS Document */
html, body {
height: 100%;
margin: 0px;
}

#header {
height: 100px;
font-family:'Courier New', monospace;
font-size: 25px;
background-color: cornflowerblue;
color: darkblue;
line-height: 100px;
text-align: center;
}

#h1 {
font-size: 35px;
	

}
#nav {
line-height: 35px;
background-color: lightsteelblue;
height: calc(100% - 100px);
width: 115px;
float: left;
}

#nav a {
text-align: center;
font-size: 16px;
font-family: 'Courier New', monospace;
font-weight: bold;
display: block;
background-color: #68A2FF;
padding: 10px;
color: #2533C9;
text-decoration: none;
}

#nav a:hover {
background-color: #D9E9FF;
color: #2533C9;
}

#main {
width: 600px;
font-family:'Courier New', monospace;
font-size: 15px;
padding: 20px;
float: left;
}

#footer {
height: 12px;
font-family:'Courier New', monospace;
font-size: 12px;
padding: 5;
background-color: darkslateblue;
color: white;
text-align: center;
clear: both;
}

.caption {
background-color: darkslateblue;
color: white;
text-align: right;
font-family: 'Courier New', monospace;
font-size: 9px;
padding: 5px;
}

.caption a {
color: white;
}

