/* 
 * 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: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;
}










/**
 * simplecomplete
 */

.autocompleter {
    width: 100%;
    background: #dddddd;
    z-index: 100;
}

.autocompleter,
.autocompleter-hint {
}

.autocompleter-list {
    box-shadow: inset 0px 0px 6px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.autocompleter-item-selected {
    background: #ffffff;
}

.autocompleter-item {
    padding: 6px 12px;
    color: #444444;
    font-size: 20px;
    cursor: pointer;
}

.autocompleter-item:hover {
    background: #dbed8a;
}

.autocompleter-item strong {
    background: #f9de8f;
    text-shadow: 0 1px 0 #ffffff;
}

.autocompleter-item span {
    color: #bbbbbb;
}

.autocompleter-hint {
    color: #ccc;
    text-align: left;
    top: -56px;
    font-weight: 400;
    width: 100%;
    padding: 12px 12px 12px 13px;
    font-size: 24px;
    display: none;
}

.autocompleter-hint span {
    color: transparent;
}

.autocompleter-hint-show {
    display: block;
}

.autocompleter-closed {
    display: none;
}

.now_city>.autocompleter{
    position: absolute;
    top: 46px;
    border: 1px solid #ddd;
    width: 177px !important;
    font-size: 14px !important;
    left: 315px;
    line-height: 34px;
	background-color:#fff;
	}

.now_city>.autocompleter>ul>li{
	font-size:14px;
	line-height: 18px;
	}