.suggest-popup {
   position: absolute;
   top: 2; left: 0;
   /* border: 2px solid #999; */
   background-color: #eee;
   color: #333;   
   padding: 2px;
   min-width: 160px;
   -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.4);
   box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.4);
   border-radius: 4px;
}
.suggest-popup ul, .suggest-popup li {
	margin: 0;
	padding: 0;
}
.suggest-popup ul {
	list-style-type: none;
}
.suggest-popup a {
	padding: 4px;
	color: #333;
	text-decoration: none;
	display: block;
	clear: both;
}
.suggest-popup a:hover, .suggest-popup a.selected {
	color: white; background-color: #999;	
}
.suggest-popup:after {
	border-bottom: 8px solid #eee;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	content: "";
	display: inline-block;
	left: 10px;
	position: absolute;
	top: -8px;
}
.suggest-popup img {
	width: 2em;
	height: 2em;
	margin-right: 4px;
	opacity:0;	
}
.suggest-popup a div {
	display: inline;
	vertical-align: 50%;
}
.suggest-popup .more {
    display: block;
    padding: 4px;
    text-align: center;
    color: #aaa;
    font-weight: bold;
    font-style: italic;
}