/* the created new combo properties */ 
.custom-combobox {
    position: relative;
    display: inline-block;
}
/* the combo drop down button properties */
.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    border-color: #acadad;
}
/* the combo input field properties */
.custom-combobox-input {
    margin: 0;
    padding: 2px 5px;
    font-family: Verdana,Arial,Tahoma;
    font-weight: bold;
    font-size: 11px;
}

.ui-widget-content {
	/* remove the ui picture background */
    background: none;
    /* set the background color */
    background-color: #d1dbda;
    /* set the border color */
    border-color: #acadad;
}
.ui-state-default {
	/* the selected item color */
	color: #000000;
}
.ui-autocomplete {
	/* the drop down panel max height */ 
	max-height: 310px;
	/* the drop down panel max width */
	max-width: 600px;
	/* to have vertical scroll bar */
	overflow-y: auto;
	/* to hide horizontal scroll bar */
    overflow-x: hidden;
    min-height: 15px;
}
.ui-autocomplete-input {
	/* to be able to stretch with the table, otherwise will be fixed width */
	width: 100%;
}