.b-core-ui-select {
    position: relative;
    width: 100%;
    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__select {
    position: static;
    width: 100%;
    padding: 10px;
}
.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__value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 26px;
	border: 1px solid #cccccc;
	padding: 5px 26px 5px 9px;
	color: #999999;
	font: italic 9pt 'Trebuchet MS';

	background: rgb(229,229,229);
	background: -moz-linear-gradient(top,  rgba(229,229,229,1) 0%, rgba(249,249,249,1) 40%, rgba(249,249,249,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(229,229,229,1)), color-stop(40%,rgba(249,249,249,1)), color-stop(100%,rgba(249,249,249,1)));
	background: -webkit-linear-gradient(top,  rgba(229,229,229,1) 0%,rgba(249,249,249,1) 40%,rgba(249,249,249,1) 100%);
	background: -o-linear-gradient(top,  rgba(229,229,229,1) 0%,rgba(249,249,249,1) 40%,rgba(249,249,249,1) 100%);
	background: -ms-linear-gradient(top,  rgba(229,229,229,1) 0%,rgba(249,249,249,1) 40%,rgba(249,249,249,1) 100%);
	background: linear-gradient(to bottom,  rgba(229,229,229,1) 0%,rgba(249,249,249,1) 40%,rgba(249,249,249,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#f9f9f9',GradientType=0 );

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.b-core-ui-select.focus .b-core-ui-select__value {
	color: #1a1a1a;
	border-color: #999999;
}
._error .b-core-ui-select__value {
	border-color: #ba0000 !important;
}
.b-core-ui-select.open {

}
.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__button {
    position: absolute;
    right: 2px;
    top: 2px;
    display: block;
    width: 24px;
    height: 22px;
    background: url(/images/select-arrow.png) left top no-repeat;
    opacity: 0.5;

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.b-core-ui-select.focus .b-core-ui-select__button {
	opacity: 1;
}
.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    margin-top: 3px;
	padding: 3px 0 15px;
	border: 1px solid #cccccc;

	-webkit-box-shadow: 0 2px 7px 0px rgba(0,0,0,0.2);
	box-shadow: 0 2px 7px 0px rgba(0,0,0,0.2);

    background: rgb(254,254,254);
	background: -moz-linear-gradient(top,  rgba(254,254,254,1) 0%, rgba(243,243,243,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(254,254,254,1)), color-stop(100%,rgba(243,243,243,1)));
	background: -webkit-linear-gradient(top,  rgba(254,254,254,1) 0%,rgba(243,243,243,1) 100%);
	background: -o-linear-gradient(top,  rgba(254,254,254,1) 0%,rgba(243,243,243,1) 100%);
	background: -ms-linear-gradient(top,  rgba(254,254,254,1) 0%,rgba(243,243,243,1) 100%);
	background: linear-gradient(to bottom,  rgba(254,254,254,1) 0%,rgba(243,243,243,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#f3f3f3',GradientType=0 );
}

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

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

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

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

.b-core-ui-select__dropdown__list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.b-core-ui-select__dropdown__item {
    padding: 7px 10px;
    list-style-type: none;
    cursor: pointer;
    background: none;
    background-color: transparent;
    font: 8pt 'Arial';
    color: #333333;
    margin: 1px 0 0 0;

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;

}
.b-core-ui-select__dropdown__label {

}
.b-core-ui-select__dropdown__item.disabled, .b-core-ui-select__dropdown__item.disabled:HOVER {

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