/* 	Resets to be added to global styles
 *	~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.search_input_wrap input[type="text"] {
	border: 1px solid #9E649B;
	outline: none;
	padding: 1px 3px;
	width: 121px;

	-webkit-appearance: textfield;
	   -moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}
.search_input_wrap input[type="search"]::-webkit-search-cancel-button,
.search_input_wrap input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.search input[type="image"] {
	vertical-align: top;
}


/* edited Bootstrap Dropdown defaults */
.dropdown {
	position: relative;
	z-index: 1;
}
.dropdown-toggle {
	*margin-bottom: -3px;
}
.dropdown-toggle:active {
	outline: 0;
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;

	font-family: Arial, Helvetica, sans-serif;
	display: none;
	float: right;
	min-width: 160px;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #F3EBE0;
	text-align: left;
	-webkit-background-clip: padding-box; background-clip: padding-box;

	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.dropdown-menu strong {
	font-family: Arial, Helvetica, sans-serif;
}

/* @k_bav's attempt at boosting dropdown accessibility + general fanciness */
.dropdown-menu-plus {
	/* use the .visuallyHidden method via h5bp.com/v ; is a + for accessability */
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	/* end .vissuallyHidden method */

	display: block;
	min-width: auto;
	opacity: 0;
	z-index: 5;

	/*the "moving" methods*/
	/*top: 0;*/
	-webkit-transform: translateY(-20px);
	   -moz-transform: translateY(-20px);
	     -o-transform: translateY(-20px);
	        transform: translateY(-20px);

	-webkit-transition: -webkit-transform 200ms ease-out, opacity 350ms ease-out;
	   -moz-transition:    -moz-transform 200ms ease-out, opacity 350ms ease-out;
	     -o-transition:      -o-transform 200ms ease-out, opacity 350ms ease-out;
	        transition:         transform 200ms ease-out, opacity 350ms ease-out;

	-webkit-backface-visibility: hidden; /* fixes Safari text flash */
}
.dropdown-menu .divider {
	*width: 100%;
	height: 1px;
	margin: 9px 1px;
	*margin: -5px 0 5px;
	overflow: hidden;
	background-color: #e5e5e5;
	border-bottom: 1px solid #ffffff;
}
.dropdown-menu > li > a {
	display: block;
	padding: 4px 4px;
	clear: both;
	font-weight: normal;
	line-height: 1.2em;
	color: #333333;
	white-space: normal;
	text-decoration: none;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
	text-decoration: none;
	color: #ffffff;
	/*background-color: #636;*/
	background-color: #84C22D;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #ffffff;
	text-decoration: none;
	outline: 0;
	/*background-color: #636;*/
	background-color: #84C22D;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	cursor: default;
}

.search_input_wrap {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top;
	position: relative;
}


.typeahead {
	top: 100%;
	right: 1px;
}
/* helps the typeahead dropdown to stand out on oldIE */
.lt-ie9 .typeahead {
	/*border: 1px solid #636;*/
	border: 1px solid #84C22D;
	border-top: 0;
}
