/* CSS Document */
/* A narrow horizontal container that centers its content */
 #navigationblock {
	padding: 3px;
	text-align: right;
	height: auto;
	
 }

/* "navigation ul" styles turn an UL into a horizontal navigational bar */
 #navigationblock ul {
 	list-style: none;
	font-size: 14px;
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;

 }

/* border-left adds a "|" seperator between links */
 #navigationblock ul li {
	list-style: none;
	text-align: right;
 }

/* border-left removes the "|" seperator for the first link */
 #navigationblock ul li.first {
 border-left: none;
 }

/* Adds padding and link color */
 #navigationblock a {
	padding: 0.2em 0.5em;
	text-decoration: none;
	text-transform: capitalize;
	color: #000000;
	line-height: 40px;
 }

/* Changes the background color when the link is hovered */
 #navigationblock li a:hover {
	text-decoration: none;
	color: #660033;

 }

 /* Changes the background color when PHP says this is the current page */
 #navigationblock a#currentpage {
	color: #660033;
 }
