@charset "utf-8";
/* H154 Assignment 2 */
/* Meg Meyer */

body {
	font-style: Verdana, Arial, Helvetica, sans-serif;
	background-color: #666;
	margin: 0;
	padding: 0;
	color: #000;
}

h1 {
	font-weight: bold;
	font-size: 2em;
	text-align: center;
}

h2 {
	font-weight: bold;
	font-size: 1.3em;
	margin-left: 5px;
}

.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; 
}

header {
	background-color: #03C;
	color: #FC3;
  border: solid 1px #000;
	height: 80px;
}

article {
	border: solid 1px #909;
	height: 80px;
}

nav {
	border: solid 1px #F63;
	height: 40px;
}

nav ul {
	list-style-type: none;
}

nav li {
	float: left;
}

nav a {
	display: block;
	width: 60px;
	text-decoration: none;
}

nav a:hover {
	color: #C00;
}

aside {
	float: left;
	width: 178px;
	height: 80px;
	background-color: #C96;
  border: solid 1px #999;
}

footer {
	height: 30px;
	padding: 10px 0;
	background-color: #CCC49F;
  border: solid 1px cyan;
	clear: both;
}
