.b-core-ui-select{
	width:273px;
	height:45px;
	background:#ebebeb;
	border:1px solid #45c074;
	color:#000;
	font-size:18px;
    position: relative;
	border-radius:3px;
	z-index:1;
}

.b-core-ui-select.err{
	background:url(../images/err.png) top repeat-x;
	border:1px solid #d35243;
}

.b-core-ui-select__select {
    position: static;
    width: 80%;
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
}

.b-core-ui-select__value{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 45px;
	padding-left:10px;
	height:45px;
	line-height:45px;
	position:relative;
	top:0px;
}

.b-core-ui-select.err .b-core-ui-select__value{
	color:#d35243;
}

.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 {
}

.b-core-ui-select.open{
	border-bottom:1px solid #cecece!important;
	border-radius:3px 3px 0px 0px!important;
}

.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: 0px;
    top: 0px;
    display: block;
    width: 35px;
    height: 45px;
	background:url(../images/arr1.png) center no-repeat;
	cursor:pointer;
}

.b-core-ui-select.err .b-core-ui-select__button{
}

.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: -2px;
	z-index:4;
	
	width:273px;
	background:#ebebeb;
	border:1px solid #45c074;
	border-top:0px!important;
	color:#000;
	font-size:18px;
    position: relative;
	border-radius:0px 0px 3px 3px;
    max-height: 200px;
}

.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: 20px;
}

.b-core-ui-select__dropdown__list {
    overflow: hidden;
    margin: 0!important;
}

.b-core-ui-select__dropdown__item {
    padding: 0px 10px;
    min-height: 45px;
	line-height:45px;
    list-style-type: none;
    cursor: pointer;
	border-top:1px solid #cecece;
	font-size:18px;
	color:#000;
}

.b-core-ui-select__dropdown__item:first-child{
	border-top:0px!important;
}

.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 {
}

.b-core-ui-select__dropdown__item.selected,
.b-core-ui-select__dropdown__item.selected:HOVER {
	background:#7ee4a5;
	border-top:1px solid #6fc891;
}

.b-core-ui-select__dropdown__item:HOVER {
	background:#7ee4a5;
	border-top:1px solid #6fc891;
}