.iselect{
	display: inline-block;
	position: relative;
	padding: 0;
	width: 240px;
	font-size: 0;
	border: 1px solid;
	color: #ccc;
	cursor: pointer;
	font-size: 12px;
}

.iselect-ipt{
	position: relative;
    display: block;
    width: 100%;
}

.iselect-ipt-inner{
	padding-left: 5px;
	padding-right: 30px !important;
	width: 100%;
	height: 24px;
	line-height: 24px;
	box-sizing: border-box;
	border: none;
	outline: none;
	cursor: pointer;
	font: inherit;
	color: #333;
}

.iselect-ico {
    border-left: 1px solid;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    z-index: 0;
}

.iselect-ico .arrow-down {
    display: block;
    width: 0;
    margin: 9px 0 0 6px;
    font-size: 0;
    height: 0;
    overflow: hidden;
    border-top: 6px solid;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.iselect:focus,
.iselect:hover {
	outline:0 none;
	color:#999
}

.iselect-expanded,
.iselect-expanded:hover,
.iselect-expanded:focus {
 cursor:default;
 z-index:2;
 color:#08f
}
.iselect-expanded:hover {
 color:#08f
}

.iselect-ul{
	display: none;
	width: 100%;
	left: -1px;
	background-color: #fff;
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	border: 1px solid;
	color: #08f;
	position: absolute;
	z-index: 200;
	font-size: 12px;
}

.iselect-ul li{
	color: #333;
	display: block;
	height: 20px;
	line-height: 20px;
	overflow: hidden;
	padding: 2px 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	cursor: pointer;
}

.iselect-ul li:hover {
	background-color:#08f;
	color:#fff;
	cursor:default;
}

.iselect-ul li.checked {
	background-color:#08f;
	color:#fff;
}

.iselect-ul li.hide {
	display: none;
}