/* Fuzzy Search Dropdown */
.bionosity-membership-options {
	display: none;
}
#fuzzOptionsList {
	display: none;
}
body #fuzzSearch {
	width: 100%;
    font-family: "Roboto Condensed";
    font-size: 16px;
	background-color: #fff;
	margin-bottom: 10px;
}
body #fuzzNameContainer {
	height: 40px;
	padding: 4px 10px;
	width: 100%;
	cursor: pointer;
	line-height: 1.9em;
	border: none;
	box-shadow: none;
}
.fuzzName {
	display: inline-block;
	width: 96%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fuzzArrow {
	width: 0;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
	border-width: 7px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	top: -3px;
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
}
.fuzzArrow:hover {
	border-top-color: #888;
}
.fuzzArrow.fuzzArrowUp {
	border-color: transparent transparent #333 transparent;
	top: -11px;
}
#fuzzDropdownContainer {
	display: none;
	width: 100%;
	margin: 0 0 5px 0;
	border: 1px solid #999;
	padding: 12px 4px 4px;
	position: relative;
}
.fuzzMagicBox {
	width: 99%;
	height: 26px;
	margin: 0 auto;
}
.fuzzSearchIcon {
	width: 20px;
	height: 30px;
	position: relative;
	display: inline-block;
	background: transparent;
	top: -20px;
	left: 95%;
}
.fuzzSearchIcon:before,
.fuzzSearchIcon:after {
	content: '';
	display: block;
	position: absolute;
	right: 5px;
}
.fuzzSearchIcon:before {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid #aaa;
}
.fuzzSearchIcon:after {
	height: 7px;
	border-right: 1px solid #aaa;
	top: 9px;
	-webkit-transform: rotate(-32deg);
	-ms-transform: rotate(-32deg);
}
#fuzzResults {
	cursor: pointer;
}
#fuzzResults li:hover {
	color: #aaa;
}
#fuzzResults li.selected {
	color: #aaa;
}
#fuzzResults li {
	list-style: none;
	margin: 20px 0;
}
