/**
 * multiple select plugin
 * @date: 2017/09/13
 * @author: liugl@inspur.com
 */
 .multsel-style {
	min-width:160px;
	border:1px solid #ccc;
	height:35px;
	line-height:35px;
	position:relative;
	display:inline-block;
	font-size: 12px;
	color: #333;
	margin-right: 10px;
	background-color: #FFF;
}
.multsel-style span.view {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 101;
	box-sizing: border-box;
	padding: 0 10px;
	display:block;
	cursor:pointer;
	word-break:keep-all;
	white-space:nowrap;        
	overflow:hidden;              
	text-overflow:ellipsis;  
	width: 100%;
}
.multsel-style i {
	display:block;
	height:5px;
	width:8px;
	background:url(icons.png) no-repeat 0 -60px;
	position:absolute;
	right:5px;
	top:12px;
}
.multsel-style i.pop {
	background-position:-8px -67px;
}
.multsel-style .selist {
	position:absolute;
	top:36px;
	z-index: 100;
	display:none;
	width:100%;
	border:1px solid #ddd;
	height: 200px;
	overflow-y: auto;
}
.multsel-style .selist a.seitem {
	display:block;
	height:35px;
	padding-left:10px;
	cursor:pointer;
	background-color:#fff;
}
.multsel-style .selist a.seitem:hover {
	background-color:#f1f1f1;
}
.multsel-style .selist a.checked {
	background-color:#ddd !important;
}