.xui-custom-select {
	position: relative;
	z-index: 1;
	display: inline-block;
	height: 45px;
	width: 150px;
	/*min-width: 185px;*/			/* 设置min-width 在IE5下无效 */
	border: 1px solid #ddd;
	background-color: #fff;
	cursor: default;
  //  margin-top: 20px;
    margin-right: 20px;
}
.xui-custom-select {
	*display: inline;
}
.xui-custom-select.on {
	border-color: #ccc;
	z-index: 1000;
}
.show-info-container {
	position: relative;
	height: 100%;
	width: 100%;
	line-height: 45px;
}
.show-info-container .select-info {
	padding: 0 23px 0 8px;
	margin: 0;
	color: #333;
	font-size: 16px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.xui-custom-select .show-info-container .icon {
	position: absolute;
	right: 5px;
	top: 20px;
	width: 0;
	height: 0;
	border-width: 10px 7px 0 7px;
	border-color: #00a346 transparent;
	border-style: solid;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
}
.xui-custom-select.on .show-info-container .icon {
	transform: rotateZ(180deg);
	-webkit-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
	-ms-transform: rotateZ(180deg);
	-o-transform: rotateZ(180deg);
}
.select-list {
	position: absolute;
	top: 44px;
	left: -1px;
	z-index: 999;
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
	border: 1px solid #eee;
	box-shadow: 2px 2px 8px #eee;
	background-color: #fff;
	behavior: url("pie/PIE.htc");	/* 低版本IE上使用CSS3 */
}

.select-list li {
	line-height: 30px;
	padding: 0 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
	font-size: 14px;
    text-align: center;
}
.select-list li:hover {
	background-color: #00CC58!important;
	color: #fff;
}
.select-list li.selected {
	background-color: #00a346;
	color: #fff;
}
