.hidden_select_container {
	width: 0;
	height: 0;
	overflow: hidden
}
.simpleselect, .simpleselect * {
	box-sizing: content-box
}
.simpleselect {
	position: relative;
	width: 100%;
	height: 38px;
	color: #666;
	font-size: 13px
}
.simpleselect .options {
	width: 290px
}
.simpleselect .placeholder, .simpleselect .options .option, .simpleselect .options .optgroup .optgroup-label {
	padding: 13px 10px;
	line-height: 16px;
	cursor: pointer
}
.simpleselect .options .optgroup .optgroup-label {
	cursor: default;
	font-weight: bold
}
.simpleselect .options .optgroup .option {
	padding-left: 20px
}
.simpleselect .placeholder, .simpleselect .options {
	background: #fff;font-family: 'proximanovalight'; font-size:18px;
	border: 1px solid #ddd;
}
.simpleselect .placeholder {
	position: relative
}
.simpleselect .placeholder:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 25px;
	background:url(../images/_mg_down_arrow.png) no-repeat 0 center;
}
.simpleselect .placeholder:hover {
	background: #fafafa
}
.simpleselect .options {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000
}
.simpleselect .options .option.active {
	background: #F45040;
	color: #fff
}
.simpleselect.disabled .placeholder, .simpleselect.disabled .placeholder:hover {
	background: #fafafa;
	color: #aaa;
	border-color: #eee;
	cursor: default
}
.simpleselect.disabled .placeholder:after {
	opacity: .5
}
