/*
Copyright (c) 2011, ACSoft Billy.lee
version: 1.1.0
build: 1011
*/

.UCComboBox {
    position: relative;
    border: 1px solid #e5e5e5;
    padding: 0 20px 0 4px;
}

.UCComboBox input {
    border: none;
    width: 100%;
    height: 100%;
    padding: 0;
    font-family: "微软雅黑", Arial, Tahoma;
    font-size: 12px;
}

.UCComboBox .button {
    position: absolute;
    font-size: 16px;
    padding: 0 7px 0 7px;
    right: 1px;
    top: 6px;
    color: #e5e5e5;
    cursor: pointer;
}

.UCComboBox .dropList {
    position: absolute;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
    max-height: 156px;
    min-height: 25px;
    overflow: auto;
    background-color: #f8f8f8;
    width: 100%;
    left: -1px;
}

.UCComboBox .textVisible{
    border:1px solid #CCCCCC;
    background-color:#ffffff;
    border-radius:4px;
}

.UCComboBox.close .dropList {
    display: none;
}

.UCComboBox .dropList .item {
    padding: 5px 5px 5px 5px;
    cursor: pointer;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: "微软雅黑", "Arial", sans-serif;
    font-size: 12px;
    color: #555555;
}

.UCComboBox .dropList .item.hidden {
    display: none;
}

.UCComboBox .dropList .item:hover {
    background-color: #eeeeee;
}
