@CHARSET "UTF-8";
.sbHolder{
    background-color: #fff;
    border: solid 1px #ccc;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    height: 22px;
    position: relative;
    width: 100%;
    /*box-sizing: content-box;*/
}
.sbHolder:focus .sbSelector{
	
}
.sbSelector{
    display: block;
    height: 20px;
    left: 0;
    line-height: 20px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 5px;
    top: 0;
    width: 100%;
    max-width: calc(100% - 20px);
    padding-right: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
    color: #515151;
    outline: none;
    text-decoration: none;
}
.sbToggle{
    background: url(select-icons.png) 0 -20px no-repeat #c9c9c9;
    display: block;
    height: 20px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}
.sbToggle:hover{
    background: url(select-icons.png) 0 -20px no-repeat #c9c9c9;
}
.sbToggleOpen{
    background: url(select-icons.png) 0 0 no-repeat #c9c9c9;
}
.sbToggleOpen:hover{
    background: url(select-icons.png) 0 0 no-repeat #c9c9c9;
}
.sbHolderDisabled{
    background-color: #ebebeb;
    border: solid 1px #ccc;
}
.sbHolderDisabled .sbHolder{
	
}
.sbHolderDisabled .sbToggle{
	
}
.sbOptions{
    background-color: #fff;
    border: solid 1px #ccc;
    list-style: none;
    left: -1px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 1;
    overflow-y: auto;
    -webkit-box-sizing: content-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: content-box;    /* Firefox, other Gecko */
    box-sizing: content-box;         /* Opera/IE 8+ */
}
.sbOptions li{
    padding: 0;
}
.sbOptions a{
    border-bottom: dotted 1px #ccc;
    display: block;
    outline: none;
    padding: 4px 0 3px 5px;
}
.sbOptions a:link, .sbOptions a:visited{
    color: #454444;
    text-decoration: none;
}
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus{
    color: #454444;
    background: #f1f1f1;
}
.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: #515151;
    display: block;
    font-weight: bold;
    padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
    padding-left: 17px;
}
.sbSelector.inactiveOption, .sbSelector.inactiveOption:link, .sbSelector.inactiveOption:visited, .sbSelector.inactiveOption:hover {
    color: #9C9C9C;;
}