/* Bike Shoppe Navigation bar styles */
/* WDV101 Final Project #2 */
/* Sterne Maher */
/* 10/31/2013 */

nav {
  border: solid 2px black;
  color: blue;
  background-color: white;
  text-align: text-bottom;
  vertical-align: middle;
  height: 34px;
  padding-top: 14px;
}

nav ul li {
   list-style-type: none;
   display: inline;		/* display horizontally */
   margin-right: 2em;
   height: 34px;
   padding: 5px;	/* horizontal spacing between list items */
}

/*
nav ul li a:link {
  background-color: #f6f60d;  
}
*/

nav ul li a:hover {
  color: firebrick;
  background-color: yellow;
  text-decoration: none;
  font-style: oblique;
/*  background-color: #090909; */
}