* { margin: 0; padding: 0; }
body { background-color: black; }

#container {
	width: 750px;
	margin: 0 auto;
}
#banner {
	width: inherit;
	height: 75px;
	background-color: green;
}
#banner h1 {
	width:600px;
	float: left;
}
#signin {
	width: 150px;
	height: 75px;
	background-color: blue;
	float: right;
}
#nav {
	width: inherit;
	height: 50px;
	background-color: yellow;
}
#nav ol {
	list-style-type: none;
}
#nav ol li {
	list-style-type: none;
}
#nav ol li a {
	display: block;
	height: 50px;
	width: 150px;
	background-color: white;
	text-decoration: none;
	float: left;
}
#nav ol li a:hover {
	background-color: black;
}
#content {
	background-color: white;
}
#profile {
	width: 600px;
	background-color: red;
	float: left;
}
#nav-profile {
	float:right;
	width: 200px;
	background-color: white;
}
#nav-profile h3 a {
	text-decoration: none;
}
#nav-profile ol {
	list-style-type: none;
}
#nav-profile ol li {
	display: block;
	width: inherit;
}
#nav-profile ol li a {
	text-decoration: none;	
}
#nav-profile ol li a:hover {
	background-color: black;
	color: white;
}

#updates {
	width: 450px;
	background-color: red;
	float: left;
}
#updates .news { clear: left; }
#updates .news h3 { text-indent: 1em; color: white; }
#updates .new p { text-indent: 1em; margin: 0 4px; }
#humans {
	width: 150px;
	background-color: purple;
	float: left;
}
#zombies {
	width: 150px;
	background-color: pink;
	float: left;
}
#humans h3, #zombies h3 {
	text-align: center;
}
#humans ul, #zombies ul {
	list-style-type: none;
}
#humans ul li, #zombies ul li {
	text-indent: 12px;
	width: 138px;
	overflow: hidden;
}
#humans ul li a, #zombies ul li a {
}
#humans ul li a:hover, #zombies ul li a:hover {
}
#footer {
	height: 50px;
	background-color: yellow;
	clear: both;
}
#updates .photo {
	float: left;
	width: 80px;
	height: 125px;
	margin: 2px
	background-color: blue;
	border: 1px solid white;
} 
