/* CSS Document */

/* the container for the whole document */
.container {
	margin-left: auto;
	margin-right: auto;
	width: 600px;
	height:100%;
	border-style:solid;
	border-color:#FFA500;
}
/* This is the area that is created to hold the menu */
.menu {
	margin-left: auto;
	margin-right: auto;
	width: 600px;
}
/* This is the formatting for the main text of the website */
.content {
	background-color:#9AC0D3;
	margin-left: auto;
	margin-right: auto;
	width: 590px;
	padding:5px;
	font-family:Arial, Helvetica, sans-serif;
	color:#134F02;
	font-size:16px;
}
/* This is all of the formatting for the copyright */
.copyright {
	margin-left: auto;
	margin-right: auto;
	width: 600px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#C4B597;
	background-color:#304556;
}
/* This changes all of the link colors in the body of the page */
.content a:link, .content a:visited, .content a:active, .content a:hover {
	color: #000000;
	text-decoration:none;
}
/* This changes the link color in the copyright area */
.copyright a:link, .copyright a:visited, .copyright a:active, .copyright a:hover {
	color: #FFA500;
	text-decoration:none;
}