/*
* 候補一覧
*/
.smx-ui-suggest-list {
	position: absolute;
	box-sizing: border-box;
	width: auto;
	height: auto;
	overflow: auto;
	display: none;
	border-width: 1px;
	border-style: solid;
	border-color: #888888;
	background-color: white;
	white-space: nowrap;
	text-align: left;
}

/*
* 候補各行スタイル（未選択）
*/
.smx-ui-suggest-list .row {
	display: block;
	margin: 0;
	padding: 0.3em 0.3em;
	font-weight: normal;
	color: #333333;
	background-color: #ffffff;
	text-decoration: none;
	cursor: default;
}

/*
* 候補各行スタイル（選択）
*/
.smx-ui-suggest-list .row.sel,
	.smx-ui-suggest-list .row:hover
{
	background-color: #eeeeee;
}

/*
* 候補文字列スタイル
*/
/*.smx-ui-suggest-list .row .txt {
	margin: 0;
	padding: 0 0.3em;
	font-weight: normal;
}*/

/**
* 候補ドロップボタン
*/
.smx-ui-suggest-drop {
	text-align: center;
}
