/**
 * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
 * @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
 * @license MIT | GPL | Apache 2.0, see LICENSE.txt
 * @see https://github.com/dyve/jquery-autocomplete
 */
.acResults {
  margin-top: 1px;
  padding: 1px;
  border: 1px solid #999;
  border-radius: 2px;
  background-color: white;
  overflow: hidden;
  z-index: 99999;
}

.acResults ul {
  text-align: left;
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style: none;
}

.acResults ul li {
  margin: 0px;
  padding: 2px 5px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  line-height: 1.5em;
}

.acSelect {
  background-color: Highlight;
  color: HighlightText;
}