.select{
	  display:inline-block;
	  background-color: rgb( 255, 255, 255 );
	  box-sizing: border-box;
	  height: 30px;
	  margin: 5px 0;
	  cursor:pointer;
	  border-radius: 5px;
	  box-shadow:none;
	  overflow:hidden
}
.select.date{
	background-position:92% 50%;
}
.select.expanded{
	border-bottom-left-radius:0 !important;
	border-bottom-right-radius:0 !important;
}
.select select{display:none}
.select .selected{
	width:100%;
	height:100%;
	color:#000000;
	border:none;
	background:none;
	font-size:inherit;
	line-height:36px;
	/*display:inline-block;*/
	text-align:left;
	box-sizing:border-box;
	white-space:nowrap
}
.drop-box{
	position:absolute;
	left:0;
	background-color:#ffffff;
	z-index:1000;
	display:none;
	overflow-x:hidden;
	overflow-y:visible;
	border-bottom-left-radius:2px;
	border-bottom-right-radius:2px;
	border:1px solid #c1c9d0;
	max-height:200px
}
.drop-box .item{
	padding:5px 10px;
	color:#555555;
	display:block;
	font-size:inherit;
	cursor:pointer
}
.drop-box .item.disabled:hover,
.drop-box .item.disabled{
	background:#f0f0f0;
	cursor:default
}
.drop-box .item:hover{
	background:#dedede
}