@charset "utf-8";
/* CSS Document */

	html, body {
	height: 100%;
	margin: 0px;
	}

	#header {
	height: 85px;
	background-color: lightcoral;
	color: purple;
	line-height: 80px;
	text-align: center;
	}

	#nav {
	line-height: 30px;
	background-color: beige;
	height: calc(100%);
	width: 110px;
	padding-left: 0px;
	float: left;
	}

	#nav a {
	text-align: center;
	display: block;
	background-color: beige;
	padding: 10;
	color: #000;
	text-decoration: none;
	}



	#nav a:hover {
		background-color: #4CD69D;
		color: #BC4547;
		text-align: left;
	}

	#main {
	width: 600px;
	padding: 20px;
	float: left;
	}

	#footer {
	height: 20px;
	background-color: pink;
	color: black;
	text-align: center;
	clear: both;
	}

	.caption {
	background-color: gray;
	color: white;
	text-align: right;
	font-family: arial, sans-serif;
	font-size: 9px;
	padding: 5px;
	}

	.caption a {
	color: blue;
	}
	p {
			font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
			color: #4064A6;
		}



