.b-core-ui-select {
    position: relative;
    width: 296px;
    padding: 6px 22px 10px 26px;
    background: url(select_value.png) left top no-repeat;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.b-core-ui-select__value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
    font-size: 18px; 
    color: #ffefa3;
}

.b-core-ui-select:hover {
    
}

.b-core-ui-select:hover .b-core-ui-select__value {
   
}

.b-core-ui-select__button {
    position: absolute;
    right: 15px;
    top: 10px;
    display: block;
    background: url(select_button.png) left top no-repeat;
    width: 11px; 
    height: 6px;
    margin-top: 8px;
    margin-left: 2px;
}

.b-core-ui-select__select {
    position: static;
    width: 344px;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
}

.b-core-ui-select__select_state_hide {
    height: 1px !important;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 1px !important;
    text-indent: -9999px;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    filter: alpha(opacity = 0);
}

.b-core-ui-select.focus {
    outline: 0;
}

.b-core-ui-select.open {
    background: url(select_value_open.png) left top no-repeat;
}

.b-core-ui-select.disabled,
.b-core-ui-select.disabled:ACTIVE{
    opacity: .5;
    color: #333333;
    background-color: #e6e6e6;
    background-position: 0 -15px;
    transition: background-position 0.1s linear;
}

.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    color: #ffefa3;
    margin-top: -1px;
    padding: 0px 10px 10px 10px;
    max-height: 150px;
    background: url(select_dropdown.png) left top no-repeat;
}

.b-core-ui-select__dropdown.hide {
    display: none;
}

.b-core-ui-select__dropdown.show {
    display: block;
}

.b-core-ui-select__dropdown__wrap {
    max-height: 150px;
    overflow: auto;
    utline: none;
}

.j-scroll-pane .b-core-ui-select__dropdown__item {
    margin-right: 20px;    
}

.b-core-ui-select__dropdown__list {
    overflow: hidden;
    margin: 0!important;
}

.b-core-ui-select__dropdown__item {
    list-style-type: none;
    background: url(b-core-ui-select_dropdown_arrow.png) 10px center no-repeat;
    padding: 2px 0px 2px 24px;    
    font-size: 14px;
    color: #ffefa3;
    cursor: pointer;
}

.b-core-ui-select__dropdown__label {
    padding: 10px;
    min-height: 18px;
    font-style: italic;
    list-style-type: none;
    border-bottom: 1px solid #ccc;
}

.b-core-ui-select__dropdown__item.disabled,
.b-core-ui-select__dropdown__item.disabled:HOVER {
    font-size: 14px;
}

.b-core-ui-select__dropdown__item.selected,
.b-core-ui-select__dropdown__item.selected:HOVER {
    background-color: #c43723;
}

.b-core-ui-select__dropdown__item:HOVER {
    background-color: #c43723;
}