.pickList_sourceListContainer, .pickList_controlsContainer, .pickList_targetListContainer {
    float: left;
}

.pickList_controlsContainer {
    text-align: center;
    margin-top: 100px;
}
.pickList_controlsContainer button {
    display: block;
    width: 100%;
    height: 30px;
    text-align: center;
    margin: 10px 0;
    border: none;
    background-color: lightgray;
    border-radius: 5px;
    font-weight: bold;
}
.pickList_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
    width: 450px;
    height: 450px;
    border: 1px inset #eee;
    overflow-y: auto;
    cursor: default;
}

.pickList_list option {
    padding: 10px 5px !important;
}
.pickList_selectedListItem {
    background-color: orange;
    color: white;
}
.pickList_listLabel {
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
}
.pickList_clear {
    clear: both;
}

.pickList_list {
    border: 1px solid lightgray !important;
    border-radius: 10px !important;
}

.pickList_list li {
    padding: 10px 5px;
    border-bottom: 1px solid #ebebeb;
}

