body {
	background-color: #aeafb3;
/*	font-family: Helvetica, Arial, sans-serif; */
	font-family: 'Nobile', sans-serif;
	font-size: 20px;
	text-shadow: 1px 1px 3px #fff;
}

a { /* this works for a tag */
	text-decoration: underline;
	color: black;
}

h1, h2, h3 {
	margin: 0;
	padding-top: 50px;
	font-family: 'Playball', cursive; 
	font-size: 42px; 
	text-shadow: 2px 2px 2px #ccc; 
}

#container { /* this works for an id */
	background-color:
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #FFF;
	color: black;
	height: 200px;
	text-align: right;
	padding: 0px 25% 0px 0px;
}

#content {
	padding: 10px;
}

#nav {
	width: 180px;
	float: left;
}

#nav ul { /* this works for a tag inside an ID */
	list-style-type: none;
	padding: 0;
}

#nav .selected { /* this works for a class inside an ID (without the ID just start with a period */
	font-weight: bold;
}

#main {
/*	width: 600px;
	float: right; */
	width: 600px;
	margin: auto;
	text-align: center;
}

#footer {
	clear: both;
	height: 67px;
	padding: 10px;
	background-color: #7c7d7f;
	color: #fed000;
	text-shadow: none;
}

#footer .cleft {
	float: left;
	text-align: left;
	background-color: inherit;
}

#footer .cright {
	float: right;
	text-align: right;
	background-color: inherit;
}