.autocomplete-suggestions {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
  
  position: absolute; 
  display: none; 
  /*max-height: 240px; */
  text-align: left; 
  cursor: default; 
  /*border-top: 0; */
/*
    border: 1px solid #ccc; 
    background: #fff; 
    box-shadow: -1px 1px 3px rgba(0,0,0,.1);
    box-sizing: border-box;

    z-index: 9999; 
    overflow: hidden; 
    overflow-y: auto; 
*/
}
.autocomplete-suggestion { 
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
/*
  position: relative; 
  padding: 0 .6em; 
  line-height: 23px; 
  white-space: nowrap; 
  overflow: hidden; 
  font-size: 1.02em; 
  color: #333; 
*/
}
.autocomplete-suggestion_odd {
	background-color: #DDD;
}

.autocomplete-suggestion b { 
  font-weight: bolder;
  /*color: #F00; */
}
.autocomplete-suggestion.selected { 
	background-color: #CC6600;
	color: white;
/*  background: #f0f0f0; */
}
