ul.TapSuggest{
	margin: 0;
	padding: 0;
	color: #000;
	background-color:#FFF;
	position: absolute;
	width: 400px;
	z-index: 999;
	left:180px;
}

ul.TapSuggest:after{
	content:"";
	clear:both;
	display:block;
}

ul.TapSuggest li{
	display: block;
	position: relative;
	margin-bottom: -1px;
	padding: 5px 5px 5px 5px;
	border: 1px solid #DDD;
	cursor: pointer; 
}

ul.TapSuggest li:first-child{
	margin-top: 0px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

ul.TapSuggest li:last-child{
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

ul.TapSuggest li.totch{
	background-color: #FFF;
}

@media screen and (max-width: 769px){
	ul.TapSuggest{
		position: static;
		width: 100%;
	}
	ul.TapSuggest li:first-child{
		margin-top: 10px;
	}
}