/*	Note: This website was written before I knew anything at all
	about web development beyond some rudimentary HTML. Now I've
	become a web developer but I don't intend to put in the time
	necessary for a full re-design of this site. Instead, when I
	have to update something, I'll improve it piecemeal. For
	example, when I had to add a new item to the nav for my new
	blog, I changed to this css-driven menu.
*/

/* Nav */

ul.nav {
	margin: 0 105px;
	list-style: none;
}

ul.nav li {
	float: left;
	margin-right: 4px;
}

ul.nav div {
	padding: 5px 0;
	width: 175px;
	text-align: center;
	background-color: #333;
	color: #fff;
}

ul.nav a {
	text-decoration: none;
}
ul.nav div:hover {
	background-color: blue;
}
ul.nav li.selected-page div {
	background-color: orange;
	color: #000;
}

.clearboth {
	clear: both;
}