@charset "UTF-8";

#navWrap {
   height: 30px;
}
#nav {
   padding: 5px;
   background: #;    
}
#nav ul {
   margin: 0;
   padding: 0;    
}
#nav li {
   float: left;
   padding: 3px 8px;
   background-color: #FFF;
   margin: 0 10px 0 0;
   color: #F00;
   list-style-type: none;
}
#nav li a {
   color: #699;  
   text-decoration: none;    
}
br.clearLeft {
   clear: left;        
}​
Most of this CSS is simple styling code that adds some color and typography and lays out the menu bar. One noteworthy definition is the #navWrap selector:

#navWrap {
   height: 30px;
}
