.dropdown_wrapper {
	display: block;
	position: relative;
	height: 24px;
}
.dropdown_selected_choice {
	display: block;
	position: relative;
	height: 24px;
	width: 106px;
	font-size: 1.2em;
	font-size: 12px;
	line-height: 2em;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: normal;
	color: #002e3a;
	padding: 0 30px 0 18px;
	background-image: url(../img/border.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-color: #fff;
	border: none;
}
.short .dropdown_selected_choice { width: 73px; }
.wide .dropdown_selected_choice { width: 139px; }
.full .dropdown_selected_choice { width: 282px; }

.dropdown_selected_choice.dropdown_hover {
	cursor: pointer;
}

.dropdown_selected_choice .dropdown_arrow {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 24px;
	background-image: url(../img/arrow.png);
	background-position: left top;
	background-repeat: no-repeat;
}
.dropdown_selected_choice.dropdown_hover .dropdown_arrow,
.dropdown_selected_choice.dropdown_open .dropdown_arrow {
	background-position: left bottom;
	cursor: pointer;
}
.dropdown_choices {
	display: none;
	position: absolute;
	top: 24px;
	left: 0;
	width: 100%;
	z-index: 10000;
}
.dropdown_selected_choice.dropdown_open .dropdown_choices {
	display: block;
}
.dropdown_choices li {
	display: block;
	height: 24px;
}
.dropdown_choices li .dropdown_label {
	display: block !important;
	height: 24px !important;
	font-size: 1.2em !important;
	font-size: 12px !important;
	line-height: 2em !important;
	padding: 0 8px !important;
	font-family: "Source Sans Pro", sans-serif !important;
	color: #002e3a !important;
	background-color: #fff !important;
	text-transform: none !important;
}
.dropdown_choices li.dropdown_checked .dropdown_label,
.dropdown_choices li.dropdown_hover .dropdown_label {
	background-color: #bdbdbd !important;
	cursor: pointer;
}
.dropdown_choices li .dropdown_input {
	display: none;
}