﻿/* Autocomplete */
.search .text {
    position: relative;
}

.search .autocomplete {
    margin-top: 10px;
    padding-bottom: 2px;
    left: 13px;
    right: 12px;
}

.autocomplete {
    display: none;
    padding: 10px 0 5px;
    position: absolute;
    z-index: 10;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 25px #888;
    box-shadow: 0 0 3px #888;
    color: #666;
    line-height: 14px;
    font-size: 13px;
    max-width: 650px;
}
.touch .autocomplete {
    line-height: 24px;
}
.ie8 .autocomplete {
    border: 1px solid #a1a1a1;
}
.autocomplete h3 {
    margin: 0 12px 1px;
    padding-bottom: 1px;
    color: #999;
    line-height: 1;
    font-size: 12px;
    font-weight: normal;
    text-transform: capitalize;
    font-style: normal;
}
.autocomplete .block {
    padding-top: 8px;
    padding-bottom: 7px;
    border-top: 1px solid #d6d6d6;
}
.autocomplete .block:first-child {
    padding-top: 0;
    border-top: none;
}
.autocomplete .list {
    padding-left: 0;
}
.autocomplete .list a,
.autocomplete .list .current {
    display: block;
    overflow: hidden;
    padding: 2px 22px 1px;
    color: #333;
    font-weight: normal;
    white-space: nowrap;
    outline: none;
    text-decoration: none;
    text-overflow: ellipsis;
}
.autocomplete .list .selected {
    background-color: #f1f1f1;
    text-overflow: ellipsis;
    list-style-type: circle;
}

.autocomplete .list a strong {
    color: #ea4335;
    font-weight: normal;
}
.autocomplete .list a em {
    padding-left: 10px;
    color: #999;
    font-size: 12px;
    font-style: normal;
}
.autocomplete .list > li {
    padding-top: 1px;
    list-style-type: none;
}
.autocomplete .list > li:first-child {
    padding-top: 0;
}
.autocomplete-table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse;
}
.autocomplete-cell-title {
    width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-cell-note {
    padding-left: 20px;
    padding-right: 15px;
}