/* select container [value field and expand btn] */
.custom_select {
    cursor:pointer;
    padding:0px;
    margin:4px 0 4px 0;
    height:19px;
    width:400px;
    display:inline-block;
    border:solid gray 1px;
    border-right-width:0px;
    position:relative;
    vertical-align:middle;
}

/* value field */
.custom_select a{
    position:absolute;
    top:0px;
    left:0px;
    right:19px;
    height:19px;
    text-indent:3pt;
}

.custom_select a.currentValue {
    position:absolute;
    top:0px;
    left:0px;
    right:19px;
    height:19px;
    text-indent:3pt;
    color:#7FAFEF;
}

/* closed options list container */
.custom_select_uld {
    display:none;
}

/* expanded options list container */
.custom_select_ule {
    position:absolute;
    z-index:100;
    top:19px;
    left:-1px;
    right:19px;
    background:white;
    border:none;
}

/* options list */
.custom_select_ule ul {
    border:solid gray 1px;
    margin:0px;
    padding:0px;
    list-style:none;
    border-top-width:0px;
    display:block;
    max-height:200px;
    overflow: auto;
}

/* options list item */
.custom_select_ule li {
    background:white;
    list-style:none;
    text-indent:3pt;
}

/* options list item highlight */
.custom_select_ule li:hover{background:#0066cc;color:white;}

/* --------------- expand btn style --------------- */
.custom_select_expand_btn{
    width:19px;
    height:19px;
    position:absolute;
    right:0px;
    top:0px;
    border:solid gray 0px;
    border-right-width:1px;
    background-image:url('tour_search/field_small_expand_passive.png');
}

.custom_select_expand_btn:hover{
    background-image:url('tour_search/field_small_expand_hover.png');
}

.custom_select_expand_btn_clicked{
    width:19px;
    height:19px;
    position:absolute;
    right:0px;
    top:0px;
    border:solid gray 0px;
    border-right-width:1px;
    background-image:url('tour_search/field_small_expand_active.png');
}
