@CHARSET "UTF-8";
.TIS-content{
	position: fixed;
	left: 100px;
	top: 100px;
	width: 230px;
	background-color: #EEEEEE;
	box-shadow: 2px 2px 5px #999;
	display: none;
	overflow-y: auto;
	overflow-x: hidden;
}
.TIS-item{
	position: relative;
	left: 0px;
	right: 0px;
	height: 29px;
	margin-top: 1px;
	border: 1px solid transparent;
	cursor: pointer;
	background-color: #fafafa;
    line-height: 29px;
}
.TIS-item-empty{
	position: relative;
	left: 0px;
	right: 0px;
	height: 29px;
	margin-top: 1px;
	border: 1px solid transparent;
	cursor: default;
	background-color: #fafafa;
    line-height: 29px;
}
.TIS-item:hover{
	/* border-color: lightskyblue; */
	background-color: #DDD;
}
.TIS-item-select{
	/* border-color: lightskybue; */
	background-color: #DDD;
}
.TIS-item-icon-content{
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 24px;
}
.TIS-item-text-content{
	position: absolute;
	left: 25px;
	top: 0px;
	bottom: 0px;
	right: 0px;
}
.TIS-item-icon{
	display: line-block;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	background-image: url(img/item.png);
	background-size: 10px;
}
.TIS-item-text{
	height: 100%;
	width: 100%;
	overflow: hidden;
	white-space: nowrap; 
	text-overflow: ellipsis;
	display: inline-block;
	padding-left: 2px;
	font-size: 12px;
	text-align:left;
	/* border-left: 1px solid #CCC; */
}
.TIS-test-icon{
}