﻿/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
    position: relative
}
.easy-autocomplete input {
    float: none;
}
.easy-autocomplete a {
    display: block
}
.easy-autocomplete-container {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.easy-autocomplete-container ul {
	background:#fff;
    border-top: 1px dotted #ccc;
    display: none;
    position: relative;
    top: -1px;
    margin:0;
    padding:0;
}
.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category {
    border-color: #7f8c8d;
    border-image: none;
    border-style: solid;
    border-width: 0 1px;
    display: block;
    padding: 4px 12px
}
.easy-autocomplete-container ul li:last-child {
    border-width: 0 1px 1px
}


/*# sourceMappingURL=easy-autocomplete.min.css.map */
