    #myInput {
      width: 240px;
      padding: 8px;
    }
    #goButton {
      padding: 8px;
      margin-left: 8px;
      cursor: pointer;
    }
    .autocomplete-items {
      position: absolute; top: 40px;
      border: 1px solid #ccc;
      border-top: none;
      z-index: 99;
      max-height: 400px;
      overflow-y: auto;
      background: #fff;
      width: 270px;
    }
    .autocomplete-item {
      padding: 8px;
      cursor: pointer;
    }
    .autocomplete-item:hover, .autocomplete-active {
      background-color: #eee;
    }
    .highlight {
      background-color: yellow;
      font-weight: bold;
    }