
/* Header */  
 ul {
     list-style-type: none;
     position: absolute; //fixed;
	 top: 0;
     width: 100%;
     }
li  {
     float: left;
     border-right: 1px solid white;
     }
li a {
      display: block;
      padding: 8px;
      background-color:#1E90FF;
      }
li:last-child {
       border-right: none;
      }    

/* Footer */
footer {
        background:#1E90FF;
        color: white;
		 position: fixed;
         bottom: 0;
		 width:100%;
		 height:20px;
       }
