<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ComboBox{
    overflow:hidden;

}
                           
.ComboBox .label{
    background-position:top left;
    background-image: url('images/label.jpg');
    height:28px;
    text-transform: uppercase;
    padding-left:32px;
    line-height: 28px;
    cursor: pointer;
}

.ComboBox:hover .label,.ComboBox.open .label{
    background-position:bottom left; 
    color:#FFF;   
}
.ComboBox .mask{
    overflow:hidden;
    height:28px;
}
.ComboBox .options{
    background-color:#F5F5F5;
    padding:13px 0px;
}
.ComboBox .option{
    height:23px;
    line-height:23px;
    cursor:pointer;
    text-transform: uppercase;
    padding-left:32px;
    display:block;
    white-space: nowrap;
    overflow:hidden
}

.ComboBox .option.selected{
    background-color:#FFF;
}
.ComboBox .option:hover{
    background-color:#62BB46;    
    color:#FFF;
}</pre></body></html>