/* Adapted from CSS Hacks and Filters by Joseph W Lowery */
#navholder {
	float: left;
	width: 200px;
	font-family: Arial, Verdana, sans-serif;
	font-size:.9em;
	background-color: #7b68ee;
	margin-left: 1px;
	margin-right:5px;
	margin-top: 1px;
	margin-bottom:5px;
}
/* remove bullets and standard indentation for unordered lists; need to specify 0 margin and 0 padding */
#navholder ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
p.navholder {
	font-weight: bold;
	font-size: 150%;
	line-height: 150%;
	margin-left: 25px;
	margin-top:10px;
	color: white;

}
/* tighten up space around list items */
#navholder li {
	margin: 0px;
}
/* turns linked list into a series of buttons */
#navholder a {
	display: block;
	background-image: url(up.jpg);
	background-repeat: no-repeat;
	background-position: 0% 50%;
	background-color: #599D7E;
	padding: 4px 25px 4px 25px;
	border-top: 1px solid white;
	color: white;
}
#navholder a:link, #navholder a:visited {
	color: #ffe4c4;
	text-decoration: none;
	background-image: url(up.jpg);
}
#navholder a:hover, #navholder a:active {
	color: #000000;
	background-image: url(hover.jpg);
	background-repeat: no-repeat;
	background-position: 0% 50%;
	text-decoration: none;
	color: white;
}


