.tsInput {
	/*border: 2px skyblue solid;*/
	/*border-radius: 8px;*/
}
.tsArea{
	position: absolute;
	width:200px;
	z-index: 100000;
	overflow: auto;
	height: 400px;
	/*border-radius: 8px;*/
}

ul.TapSuggest{
	padding: 0;
	color: #333;
	background-color:#FFF;
	
	/*border: 2px skyblue solid;*/
	/*border-radius: 8px;*/
	/*
	position: absolute;
	width: 200px;
	*/
}

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

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

ul.TapSuggest li:hover{background:#eee;}


ul.TapSuggest li:first-child{
	/*margin-top: 10px;*/
	/*border-top-left-radius: 8px;
	border-top-right-radius: 8px;*/
}

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

ul.TapSuggest li::after{
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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