@charset "utf-8";
/* CSS Document */

.author {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
	text-align: center;
	font-weight: bold;
	padding-bottom: 10px;
	letter-spacing: 2px;
}

.photo {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 80%;
	padding-bottom: 10px;
}

.ref {
	margin-bottom: -6px;
	line-height: 120%;
	}

.note {
	color: #40608C;
	font-weight: bold;
	font-size: 85%;
}

.navmenu {
	background-color: #F0FFF0; /* colors the div */
	border-bottom: 1px solid#008080;
	border-left: 1px solid #008080;
	border-right: 1px solid #008080;
	border-top: 1px solid #008080;
	float: left; /*makes the div enclose the list */
	font-size: .8em;
	width: 100%; /* makes the div full width */
}

.navmenu a {
	color: #000000; /* sets the type color */
	padding: 0 10px; /*creates space each side of menu item's text */
	text-decoration: none; /* removes the underlining of the link */
}

.navmenu a:hover {
	color: #800000;
}

.navmenu li {
	background-color: #FFFACD; /*sets the background of the menu items */
	border-right: 1px solid #008080; /* creates dividing lines between the li elements */
	float: left; /* causes the list to align horizontally instead of stack */
	list-style-type: none; /* removes the bullet off each list item */
}

.navmenu li:hover {
	background-color: #FFFFFF; /*sets the background of the menu items */
}

.navmenu li:first-child {
	border-left: 1px solid #008080; /*the first vertical line on the menu */
}

.navmenu ul {
	margin: 0 0 0 30px; /* indents ul from edge of container */
}

