body {
  text-align: center;  
  margin: 0;
  }

#wrapper {
  margin: 0 auto;
  width:800px; /* make it 100%*/ 
  text-align: left;
  overflow:hidden;
}


#header {
  min-height:50px;
  background:#A4A9FF;
  overflow: hidden;
}

#content {
  min-height:300px;
  background:#919990;
  overflow: hidden;
}

#footer {
  min-height:50px;
  background:#85996B;
  overflow: hidden;
}
ul {
  margin:0; /*top*/
  padding:0; /*left*/
  width: 200px;
  list-style:none; /*remove bullets*/
}

/* put light gray border on bottom */
ul li {
  border-bottom:1px solid #ccc;
}

/* remove the last border from list  */
ul li.last {
  border:none;
}

ul li a{
  display:block;
  text-decoration:none;
  color:#333;
  background:#eee;  
}

ul li a:hover {
  background:#ccc;
}

/*
#header ul { margin:0;padding:0; list-style:none; }
#header ul li { padding:0 .5em; float:left; }
*/