/*
 * jquery-autocompleter v0.1.10 - 2015-01-22
 * Simple, easy, customisable and with localStorage cache support.
 * http://github.com/ArtemFitiskin/jquery-autocompleter
 *
 * Copyright 2015 Artem Fitiskin; MIT Licensed
 */

#address{
	width: 160px;
}
#address2{
	width: 160px;
}
.autocompleter {
    width: 160px;
    height : 120px;
    display: none;
    background: #e5e5e5;
    overflow: auto;
    box-shadow: -2px 4px 10px 2px  #e5e5e5;
    border: 1px solid #aaa;
    position: absolute;
}

.autocompleter-show {
    display: block;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
}

.autocompleter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.autocompleter-item {
    cursor: pointer;
}

.autocompleter-item:hover {
    /* Hover State */
    color: #1e90ff;
}

.autocompleter-item-selected {
    /* Selected State */
    color: #1e90ff;
}

.autocompleter-item strong {
    /* Highlight Matches */
}

.autocompleter-hint {
    width: 100%;
    display: none;

    /** Need absolute position over input text */
}

.autocompleter-hint-show {
    display: block;
}

.autocompleter-hint span {
    color: transparent;
}
