.autofill {
    left: 0;
    position: absolute;
    top: 0;
    width: 200px;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    display:none;

}
.autofill ul {
    background: none repeat scroll 0 0 white;
    border: 1px solid #666;
}
.autofill ul,
.autofill li { list-style:none; margin:0px; padding:0px; }
.autofill li {
    background-color:white;
    cursor: pointer;
    margin: 2px;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autofill li.selected {
    background-color: #aaa;
    color: white;
}
