/* CSS Document */

     /* Make the nav take up the whole body width, and give it some top and bottom margin space */
    nav {
      clear:both;
	  width: 100%;
      margin: 20px 0;
	  margin-bottom:80px;
	  }
    /* Make the list of links take up the whole width of the nav */
    nav ul {
      width: 100%; 
	  }

    nav ul li {
      width: 20%; 
	 float: left;
	 }
    nav ul li a {
      display: block;
      width: 100%; }


    nav ul {
      width: 100%; /* from above */
      list-style: none;
      margin: 0;
      padding: 0; 
	  }

