.autocomplete-suggestions {
    text-align: left; 
    cursor: default; 
    border: 2px solid #00995d; 
    border-top: 0; 
    background: #ffffff; 
    border-bottom-right-radius: 30px;
    position: absolute;
    display: none; 
    z-index: 99; 
    max-height: 254px; 
    overflow: hidden; 
    overflow-y: auto; 
    box-sizing: box;
    top: -20%;
}
.autocomplete-suggestion { 
    position: relative;
    padding: 2px 20px;
    white-space: nowrap;
    overflow: hidden;
    top: 0px;
    text-overflow: ellipsis;
    font-size: 10pt;
    color: #333;
}
.autocomplete-suggestion b { 
	font-weight: normal; 
	color: #00995d; 
}
.autocomplete-suggestion.selected { 
	background: #cacaca; 
}