
#menu {





}

#menu ul { list-style: none; padding-left: 0px; }

#menu ul li {
  display: inline-block;


}

#menu ul li a {
  color: #fff;
  width: 100%;background: #222;
 padding:10px 15px;
border-bottom: 2px solid #222;
  text-decoration: none;text-transform: uppercase;
}

#menu ul li a.selected { color: #000 !important; font-weight: 600;  background: #fff !important; }

#menu ul li.selected a { color: #222;  }

#menu select {
  width: 100%;
  background: #333;
  padding: 10px; color: #fff;
  float: left;
}

#menu button {
  display: inline-block;
  line-height: 18px;
  padding: 0 5px;
  margin: 11px 2% 11px 0;
  float: right;
  width: 10%;
}

#menu h1 {
  margin: 40px 0 10px;
  text-align: center;
  color: #384047;
}

#menu p {
  text-align: center;
  color: #777;
}

/**
Modify CSS to hide links on small resolution and show butto and <select>
Also hides <select> and button on larger resolutions and shows links
**/

@media (min-width:0px) and (max-width: 767px) {

#menu ul { display: none; }
}
 @media (min-width: 767px) {

#menu select,
#menu button { display: none; }
}
