/**
 * @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 {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999;
  margin: 7px 0 0 0;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  -moz-box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

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

.acResults ul li {
  margin: 0;
  padding: 2px 5px;
  cursor: pointer;
  display: block;
  font: menu;
  font-size: 12px;
  overflow: hidden;
}

.acLoading {
  background : url('../i/ajax-loader-small.gif') right center no-repeat;
}

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