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

#navlist {
	text-align: center;
	padding: 0;
	font: 12pt;
	font-family: Garamond, Georgia, Times New Roman, serif;
}
/* These are the titles of the tabs, centered in page */

#navlist li {
	list-style: none;
	display: inline;
}
/* This sets the tabs as a horizontal list */

#navlist li a {
	padding: 2px 0.5em;
	margin-left: 1px;
	border: 1px solid #778;
	border-bottom: none;
	background-color: #eee;
	text-decoration: none;
}
/* Position, background color, and border of the tabs; no bottom border on inactive tabs */

#navlist li a:link {
	color: #000000;
}
/* Text color of tabs */

#navlist li a:visited {
	color: #000000;
}
/* This function exists solely because Internet Explorer sucks */

#navlist li a:hover {
	color: #ffcccc;
	background-color: #778;
	border-color: #778;
}
/* Color is text color when hovered. BG color is color of tab when hovered */

#navlist li a#current {
	color: #000000;
	background-color: #ecfbdd;
	border-bottom: 1px solid #ecfbdd;
}
/* Background color and bottom border are same as #content color */
