/* 
 * Selecter v3.1.2 - 2014-05-30 
 * A jQuery plugin for replacing default select elements. Part of the Formstone Library. 
 * http://formstone.it/selecter/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */ 
	
	
#searchautocompletetoggle .selecter {
	max-width: 190px;
	width: 180px;
	float: left;
}

.selecter {
	display: block;
	position: relative;
	z-index: 1;
	outline: medium none;
}

.button .selecter .selecter-selected {
	background: #F9F9F9 url('arrow_select.png') no-repeat right center;
	border: 1px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	padding: 8px 10px;
	position: relative;
	text-overflow: clip;
	z-index: 2;
	width: 200px;
	font-size: 13px !important;
    font-weight: 600;
}

.selecter .selecter-element {
	*left: -999999px;
	height: 100%;
	left: 0;
	position: absolute;
	opacity: 0;
	width: 100%;
	z-index: 0;
}

.selecter .selecter-element,
	.selecter .selecter-element:focus {
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}

.selecter .selecter-selected {
	background: url("jquery.fs.selecter-arrow.png") no-repeat scroll right 10px center #fff;
	cursor: pointer;
    display: block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 0;
    overflow: hidden;
    padding: 0 10px;
    position: relative;
    text-overflow: clip;
    z-index: 2;
}

.button .selecter .selecter-options {
	left: 26% !important;
    margin: 0 !important;
    width: 218px !important;
}

.button .selecter .selecter-item {
    width: 96% !important;
}
.selecter .selecter-options {
	background-color: #fefefe;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	display: none;
	left: 0;
	margin: 0;
	max-height: 260px;
	overflow: auto;
	overflow-x: hidden;
	padding: 0;
	position: absolute;
	top: 100%;
	width: 100%;
	*width: auto;
	z-index: 50;
	border-style: none;
}

.selecter .selecter-group {
	background: #F9F9F9;
	border-bottom: 1px solid #e3e3e3;
	color: #999;
	display: block;
	font-size: 11px;
	padding: 5px 10px 4px;
	text-transform: uppercase;
}

.selecter .selecter-item {
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
	color: #333;
	cursor: pointer;
	display: block;
	font-size: 13px;
	margin: 0;
	overflow: hidden;
	padding: 8px 10px;
	text-overflow: ellipsis;
	width: 100%;
}

.selecter .selecter-item.selected {
	background: #F9F9F9;
}

.selecter .selecter-item.disabled {
	color: #999;
	cursor: default;
}

.selecter .selecter-item:first-child {
	border-radius: 0;
}

.selecter .selecter-item:last-child {
	border-radius: 0 0 2px 2px;
	border-bottom: 0;
}

@media screen and (min-width: 980px) {
	.selecter .selecter-item:hover,
		.selecter .selecter-item.selected:hover {
		background-color: #f3f3f3;
	}

	.selecter .selecter-item.disabled:hover {
		background-color: #fff;
	}

	.selecter:hover .selecter-selected {
		background-color: #fff;
	}

	.selecter.disabled .selecter-item:hover {
		background: #fff;
	};
}

	/* Open */
.selecter.open {
	z-index: 3;
}

.selecter.open .selecter-selected {
	z-index: 51;
}

.selecter.open .selecter-selected,
	.selecter.focus .selecter-selected {
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

	/* 'Cover' Positioning */
.selecter.cover .selecter-options {
	border-radius: 3px;
	border-width: 1px;
	top: 0;
}

.selecter.cover .selecter-options .selecter-item.first {
	border-radius: 3px 3px 0 0;
}

.selecter.cover.open .selecter-selected {
	border-radius: 3px 3px 0 0;
	z-index: 49;
}

	/* 'Bottom' Positioning */
.selecter.bottom .selecter-options {
	border-width: 1px 1px 0;
	bottom: 100%;
	top: auto;
}

.selecter.bottom .selecter-item:last-child {
	border: none;
}

.selecter.bottom.open .selecter-selected {
	border-radius: 0 0 3px 3px;
}

.selecter.bottom.open .selecter-options {
	border-radius: 3px 3px 0 0;
}

	/* 'Bottom' + 'Cover' Positioning */
.selecter.bottom.cover .selecter-options {
	bottom: 0;
	top: auto;
}

.selecter.bottom.cover.open .selecter-selected {
	border-radius: 3px;
}

.selecter.bottom.cover.open .selecter-options {
	border-radius: 3px;
}

	/* Multiple Select */
.selecter.multiple .selecter-options {
	border-radius: 3px;
	border-width: 1px;
	box-shadow: none;
	display: block;
	position: static;
	width: 100%;
}

	/* 'Disabled' State */
.selecter.disabled .selecter-selected {
	background: #fff;
	border-color: #eee;
	color: #ccc;
	cursor: default;
}

.selecter.disabled .selecter-options {
	background: #fff;
	border-color: #eee;
}

.selecter.disabled .selecter-group,
	.selecter.disabled .selecter-item {
	border-color: #eee;
	color: #ccc;
	cursor: default;
}

.selecter.disabled .selecter-item.selected {
	background: #fafafa;
}

	/* Scroller Support */
.selecter .selecter-options.scroller {
	overflow: hidden;
}

.selecter .selecter-options.scroller .scroller-content {
	max-height: 260px;
	padding: 0;
}

	/* Media Queries */
@media screen and (max-width: 740px) {
	.selecter {
		max-width: 40%;
	};
}

@media screen and (max-width: 500px) {
	.selecter {
		max-width: 100%;
	};
}