@CHARSET "UTF-8";

/********************************
A jQuery plugin for search hints

Author: Lorenzo Cioni 
https://github.com/lorecioni
********************************/

.autocomplete-container {
    position: relative;
    width: 100% !important;
    height: 30px;
    margin: 0 auto;
    margin-top: 0px;
}

.autocomplete-input {
    padding: 0px;
    border-radius: 3px;
    font-family: inherit;
    float: left;
    font-size: 1em;
    border: 0px solid rgba(0, 0, 0, 0.19);
    margin: 0;
    outline: none;
    width: 100% !important;
    padding: 0px 8px;
}

.autocomplete-button {
    font-family: inherit;
    border: none;
    background-color: #990101;
    color: white;
    padding: 8px;
    float: left;
    cursor: pointer;
    border-radius: 0px 3px 3px 0px;
    transition: all 0.2s ease-out 0s;
    margin: 0.5px 0px 0px -1px;
    display: none !important;
}

    .autocomplete-button:HOVER {
        background-color: #D11E1E;
    }

.proposal-box {
    position: absolute;
    height: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.11);
    border-right: 1px solid rgba(0, 0, 0, 0.11);
    left: 0px;
    width: 225px !important;
    top: 34px !important;
}

.proposal-list {
    list-style: none;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.44);
    border: 0px solid #52658c;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}

    .proposal-list li {
        text-align: left;
        padding: 2px 7px;
        font-family: inherit;
        border-bottom: 0px solid #545454;
        min-height: 30px;
        line-height: 25px;
        color: #545454;
        background-color: #cccccc;
        cursor: pointer;
        font-size: 11px !important;
    }

li.proposal.selected {
    background-color: #52658c;
    color: white;
}
