.b-core-ui-select {
    display:inline-block;
	vertical-align:middle;
    /*float:left;*/
    margin:0;

    /* position:relative;*/
    text-align:left;
    width:120px;
    height:22px;
    padding:5px 5px 5px 10px;
    font-size: 13px;
    line-height:22px;
    color:#555;
    /*text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);*/
    cursor: pointer;
   /* background-color: whiteSmoke;*/
    /*background-color:#707070;*/
    background:#fff url('/images/inc/blet_select.gif') no-repeat 90% 50%;
    /*background-image: -ms-linear-gradient(top, white, #707070);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#fff));
    background-image: -webkit-linear-gradient(top, white, #707070);
    background-image: -o-linear-gradient(top, white, #707070);
    background-image: linear-gradient(top, white, #707070);
    background-image: -moz-linear-gradient(top, white, #707070);
    background-repeat: repeat-x;*/
    border: 1px solid #cfcfcf;
    /*border: none;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
    /*border-color: #E6E6E6 #E6E6E6 #BFBFBF;
    border-bottom-color: #B3B3B3;*/
    /*border-radius: 4px;*/
    /*box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);*/
}

.b-core-ui-select__select {
    position: static;
    /*width: 80%;*/
    width:100px;
    padding: 5px;
    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:HOVER {
    color: #555;
    /*background-position: 0 -15px;*/
    transition: background-position 0.1s linear;
    background:#fff url('/images/inc/blet_select.gif') no-repeat 90% 50%;
}

.b-core-ui-select.focus {
    background-image: none;
    outline: 0;
   background:#fff url('/images/inc/blet_select.gif') no-repeat 90% 50%;
    /*box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);*/
}

.b-core-ui-select.disabled,
.b-core-ui-select.disabled:ACTIVE{
    opacity: .5;
    color: #333333;
    background-color: #fff;
    /*background-position: 0 -15px;*/
    transition: background-position 0.1s linear;
}

.b-core-ui-select__button {
    position: absolute;
    right: 10px;
    top: 12px;
    display: block;
    width: 0;
    height: 0;

    /*border-top: 4px solid #fff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;*/
    content: "";
    /*margin-top: 2px;
    margin-left: 4px;*/
}

.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    margin-top:2px;
    padding: 10px 8px 10px 8px;
    max-height: 200px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-top:0;
    border-radius: 0 0 4px 4px;
    background-color: whiteSmoke;
    background-image: -ms-linear-gradient(top, white, #E6E6E6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#E6E6E6));
    background-image: -webkit-linear-gradient(top, white, #E6E6E6);
    background-image: -o-linear-gradient(top, white, #E6E6E6);
    background-image: linear-gradient(top, white, #E6E6E6);
    background-image: -moz-linear-gradient(top, white, #E6E6E6);
    background-repeat: repeat-x;
}

.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 {
    font-family:NanumGothic,'나눔고딕',돋움,dotum,Helvetica,sans-serif;
    overflow: hidden;
    margin: 0!important;
    text-align:left;
}

.b-core-ui-select__dropdown__item {
    padding: 5px 10px 5px 5px;
    min-height: 18px;
    list-style-type: none;
    cursor: pointer;
    line-height:18px;
}


.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,
.b-core-ui-select__dropdown__item.selected:HOVER {
    background: #999;
    color: #fff;
}

.b-core-ui-select__dropdown__item:HOVER {
    background: #ccc;
}