#autoComplete_results_list {
    background: #ffffff;
    position: absolute;
    width: 100%;
    top: 17px;
    border: 1px solid #ccc;
    border-radius: 3px 3px 4px 4px;
    max-height: 350px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    overflow-y: auto;
}

#autoComplete_results_list:empty {
    border: none;
    box-shadow: none;
}

#autoComplete_results_list li {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
}

#autoComplete_results_list li:hover,
#autoComplete_results_list li:focus {
    background: #efefef;
}

.autocomplete-container {
    position: relative;
    z-index: 1;
}