.getinput-autocomplete-holder {
	position: relative;
}
.getinput-autocomplete-list {
	position: absolute;
	display: none;
	min-height: 100px;
	border: 1px solid darkgray;
	border-radius: 4px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	background: #fff none;
	box-shadow: 5px 5px 5px darkgray;
}
.getinput-autocomplete-list ul {
	list-style: none;
	display: block;
	margin: 0px;
	padding: 0px;
}
.getinput-autocomplete-list ul li {
	display: block;
	width: calc(100% - 16px);
	padding: 3px 8px;
	cursor: pointer;
	background: #fff none;
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.getinput-autocomplete-list ul li.focused {
	background: #0078d7 none;
	color: #fff;
}
.getinput-autocomplete-list .more {
	padding: 10px 8px 20px 8px;
	color: darkgray;
	font-style: italic;
}