/* COMBOBOX */
.am-combobox { width: 100%; position: relative; margin-top:5px; }
span.am-combobox-count {
	color: #a8c7e7 !important;
	font-weight: normal;
	position: absolute;
	right: 34px;
	top:0;
	z-index: 1;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: pointer;
}

div.am-combobox-selected {
	overflow: hidden;
	color:#000;
	white-space:nowrap;
	text-overflow:ellipsis;
	font-weight: bold;
	font-size: 12px;
	line-height: 28px;
	padding: 0 20px 0 10px;
	height: 28px;
	border: 1px solid #a8c7e7;
	cursor: pointer;
	border-radius: 4px;
	background: -webkit-linear-gradient(#ffffff, #f8fcff) no-repeat center center #ffffff;
	background: -moz-linear-gradient(#ffffff, #f8fcff) no-repeat center center #ffffff;
	background: -o-linear-gradient(#ffffff, #f8fcff) no-repeat center center #ffffff;
	background: linear-gradient(#ffffff, #f8fcff) no-repeat center center #ffffff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
div.am-combobox-selected:hover {
	box-shadow: 0 0 3px #a8c7e7;
}
div.am-combobox-is-opened div.am-combobox-selected {
	border-color: #175fb9;
	box-shadow: none;
}
div.am-combobox-selected:before {
	right: 14px;
	top: 45%;
}
.am-combobox-list { position:absolute !important; z-index:10; top:32px; left:0; display:none; width:auto; min-width:100%; background-color:#ffffff; border:1px solid #a8c7e7; box-shadow:#a8c7e7 0 0 3px 0; border-radius:4px; }
/*
div.am-combobox-list:before,
div.am-combobox-list:after {
	bottom: 100%;
	left: 47%;
}
div.am-combobox-list:before {
	margin: 0 0 1px -1px;
}
*/
.am-combobox-search {
/*	margin-right: 20px;*/
	padding: 20px 20px 0;
}
.am-combobox-search input[type="text"] {
	width: 100%;
	color: #000000 !important;
	border-radius: 4px !important;
	box-shadow: 0 0 3px #ffffff;
	margin-top:0 !important;
}
input.am-combobox-search-input:hover {
	box-shadow: 0 0 3px #a8c7e7;
	border-color: #a8c7e7 !important;
}
ul.am-combobox-list-items {
	overflow-y: scroll;
	overflow-x: visible;
	margin: 18px;
}
.am-combobox-list-item { color: #175fb9; font-size: 11px; line-height: 20px; cursor: pointer; white-space:nowrap; padding-right:5px; }
.am-combobox-list-item span { border-bottom: 1px solid #ffffff; line-height:18px; color:inherit !important; display:inline !important; }
.am-combobox-list-item:hover span {	border-bottom-color: #175fb9; }
.am-combobox-list-item-selected span { border-bottom-color: #175fb9; }

div.am-combobox-multiple li.am-combobox-list-item {
	background: url("/img/unchecked.png") no-repeat left center;
	padding-left: 21px;
}
div.am-combobox-multiple li.am-combobox-list-item-selected {
	background-image: url("/img/checked.png");
}
div.am-combobox-multiple li.am-combobox-list-item-selected span {
	border-bottom-color: #ffffff;
}