/* 
 * Autocompleter v0.1.2.1 - 2014-05-23 
 * Simple, easy, customisable and with cache support. 
 * http://github.com/ArtemFitiskin/jquery-autocompleter 
 * 
 * Copyright 2014 Artem Fitiskin; MIT Licensed 
 */ 

.autocompleter {
    width: 100%;
    display: none;
}

.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 img {
   width:64px;
   height:64px;
}
.autocompleter-item:hover {
    /* Hover State */
}

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

.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;
}



.in01{position:relative;}
.autocompleter{left:0;top:40px;border:1px solid #ddd; background:#fff; z-index: 1000;}
.autocompleter ul{ overflow: hidden;}
.autocompleter li{ border-bottom:1px solid #eee; padding: 10px 0; float:left; width: 100%; position: relative;}
.autocompleter li img{ width:48px; height: 48px; float: left; display:none; padding: 0 0 0 15px;}
.autocompleter li span{float:left; height: 20px; line-height: 20px; padding: 0 0 0 15px; font-size: 14px;}
.autocompleter li a{position: absolute;top:20px;width:80px; height:30px; line-height: 30px; font-size: 14px; text-align: center; color: #fff;background: #22b600;border-radius:5px; display: none; z-index:10000; }
.autocompleter li a.an_dl{right:100px; }
.autocompleter li a.ios_dl{right:10px; }
.autocompleter li:nth-child(1) img {display: block;}
.autocompleter li:nth-child(1) span{height: 48px; line-height: 48px;}
.autocompleter li:nth-child(1) a{ display: block;}
.autocompleter li:hover{ background: #eee;}