   .ui-combobox {
        position: relative;
        display: inline-block;
    }
    .ui-combobox-toggle {
        position: absolute;
        top: 0;
        bottom: 0;
        margin-left: -1px;
        padding: 0;
        background-color: #ffffff;
        border: 1px solid rgb(150,150,150);
        /* adjust styles for IE 6/7 */
        *height: 1.2em;
        *top: 0.1em;
    }
    .ui-combobox-input {
        margin: 0;
        padding: 1em; //0.3em;
        background-color: rgb(0, 150, 0); //#ffffff;
        border: 1px solid rgb(150,150,150);
    }

	.ui-autocomplete {
     max-height: 200px;
     text-align: left;
     overflow-y: auto;
     /* prevent horizontal scrollbar */
     overflow-x: hidden;
     /* add padding to account for vertical scrollbar */
     padding-right: 0px;
    }
	/* 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: 200px;
	}