html{
	font-size: 14px;
	font-weight: bold;
	font-family: cursive;
}
body {
	font-size: 100%;
}
#nav {
  margin: 0;    
  padding: 0;
  background: blue;
  list-style-type: none;
  width: 150px;
  float: left; /* Contain floated list items */
}
#nav li {
  margin: 0;
  padding: 0;
  float: left; /* This corrects the */
  width: 100%; /* IE whitespace bug */
}
#nav a {    
  display: block;  /* to increase clickable area as a's default to inline */
  color: white;
  text-decoration: none;
  padding: 0 10px;
  line-height: 2.5;
  border-bottom: 1px solid #white;
  border-top: 1px solid #blue;
}
#nav #nav_con a {
  border: none;
}
#nav a:hover {  
  background: white;
  color: blue;
  border-bottom: 1px solid #blue;
  border-top: 1px solid #blue;
}
#body_index #nav_index a,
    #body_about-author #nav_about-author a,#body_picture-books #nav_picture-books a,
	#body_board-books #nav_board-books a,
    #body_chapter-books #nav_chapter-books a,#body_teens #nav_teens  a,
	#body_grown-ups #nav_grown-ups a,
	#body_newsletters #nav_newsletters a,
    #body_author-visits #nav_author-visits a,
	#body_links #nav_links a {
	background: Red;
	color: White;
	font-weight: bold;
	 border-bottom: 1px solid #red;
  border-top: 1px solid #red;
}