.chosen-container {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-size: 1em;
	margin-bottom: 1rem;
	user-select: none;
}

.chosen-container .chosen-single abbr,
.chosen-container .chosen-single div b,
.chosen-container .chosen-search input[type="text"],
.chosen-container .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
	background-image: url("../images/chosen-sprite.png");
	background-repeat: no-repeat;
}

.chosen-container .chosen-drop {
	position: absolute;
	width: 100%;
	top: 100%;
	left: -9999px;
	z-index: 1010;
	background: #fff;
	border: 1px solid #999999;
	border-top: 0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.chosen-container.chosen-with-drop .chosen-drop {
	left: 0;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: normal;
	color: #999999;
}

.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
	content: ":";
	display: inline;
	padding-left: 2px;
	vertical-align: top;
}

.chosen-container-single .chosen-single {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2rem;
	line-height: 1.8rem;
	padding: 0 0 0 0.5rem;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid #CCCCCC;
	background-clip: padding-box;
	background-color: rgba(255, 255, 255, 0.75);
	color: #444;
}

.chosen-container-single .chosen-default {
	color: #999;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 1.5rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
	position: absolute;
	top: 0.125rem;
	right: 1rem;
	display: block;
	width: 1.5rem;
	height: 1.625rem;
	background-position: 0 -24px;
	font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -24px -24px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
	display: block;
	position: absolute;
	top: 0.125rem;
	right: 0;
	width: 1rem;
	height: 1.625rem;
	border-left: 1px solid #CCCCCC;
}

.chosen-container-single .chosen-single div b {
	display: block;
	width: 100%;
	height: 100%;
	background-position: -5px 2px;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
	width: 100%;
	height: 2rem;
	line-height: normal;
	margin: 1px 0;
	padding: 0.25rem 1.5rem 0.25rem 0.5rem;
	outline: 0;
	font-size: 1em;
	border-radius: 0;
	border: 1px solid #CCCCCC;
	background-position: 100% -45px;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	position: absolute;
	left: -9999px;
}

.chosen-container .chosen-results {
	position: relative;
	margin: 0 0.5rem 0.5rem 0;
	padding: 0 0 0 0.5rem;
	max-height: 240px;
	overflow-x: hidden;
	overflow-y: auto;
	color: #444;
}

.chosen-container .chosen-results li {
	display: none;
	line-height: 15px;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	font-size: 0.9em;
	word-wrap: break-word;
}

.chosen-container .chosen-results li:before {
	display: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #262626;
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: bold;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 1rem;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	min-height: 2rem;
	margin: 0;
	padding: 0 0.125rem 0.125rem 0;
	cursor: text;
	border: 1px solid #CCCCCC;
	background-color: #fff;
}

.chosen-container-multi .chosen-choices li {
	display: block;
	float: left;
	list-style: none;
	margin: 0.125rem 0 0 0.125rem;
	min-height: 1.625rem;
}

.chosen-container-multi .chosen-choices li:before {
	display: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	margin: 0;
	padding: 0 0.5rem;
	height: 1.625rem;
	outline: 0;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none;
	color: #999;
	font-size: 100%;
	font-family: sans-serif;
	line-height: normal;
	border-radius: 0;
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	padding: 0.25rem 1.5rem 0.25rem 0.5rem;
	max-width: 100%;
	line-height: 1em;
	cursor: default;
	background-color: #eeeeee;
	border: 1px solid #CCCCCC;
	color: #333;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-position: 0 -24px;
	font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -24px -24px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
	padding-right: 0.5rem;
	border: 1px solid #ccc;
	background-color: #e4e4e4;
	color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #ffedd9;
	border-color: #bb6600;
	color: #bb6600;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -24px -24px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container-active .chosen-single {
	background-color: #FFF;
	border: 1px solid #999999;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -29px 2px;
}

.chosen-container-active .chosen-choices {
	border: 1px solid #999999;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: #222 !important;
}

.chosen-disabled {
	opacity: 0.5 !important;
	cursor: default;
}

.chosen-disabled .chosen-single,
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.touch .chosen-container-single .chosen-single {
	height: 2.5rem;
	line-height: 2.3rem;
}

.touch .chosen-container-single .chosen-single abbr {
	height: 2.125rem;
	background-position: 0 -20px;
}

.touch .chosen-container-single .chosen-single abbr:hover {
	background-position: -24px -20px;
}

.touch .chosen-container-single .chosen-single div {
	height: 2.125rem;
}

.touch .chosen-container-single .chosen-single div b {
	background-position: -5px 6px;
}

.touch .chosen-container-single .chosen-search input[type="text"] {
	height: 2.5rem;
	background-position: 100% -41px;
}

.touch .chosen-results li {
	line-height: 24px;
}

.touch .chosen-choices li {
	min-height: 2.125rem;
}

.touch .chosen-choices li.search-field input[type="text"] {
	height: 2.125rem;
}

.touch .chosen-choices li.search-choice {
	line-height: 1.5em;
}

.touch .chosen-choices li.search-choice .search-choice-close {
	height: 2rem;
	background-position: 0 -20px;
}

.touch .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -24px -20px;
}

.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 0.5rem 0 0;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 1.5rem;
	direction: rtl;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 0;
	border-left: none;
	border-right: 1px solid #CCCCCC;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 0;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
	direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
	padding: 0.25rem 0.5rem 0.25rem 1.5rem;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 0;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 0.5rem 0.5rem;
	padding: 0 0.5rem 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 1rem;
	padding-left: 0;
}

.chosen-rtl .chosen-search input[type="text"] {
	padding: 0.25rem 0.5rem 0.25rem 1.5rem;
	background-position: -24px -45px;
	direction: rtl;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 1.5 / 1), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {

.chosen-container .chosen-single abbr,
.chosen-container .chosen-single div b,
.chosen-container .chosen-search input[type="text"],
.chosen-container .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
	background-image: url("../images/chosen-sprite@2x.png");
	background-size: 48px 72px;
}

}

