.menu {
  font-family: arial, verdana, sans-serif;
  position: relative;
}
.menu, .menu .toggle {
  height: 39px;
}
.menu .toggle {
  color: #999;
  font-size: 11px;
  font-weight: bold;
  cursor: hand;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}
.menu .toggle-hover {
  color: red;
}
.menu .items {
  position: absolute;
  left: 70px;
  top: 0;
}
.menu .items ul,
.menu .items li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.menu .items li {
  float: left;
  height: 39px;
  padding: 0 0px 0 0;
}
.menu .items a {
  color: #f90;
  text-decoration: none;
}
.menu .items a:hover {
  text-decoration: underline;
}
.menu .items a.current {
  color: #999;
}
.clearfix:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}