.noUglySelect {
	position: relative;
	left: 0;
	top: 0;
}
.noUglySelect-control {
	display: block;
	font-size: 14px;
	height: 14px;
	border: 1px solid #EEEEEE;
	padding: 0 10px;
	cursor: pointer;
}
.noUglySelect-label {
	color: #4C4C84;
	margin-right: 5px;
	float: left;
}
.noUglySelect-caret {
	display: block;
	float: right;
	position: relative;
	height: 100%;
}
.noUglySelect-caret:before {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -2px;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #4C4C84;
}
.noUglySelect-dropdown {
	display: none;
	list-style: none outside none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
	border: 1px solid #EEEEEE;
	font-size: 14px;
	z-index: 99;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.176);
			box-shadow: 0 2px 5px rgba(0, 0, 0, 0.176);
}
.noUglySelect-dropdown > li > a {
	color: #333333;
	display: block;
	font-weight: 600;
	line-height: 28px;
	padding: 0 10px;
	white-space: nowrap;
	cursor: pointer;
}
.noUglySelect-dropdown > li > a:hover,
.noUglySelect-dropdown > li > a:focus,
.noUglySelect-dropdown > li > a.active {
	background-color: #7777B2;
	color: #FFFFFF;
	text-decoration: none;
}
.noUglySelect-dropdown > li > a.active {
	background-color: #616199;
}