
.ui-autocomplete { position: absolute; cursor: default; }	

/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */


/**---------Setting for Scrolling-----*/
	.ui-autocomplete {
		max-height: 250px;
		width:160px;		
		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: 250px;
	}

.ui-autocomplete-category {		
		padding: .2em .4em;
		line-height: 1.5;		
		text-align: right;
	}