
/* Combobox styles */
.ui-button {
    margin-left: -1px;
}

.ui-button-icon-only .ui-button-text {
    padding: 0;
    margin: 0;
    height: 20px;
    line-height: 20px;
}

.ui-autocomplete-input {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 3px;
    padding-right: 3px;
    margin: 0;
    height: 20px;
    line-height: 20px;
    background: white;
}

.ui-widget {
    font-size: 13px !important;
}

.ui-button-icon-only
{
    width: 20px;
    
}

.ui-autocomplete {
    background: white;
    height: expression( document.body.clientHeight/2.5+"px" );
    max-height: 370px;
    overflow-y: auto;
    
    /* prevent horizontal scrollbar */
    /* overflow-x: hidden; */
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}    

.ui-autocomplete li {
    white-space: nowrap;    
}

.ui-autocomplete-item-noval
{
    font-weight: bold;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    line-height: 20px;
}

.ui-combobox
{
    /* do not allow button to appear underneath the field */
    white-space: nowrap;
    /* help with alignment */
    
    vertical-align: top !important;

}