.b-core-ui-select {
    position: relative;
    width: 92%;
    padding: 11px;
    font-size: 14px;
    line-height: 18px;
    color: #333;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
	}

.b-core-ui-select__select {
    position: static;
    width: 80%;
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
	}

.b-core-ui-select__value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 25px;
	}

.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:hover {
	}

.b-core-ui-select.focus {
    outline: 0;
	}

.b-core-ui-select.open {
    border-radius: 3px 3px 0 0;
	}

.b-core-ui-select.disabled,
.b-core-ui-select.disabled:ACTIVE{
    opacity: .5;
    color: #333333;
    background-color: #e6e6e6;
	}

.b-core-ui-select__button {
    position: absolute;
    right: 0;
    top: 0;
	width: 26px;
	height: 40px;
	padding: 0;
	background: #fafafa url(../img/ddwn.gif) center no-repeat;
	border-left: 1px solid #ddd;
	border-radius: 0 3px 3px 0;
	}

.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    color: #333;
    margin-top: -1px;
    max-height: 200px;
    font-size: 14px;
    border: 1px solid #bbb;
    border-radius: 0 0 3px 3px;
    background: #fefefe;
	}

.b-core-ui-select__dropdown.hide {
    display: none;
	}

.b-core-ui-select__dropdown.show {
    display: block;
    box-shadow: 0 3px 5px #aaa;
	}

.b-core-ui-select__dropdown__wrap {
    max-height: 200px;
    overflow: auto;
	outline: 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 {
    padding: 5px 10px;
    min-height: 18px;
    list-style-type: none;
    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 {
    color: #ccc;
    background: none;
	}

.b-core-ui-select__dropdown__item.selected {
    font-weight: bold;
    background: #eee;
    color: #000;
	}

.b-core-ui-select__dropdown__item:hover {
	color: #fff;
	background: #1084dd;
	text-shadow: 0 1px 1px rgba(0,0,0,0.6);
	}