.select_wrapper {
	margin-top:10px;
}
.selecter {
	display: block;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 18px;
	position: relative;
	z-index: 1;
	cursor: pointer;
}
.selecter-options::-webkit-scrollbar {
	border-right: 5px solid rgba(255,255,255,0);
	width: 7px;
}
.selecter-options::-webkit-scrollbar-thumb {
	background-color: #9a9a9a;
	border: 0;
	border-radius: 5px;
}
.selecter-options::-webkit-scrollbar-thumb:hover {
	background-color: #888888;
}
.selecter:focus {
	box-shadow: none;
	outline: none;
}
.selecter,
.selecter * {
	moz-user-select: none !important;
	ms-user-select: none !important;
	user-select: none !important;
	webkit-user-select: none !important;
}
.selecter-element {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}
.selecter-element,
.selecter-element:focus {
	outline: none;
	webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	webkit-tap-highlight-color: transparent;
}
.no-opacity .selecter-element {
	left: -999999px;
}
.selecter-selected {
	appearance: none;
	position: relative;
	border: 1px solid #b7c7d3; 
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background-color: #e9f4ff; 
	-moz-box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	-webkit-box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	background-image: -moz-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: -o-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: -webkit-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%);
	color: #8496a4;
	padding: 16px 35px 16px 10px;
	font: 14px "Roboto-Light", sans-serif;
	z-index: 2;
}
.selecter-item:hover {
	background-color: grey; 
}
.selecter-selected:after {
	content:"";
	position: absolute;
	width: 15px;
	height: 8px;
	top: 20px;
	right: 11px;
	background: url(../images/background/sprite.png) -88px -59px;
}
.selecter-options {
	background-color: #f2f2f2;
	border: 1px solid #dedede;
	border-radius: 6px;
	display: none;
	left: 0;
	margin: 0;
	max-height: 253px;
	moz-border-radius: 6px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 12px 0 0 0;
	position: absolute;
	top: 100%;
	webkit-border-radius: 6px;
	width: 100%;
	z-index: 50;
}
.selecter-options.scroller {
	position: absolute;
}
.no-opacity .selecter-options {
	width: auto;
}
.selecter-group {
	border-bottom: 1px solid #cccccc;
	color: #999999;
	display: block;
	font-size: 11px;
	padding: 10px 15px;
	text-transform: uppercase;
}
.selecter-item {
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 8px 17px;
	background-color: #e9f4ff; 
	-moz-box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	-webkit-box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	box-shadow: 0 3px 0 rgba(0,0,0,.03); 
	background-image: -moz-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: -o-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: -webkit-linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%); 
	background-image: linear-gradient(bottom, #ecf6ff 0%, #fff 30.44%, #feffff 100%);
	color: #8496a4;
	width: 100%;
}
.selecter-item:first-child {
	margin-top: 12px;
}
.selecter-item.placeholder {
	display: none;
}
.selecter-item.selected {
	background: #eeeeee;
}
.selecter-item.disabled {
	color: #999999;
	cursor: default;
}
.selecter-item:first-child {
	border-radius: 0;
}
.selecter-item:last-child {
	border-radius: 0 0 2px 2px;
}
.no-touch .selecter-item:hover,
.no-touch .selecter-item.selected:hover {
	background-color: #e6e6e6;
	color: #2c9737;
}
.selecter-item.disabled,
.no-touch .selecter-item.disabled:hover {
	background-color: #ffffff;
	color: #cccccc;
}
.selecter.open {
	z-index: 3;
}
.selecter.open .selecter-selected {
	border-radius: 3px 3px 0 0;
	z-index: 51;
}
.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
	background-color: #ffffff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.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;
}
.selecter.bottom .selecter-options {
	border-width: 1px 1px 0;
	top: 100%;
}
.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;
}
.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;
}
.selecter.multiple .selecter-options {
	border-radius: 3px;
	border-width: 1px;
	box-shadow: none;
	display: block;
	position: static;
	width: 100%;
}
.selecter.disabled .selecter-selected {
	background: #ffffff;
	border-color: #cccccc;
	color: #cccccc;
	cursor: default;
}
.selecter.disabled .selecter-options {
	background: #ffffff;
	border-color: #cccccc;
}
.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
	border-color: #cccccc;
	color: #cccccc;
	cursor: default;
}
.selecter.disabled .selecter-item.selected,
.no-touch .selecter.disabled .selecter-item.selected:hover {
	background: #fafafa;
}
.selecter.disabled .selecter-item,
.no-touch .selecter.disabled .selecter-item:hover {
	background-color: #ffffff;
	color: #cccccc;
}
.selecter-options.scroller {
	overflow: hidden;
}
.selecter-options.scroller .scroller-content {
	max-height: 260px;
	padding: 0;
}