.hidden_select_container {
	width: 0;
	height: 0;
	overflow: hidden;
}
.simpleselect, .simpleselect * {
	box-sizing: content-box;
}
.simpleselect {
	font-family: 'Open Sans', sans-serif;
	position: relative;
	height: 37px;
	color: #404040;
	font-size: 14px;
	width: 160px;
}
.simpleselect .options {
	width: 198px;
}
.simpleselect .placeholder, .simpleselect .options .option, .simpleselect .options .optgroup .optgroup-label {
	padding: 9px 10px;
	line-height: 18px;
	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;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.simpleselect .placeholder {
	position: relative;
}
.simpleselect .placeholder:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 8px;
	background: url(../img/dropdown.png) 0 center no-repeat;
}
.simpleselect .placeholder:hover {
	background: #fafafa;
}
.simpleselect .options {
	display: none;
	position: absolute;
	top: 37px!important;
	left: 0;
	z-index: 1000;
	width: 100%;
}
.simpleselect .options .option.active {
	background: #666;
	color: #fff;
}
.simpleselect.disabled .placeholder, .simpleselect.disabled .placeholder:hover {
	background: #EBEBE4;
cursor: default;
font-size: 17px;
color: #666;
border: 1px solid #ccc;
}
.simpleselect.disabled .placeholder:after {
	opacity: .5;
}
