@charset "UTF-8";
/* CSS Document */

.minict_wrapper {
	font-family: 'Armata', sans-serif;
	color: #5A5A5A;
	background: #FFFFFF;
	position: relative;
	width: 250px;
	height: 30px;
	/*border: 1px solid #e5e5e5;*/
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.minict_wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.minict_wrapper:after {
	content: "\25BC";
	display: block;
	position: absolute;
	height: 2.1rem;
	width: 2.1rem;
	top: 0;
	right: 0;
	font-size: 0.6rem;
	line-height: 1.9rem;
	text-align: center;
	color: #5A5A5A;
	cursor: pointer;
	border-radius: 0 0 3px 3px;
}
.minict_wrapper.active:after { content: "\25BC"; }
.minict_wrapper input {
	border: 0;
	outline: none;
	background: none;
	font-family: 'Armata', sans-serif;
	color: #5A5A5A;
	font-size: 12px;
	height: 1.9rem;
	padding: 0 2.2rem 0 0.4rem;
	cursor: default;
	width: 100%;
}
.minict_wrapper ul {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	border: none;
	border-radius: 0 0 3px 3px;
	top: 24px;
	left: 0;
	max-height: 10rem;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 999999;
}
.minict_wrapper ul li {
	list-style: none;
	font-size: 14px;
	padding: 0 12px;
	cursor: pointer;
	background: #FFFFFF;
	line-height: 18px;
	width: 250px;
	padding: 6px;
}
.minict_wrapper ul li:hover { color: #5BA827; }
.minict_wrapper ul li.minict_group {
	color: #444;
	background: #f6f6f6;
	font-weight: bold;
	cursor: default;
}
.minict_wrapper ul li.minict_empty {
	display: none;
	background: #FFFFFF !important;
	color: #bbb;
	text-align: center;
	font-size: 0.9rem;
	height: 3.5rem;
	line-height: 3.3rem;
}
.minict_wrapper ul li.selected { color: #FFFFFF; background: #5BA827; }
.minict_wrapper ul li.highlighted { color: #FFFFFF; background: #819a9a; }
.minict_wrapper ul li.hidden { display: none; }
