.select_container * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/*----------------------------------------------------------------------------*/
.select_container {
	position: static;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	overflow: visible;
}
	.select_container select {
		height: 40px;
		padding-right: 25px;
		border: none;
		vertical-align: top;
		visibility: hidden;
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";  
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
		z-index: 10;
	}
	.ie9 .select_container select {
		padding: 0;
	}
	.select_container.touch-select select {
		visibility: visible;
	}
	.select_container .selecthead {
		position: relative;
		font-size: 16px;
		height: 42px;
		line-height: 40px;
		padding: 0;
		border: 1px solid #cbcbcb;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		background: #ffffff;
		display: block;
		text-indent: 0 !important;
		overflow: hidden;
		outline: none;
		cursor: pointer;
		color: #ff9702;
	}
	.select_container.focus .selecthead {
		border-color: #a8d6f0;
	}
	.select_container.error .selecthead {
		border-color: #f0a8b3;
		background: #fffbfb;
		color: #ea4949;
	}
		.select_container .selecthead .select_title {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			overflow: hidden;
			display: block;
			z-index: 5px;
		}
			.select_container .selecthead .select_text {
				height: 100%;
				padding: 0 0 0 19px;
				margin: 0 40px 0 0;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
				display: block;
			}
			.select_container .selecthead .select_button {
				position: absolute;
				top: 0;
				right: 0;
				width: 40px;
				height: 100%;
			}
				.select_container .selecthead .select_arrow {
					position: absolute;
					top: 18px;
					right: 19px;
					width: 0;
					height: 0;
					border-top: 7px solid #006492;
					border-left: 7px solid transparent;
					border-right: 7px solid transparent;
				}
				.select_container:hover .selecthead .select_arrow {
					border-top-color: #ffa302;
				}
				.select_container.error .selecthead .select_arrow {
					border-color: #f0a8b3;
				}
	.select_container .selectbody {
		position: absolute;
		min-width: 100%;
		margin: -1px 0 0 0;
		z-index: 500;
	}
		.select_container .selectbody .select_outer {
			position: relative;
			font-size: 16px;
			line-height: 20px;
			border: 1px solid #cbcbcb;
			padding: 0;
			background: #fff;
			color: #ff9702;
		}
		.select_container.focus .selectbody .select_outer {
			border-color: #a8d6f0;
		}
		.select_container.error .selectbody .select_outer {
			border-color: #f0a8b3;
			background: #fffbfb;
			color: #ea4949;
		}
		.select_container.top_position .selectbody .select_outer {
			
		}
			.select_container .selectbody .select_inner {
				position: relative;
				overflow: hidden;
				overflow-y: auto;
			}
			.select_container.top_position .selectbody .select_inner {
				
			}
				.select_container .selectbody .select_list {
					padding: 0;
					margin: 0;
				}
					.select_container .selectbody .select_item {
						padding: 0;
						margin: 0;
						list-style: none;
					}
					.select_container .selectbody .select_item.group_item {
						padding: 8px 0 12px 0;
					}
					.select_container .selectbody .select_item.group_item + .select_item.group_item {
						border-top: 1px solid #e3dfd4;
					}
						.select_container .selectbody .select_item:before {
							display: none;
						}
						.select_container .selectbody .select_optgroup {
							
						}
						.select_container .selectbody .select_link {
							position: relative;
							padding: 4px 19px 4px 19px;
							display: block;
							text-decoration: none;
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
							color: inherit;
						}
						.select_container .selectbody .selected .select_link, .select_container .selectbody .select_link:hover {
							background: #f5fafe;
						}
						.select_container .selectbody .disabled .select_link {
							background: none;
							cursor: default;
							color: #666;
						}
						.select_container.multiple .selectbody .select_link {
							padding-left: 35px;
						}
							.select_container.multiple .selectbody .select_link:before {
								position: absolute;
								content: "";
								top: 5px;
								left: 7px;
								width: 19px;
								height: 19px;
							}
							.select_container.multiple .selectbody .selected .select_link:before {
								background-position: 0 -20px;
							}
							.select_container.multiple .selectbody .select_link:after {
								content: "";
								width: 20px;
								display: inline-block;
								float: right;
							}