.selectricWrapper {
	position: relative;
	width: 208px;
	cursor: pointer;
	display: block;
}

.selectricResponsive {
	width: 100%;
}

.selectric {
	position: relative;
	height: 42px;
}

.selectric .label {
	display: none;
}

.selectric .button {
	height: 40px;
	background: url(../img/png_select.png) center center no-repeat;
	width: 16px;
	position: absolute;
	right: 10px;
	top: 0;
	text-indent: -100px;
	overflow: hidden;
}

.selectricHover .selectric {
	border-color: #CCC;
}

.selectricHover .selectric .button {
	color: #888;
}

.selectricHover .selectric .button:after {
	border-top-color: #888;
}

.selectricOpen {
	z-index: 9999;
}

.selectricOpen .selectric {
	border-color: #CCC;
	background: #FFF;
	z-index: 9999;
}

.selectricOpen .selectricItems {
	display: block;
}

.selectricDisabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default;
	-webkit-touch-callout: none;
	user-select: none;
}

.selectricHideSelect {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
}

.selectricHideSelect select {
	position: absolute;
	left: -100%;
	display: none;
}

.selectricInput {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 1px !important;
	height: 1px !important;
	outline: none !important;
	border: none !important;
	*font: 0/0 a !important;
	background: none !important;
}

.selectricTempShow {
	position: absolute !important;
	visibility: hidden !important;
	display: block !important;
}

.selectricItems {
	display: none;
	position: absolute;
	overflow: auto;
	top: 100%;
	left: 0;
	background: #FFF;
	border: 1px solid #CCC;
	z-index: 9998;
	box-shadow: 0 0 10px -6px;
	width: auto !important;
	min-width: 208px;
	overflow-x: hidden;
}

.selectricItems ul,.selectricItems li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 20px;
	min-height: 20px;
}

.selectricItems li {
	display: block;
	padding: 5px;
	color: #666;
	cursor: pointer;
}

.selectricItems li.selected {
	background: #B7C3C3;
	color: #444;
	border-top-color: #E0E0E0;
}

.selectricItems li:hover {
	background: #B7C3C3;
	color: #444;
}

.selectricItems li.disabled {
	background: #F5F5F5;
	color: #BBB;
	border-top-color: #FAFAFA;
	cursor: default;
}