#MenuBar #Options li a.button {
  display: inline-block;
}
#MenuBar .searchFlyout {
  display: inline-block;
  overflow: hidden;
  background: #fff;
  width: 0px;
  transition: width 180ms, height 0ms;
  position: relative;
  top: 5px;
}
#MenuBar .searchFlyout.open {
  width: 250px;
}
@media (max-width: 639px) {
  #MenuBar #Options li a.button {
    display: block;
  }
  #MenuBar .searchFlyout {
    position: absolute;
    left: 0px;
    top: 45px;
    height: 0px;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    transition: width 0ms, height 180ms;
  }
  #MenuBar .searchFlyout #SearchForm {
    position: relative;
    left: 8px;
    top: 12px;
  }
  #MenuBar .searchFlyout #SearchForm .searchField {
    width: 96%;
  }
  #MenuBar .searchFlyout.open {
    height: 45px;
    width: 100%;
  }
}




/* Search Overrides */

#MenuBar input#search_text {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  border: none;
  outline: none;
}