.aircomplete-list:after, .clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.aircomplete {
    position: relative;
}
.aircomplete-list {
    position: absolute;
    top: 100%;
    margin: 3px 0 0;
    padding: 0;
    list-style: none;
    max-height: 400px;
    overflow: auto;
    background: #f9f9f9;
    font-size: 14px;
    line-height: 16px;
    color: #999;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
    z-index:2;
}
.aircomplete-list-item {
    padding: 15px;
    border-bottom: solid 1px #ddd;
    cursor:pointer;
}
.aircomplete-list-item img {
    filter: grayscale(100%);
    opacity: .4;
}
.aircomplete-selected {
    background-color: white;
    background-color: #f1f1f1;
    color: #666;
}
.aircomplete-focused, .aircomplete-list-item:hover {
    background-color: #f1f1f1;
    color: #666;
}
.aircomplete-focused small, .aircomplete-selected small, .aircomplete-list-item:hover small {
    color: #999;
}
.aircomplete-focused img, .aircomplete-selected img, .aircomplete-list-item:hover img {
    filter: grayscale(0%);
    opacity: .6;
}
.aircomplete small {
    font-size: 12px;
    color: #bbb;
}