@CHARSET "UTF-8";
.sbHolder{
	background-color: #fff;
	border: solid 1px #dadada;
	font-size: 14px;
	font-weight: 400;
	height: 36px;
	position: relative;
	width: 200px;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.07); /* WebKit */
	-moz-box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.07); /* Firefox */
	box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.07); /* Standard */
}
.sbHolder:focus {
	outline:0;
}
.sbSelector{
	display: block;
	height: 36px;
	left: 0;
	line-height: 34px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	top: 0;
	right: 0;
	margin-right: 35px;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
	color: #000;
	outline: none;
	text-decoration: none;
}
.sbToggle{
	display: block;
	height: 34px;
	outline: none;
	position: absolute;
	right: 0;
	background-repeat:no-repeat;
	background-color: #f7f7f7;
	background-image: url(../img/select-icons.png);
	background-position:0 -34px;
	top: 0;
	width: 35px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent transparent transparent #dfdfdf;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.sbToggle:hover{
	background-position:  0 0;
	background-color:#333;
}
.sbToggleOpen{
	background-position: 0 -102px;
}
.sbToggleOpen:hover{
	background-position: 0 -68px;
}
.sbHolderDisabled{
	background-color: #3C3C3C;
	border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder{
	
}
.sbHolderDisabled .sbToggle{
	
}
.sbOptions{
	background-color: #212121;
	border: solid 1px #515151;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	width: 200px;
	z-index: 5;
	overflow-y: auto !important;
	border-radius: 4px;
}
.sbOptions li{
	padding: 0 7px;
}
.sbOptions a{
	border-bottom: dotted 1px #515151;
	display: block;
	outline: none;
	padding: 7px 0 7px 3px;
}
.sbOptions a:link, .sbOptions a:visited{
	color: #ddd;
	text-decoration: none;
}
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus{
	color: #E42E2E;
}
.sbOptions li.last a{
	border-bottom: none;
}
.sbOptions .sbDisabled{
	border-bottom: dotted 1px #515151;
	color: #999;
	display: block;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbGroup{
	border-bottom: dotted 1px #515151;
	color: #EBB52D;
	display: block;
	font-weight: bold;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
	padding-left: 17px;
}