.multsel {
    min-width: 160px;
    border: 1px solid #ddd;
    line-height: 42px;
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #333
}

.multsel span.view {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 101;
    box-sizing: border-box;
    padding: 0 10px;
    display: block;
    cursor: pointer;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%
}

.multsel i {
    display: block;
    height: 5px;
    width: 8px;
    background: url(icons.png) no-repeat 0 -60px;
    position: absolute;
    right: 5px;
    top: 12px
}

.multsel i.pop {
    background-position: -8px -67px
}

.multsel .selist {
    position: absolute;
    top: 40px;
    left: 0px;
    z-index: 100;
    display: none;
    width: 100%;
    border: 1px solid #ddd;
    /*padding-top: 40px;*/
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1)
}

.multsel .selist a.seitem {
    display: block;
    padding-left: 10px;
    cursor: pointer;
    background-color: #fff
}

.multsel .selist a.seitem:hover {
    background-color: #f1f1f1
}

.multsel .selist a.checked {
    background-color: #ddd !important
}