<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* highlight results */
.ui-autocomplete span.hl_results {
    background-color: #ffff66;
}

 
/* scroll results */
.ui-autocomplete {
    background-color:rgba(255, 255, 255, 0.9);
    overflow-y: scroll;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding for vertical scrollbar */
    padding:10px;
    margin:50px 0 0 0;
    z-index:50;
    width:475px;
    
}
 
.ui-autocomplete li {
    font-size: 16px;
    height:35px;line-height:35px;
    list-style:none;
    overflow:hidden;
}

.ui-autocomplete li .ui-state-active {background:none !important;user-select: none !important;}
 
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 250px;
}

div.ui-helper-hidden-accessible div {display:none;}</pre></body></html>