.selectricWrapper {
	position: relative;
	margin: 0;
	width: 100%;
	cursor: pointer;
}
.selectricResponsive {
	width: 100%;
}
.selectric {
	border: 1px solid #d3d3d3;
	background:#f4f4f4 url(../images/select-bg.png) repeat-x;
	position: relative;
	border-radius: 4px;
}
.selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 38px 0 0;
	padding: 10px 18px;
	font: 14px "OpenSansRegular";
	line-height: 19px;
	color: #7f7f7f;
	min-height: 18px;
}
.selectric .button {
	display: block;
	position: absolute;
	right: 13px;
	top: 12px;
	color: #BBB;
	text-align: center;
	text-indent:-9999px;
	background:url(../images/sprite_icons.png) no-repeat -323px -127px;
	width: 15px;
	height: 8px;
}
.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;
}
.selectricOpen .selectricItems {
	display: block;
}
.selectricOpen .selectric .button {
	background-position:-323px -106px;
}
.selectricDisabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: 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;
}
/* Items box */
.selectricItems {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #CCC;
	z-index: -1;
	box-shadow:none;
}
.selectricItems .selectricScroll {
	height: 100%;
	overflow: auto;
}
.selectricAbove .selectricItems {
	top: auto;
	bottom: 100%;
}
.selectricItems ul, .selectricItems li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 20px;
	min-height: 20px;
}
.selectricItems li {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #fff;
  color: #666;
  cursor: pointer;
  display: block;
  font: 14px "OpensansRegular";
  padding: 8px 18px;
}
.selectricItems li.selected {
	background: #f9f9f9;
	color: #444;
	border-top-color: #E0E0E0;
}
.selectricItems li:hover {
	background: #f9f9f9;
	color: #444;
}
.selectricItems li.disabled {
	background: #F5F5F5;
	color: #BBB;
	border-top-color: #FAFAFA;
	cursor: default;
}
