@charset "utf-8";
/**
 * @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 ul {
	margin: 0px;
	padding: 0px;
	list-style-position: outside;
	list-style: none;	
}


.acResults  {
    margin-top: -2px;
    display: block;
    opacity: 1;
    position: absolute;
    padding: 0px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.43);
    background-color: Window;
	overflow: hidden;
	z-index:100;
}
.acResults ul li {
    list-style-type: none;
    border-bottom: 1px solid #ededed;
    padding: 10px;
    cursor: pointer;
}
.acSelect  {
    color: #444;
}

