.hidden_select_container {
	width: 0;
	height: 0;
	overflow: hidden;
}

.simpleselect,
.simpleselect * {
	box-sizing: content-box;
}

.simpleselect {
	position: relative;
	width: 200px;
	height: 38px;
	color: #4990E2;
	font-size: 12px;
}

.simpleselect .options {
	width: 198px;
}

.simpleselect .placeholder,
.simpleselect .options .option,
.simpleselect .options .optgroup .optgroup-label {
    padding: 9px 8px;
    line-height: 10px;
    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 #4990E2;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	text-transform:uppercase;
	font-weight:500;
}

.simpleselect .placeholder {
	position: relative;
}

.simpleselect .placeholder:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 14px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAABGdBTUEAALGPC/xhBQAAAPBJREFUGBljYCATMCo0HbP/9+ffWmYmxqD7DdaH8Jmj1HDE5s8/hg1MLEzBTA/qrA4yMf0P+fv/31rFhqN2uDTKNxyz+vP//3pGJsYwsB6QwgcNtgdAAn///V8HMhVds0LTcfP///9uBLoq6mGD9T6QPCOyIvmGo07///9bycLIGHivweYISA5okAnQpu1MjMyxDxqsdsDUo2gECco1HnNm+Pd3BQMzSwDjP4bvDP/+7GBgZkp8WG+9FaYJRGNoBAnKNRx2YfzPsBkozcTEyBB6v8FmE0gcGTAhc2DsJAabfTyMzNKc7KxSJlqoNsHUAADBdlKzPsFiSwAAAABJRU5ErkJggg==") 0 center no-repeat;
}

.simpleselect .placeholder:hover {
	background: #99BAD2;
	color: #fff;
}

.simpleselect .options {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}

.simpleselect .options .option.active {
	background: #99BAD2;
	color: #fff;
}

.simpleselect.disabled .placeholder,
.simpleselect.disabled .placeholder:hover {
	background: #fafafa;
	color: #aaa;
	border-color: #eee;
	cursor: default;
}

.simpleselect.disabled .placeholder:after {
	opacity: .5;
}