@CHARSET "UTF-8";
.sbHolder{
	background-color: transparent;
	font-family: roboto, sans-serif;
	font-size: 14px;
	font-weight: normal;
	height: 40px;
	position: relative;
	width: 100%;
	margin-bottom: 12px;
}

.sbSelector{
	display: block;
	height: 40px;	
	border: solid 1px #ededed;
	padding: 0 32px 0 12px;
	left: 0;
	line-height: 38px;
	outline: none;
	overflow: hidden;
	color: #818c96;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transition: all 200ms ease-in-out;  /* FF3.7+ */
	-o-transition: all 200ms ease-in-out;  /* Opera 10.5 */
	-webkit-transition: all 200ms ease-in-out;  /* Saf3.2+, Chrome */
	transition: all 200ms ease-in-out;
}

.sbSelector.sbFocus, .sbToggleOpen + .sbSelector {
	border-color: #818c96;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
	color: #818c96;
	outline: none;
	text-decoration: none;
}

.nosnik .sbSelector:link, .nosnik .sbSelector:visited, .nosnik .sbSelector:hover {
	color: #818c96;
}
.sbToggle{
	background: url(../img/select.png) 100% center no-repeat;
	display: block;
	height: 40px;
	outline: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
}

.sbOptions{
	background-color: #fff;
	border: solid 1px #818c96;
	list-style: none;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 38px;
	width: 100%;
	z-index: 1;
	overflow-y: auto;
}

.sbOptions li{
	padding: 0;
}
.sbOptions a{
	border-bottom: dashed 1px #818c96;
	display: block;
	outline: none;
	padding: 8px 12px;
	color: #818c96 !important;
	-moz-transition: all 200ms ease-in-out;  /* FF3.7+ */
	-o-transition: all 200ms ease-in-out;  /* Opera 10.5 */
	-webkit-transition: all 200ms ease-in-out;  /* Saf3.2+, Chrome */
	transition: all 200ms ease-in-out;
}
.sbOptions li:last-child a{
	border: none
}
.sbOptions a:link, .sbOptions a:visited{
	text-decoration: none;
}
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus{
	border-color: #818c96;
	background: #f8f8f8;
}
.sbOptions li.last a{
	border-bottom: none;
}
.sbOptions .sbDisabled{
	border-bottom: dotted 1px #515151;
	color: #999;
	display: block;
	padding: 7px 0 7px 3px;
}

.sbHolderDisabled .sbSelector {
	
}

.sbHolderDisabled .sbSelector {
	color: #c4c7c9 !important;
	border-color: #ededed !important;
	cursor: default;
}

.sbHolderDisabled .sbToggle {
	background-image: url(../img/select-disabled.png);
}
.sbOptions .sbGroup{
	border-bottom: dotted 1px #515151;
	display: block;
	font-weight: bold;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
	padding-left: 17px;
}