/*======================================================================
  Selectric Content
======================================================================*/
.selectric-container {
	width: auto !important;
}
.selectric-content.selectricWrapper {
	position: relative;
	margin: 0 0 10px;
	width: auto;
	cursor: pointer;
}
.selectric-content.selectricResponsive {
	width: 100%;
}
.selectric-content .selectric {
	border: none;
	background: #E5E6E8;
	position: relative;
	border-radius: 0;
	height: 30px;
}
.selectric-content .selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 30px 0 0;
	padding: 6px;
	font-size: 12px;
	line-height: 18px;
	color: #444;
	min-height: 18px;
}
.selectric-content .selectric .button {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	color: #000;
	text-align: center;
	font: 0/0 a;
  /* IE Fix */
  *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
/* change this class to change right dropdown button */
.selectric-content .selectric .button:after {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	/* button arrow size: */
  border: 7px solid transparent;
	/* button arrow color: */
  border-top-color: #000;
	border-bottom: none;
}
.selectric-content.selectricHover .selectric {
	border-color: #000;
}
.selectric-content.selectricHover .selectric .button {
	color: #000;
}
.selectric-content.selectricHover .selectric .button:after {
	/* button arrow hover color: */
  border-top-color: #000;
}
.selectric-content.selectricOpen {
	z-index: 9999;
}
.selectric-content.selectricOpen .selectric {
	border-color: Transparent;
	background: #E5E6E8;
}
.selectric-content.selectricOpen .selectricItems {
	display: block;
}
.selectric-content.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;
}
.selectric-content .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;
}
.selectric-content .selectricTempShow {
	position: absolute !important;
	visibility: hidden !important;
	display: block !important;
}
/* Items box */
.selectric-content .selectricItems {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #E5E6E8; /**/
	border: none; /**/
	z-index: -1;
	box-shadow: none; /**/
}
.selectric-content .selectricItems .selectricScroll {
	height: 100%;
	overflow: auto;
}
.selectric-content .selectricAbove .selectricItems {
	top: auto;
	bottom: 100%;
}
.selectric-content .selectricItems ul, .selectric-content .selectricItems li {
	list-style: none;
	padding: 0;
	margin: 0; /**/
	font-size: 12px;
	line-height: 20px;
	min-height: 20px;
}
.selectric-content .selectricItems ul {
	float: none;
	clear: none;
}
.selectric-content .selectricItems li {
	display: block;
	padding: 5px;
	border-top: none;
	border-bottom: none;
	color: #fff;
	cursor: pointer;
	background: #B5B8BD;
	margin: 2px 0 0; /**/
}
.selectric-content .selectricItems li:first-child {
	margin: 0;
}
.selectric-content .selectricItems li.selected {
	background: #B5B8BD;
	color: #fff;
	border-top-color: #E0E0E0;
	font-weight: bold;
}
.selectric-content .selectricItems li:hover, .selectric-content .selectricItems li.selected:hover {
	background: #B5B8BD;
	color: #000;
}
.selectric-content .selectricItems li.disabled {
	background: #F5F5F5;
	color: #BBB;
	border-top-color: #FAFAFA;
	cursor: default;
}
