/* CSS Document */


/* this next rule prevents Firefox adding a space beneath the
 * title image when displayed as application/xhtml+xml */
#wrapper #nav{
	width: 100%;
	background-color: #0066FF;
	margin: 0px;
	padding: 0px;
	border-bottom: 1 solid #0000CC;
	text-align: center;
}

/* styles for the nav menu - remove padding, margin and bullets */
#nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
  }
/* float each list element inline */
#nav li {
  float: left;
  display: inline;
  }
/* style the links in the nav list */
#nav a {
  display:block;
  margin: 0;
  height: 1em;
  padding: 7px 0 7px 22px;
  width: 150px;
  text-decoration: none;
  font-variant:small-caps;
  font-weight:bold;
 
  }
#nav a:link, #nav a:visited {
	background-color: #0066FF;
	color: #FFF;
  }
#nav a:hover, #nav a:active {
  background-color: #999999;
  color: #524872;
  
  }
/* special style for link to identify current page */
#thispage a:link, #thispage a:visited,
#thispage a:hover, #thispage a:active {
  background-color: #0066FF;
  color: #ffffff;
  
  }
