@CHARSET "UTF-8";

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

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

.autocomplete-container {
    position: relative;
    width: 478px;
    height: 80px;
    margin: 0 auto;
}

.autocomplete-input {
    padding: 9px;
    font-family: inherit;
    float: left;
    font-size: 1em;
    border: 1px solid rgba(0, 0, 0, 0.19);
    margin: 0;
}


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

.proposal-box {
    position: absolute;
    height: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.20);
    border-right: 1px solid rgba(0, 0, 0, 0.20);
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    left: 0px;
    margin-top:-1px;
    margin-left: 111px;
    width: 310px;
    background-color: rgba(255, 255, 255, 1);
}

.proposal-list {
    list-style: none;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

    .proposal-list li:hover {
        width: 300px;
        background-color: #DDDDDD;
        color: white;
    }

    .proposal-list li {
        text-align: left;
        padding: 5px;
        font-family: inherit;
        height: 25px;
        line-height: 25px;
        background-color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        width: 300px;
    }

li.proposal.selected {
    background-color: #E8E8E8;
    color: black;
}
