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

.autocompleter {    
    display: none;	
}

.autocompleter-show {
    display: block;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
	z-index: 100;
}

.autocompleter-list {
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;	
	min-width: 260px;
	padding: 5px 0;
    margin: 2px 0 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 3px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	max-height: 220px;
	overflow: auto;
}

.autocompleter-item {
    cursor: pointer;
	padding: 3px 20px;
}

.autocompleter-item:hover {
    /* Hover State */
	color: #262626;
	background-color: #f5f5f5;
}

.autocompleter-item-selected {
    /* Selected State */
}

.autocompleter-item strong {
    /* Highlight Matches */
	color: rgb(235, 88, 88);
}

.autocompleter-hint {    
    display: none;

    /** Need absolute position over input text */
	color: #ccc;
    top: -24px;
    left: 10px;
    width: 100%;    
    font-size: 12px;
}

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

.autocompleter-hint span {
    color: transparent;
}
