.fw-select-combo {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    cursor: default;    
    width: 150px;
    height: 20px;
    vertical-align: bottom; /* must be pushed a bit down, otherwise the bottom of the combo is at the text line */
}

.fw-select-list {
    display: inline-block;
    padding: 0;
    margin: 0;
    top: 6px;
    position: relative;
    cursor: default;    
    width: 150px;
    height: 100px;
}

.fw-select-text {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-left: 1px solid;
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-color: #B5B8C8;
    background-color: white;
}

.fw-select-text-inner {
    position: relative;
    white-space: nowrap;
    padding: 0px 2px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.fw-select-top:hover .fw-select-text, .fw-select-top:active .fw-select-text {
    border-color: #7EADD9;
}

.fw-select-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 24px;
    border-bottom: 1px solid #B5B8C8;
    background: transparent url(arrow-plain.png) no-repeat;
    background-position: 
}

.fw-select-top:hover .fw-select-arrow {
    background: transparent url(arrow-hover.png) no-repeat;
    border-bottom: 1px solid #7EADD9;
}

.fw-select-top:active .fw-select-arrow {
    background: transparent url(arrow-active.png) no-repeat;
    border-bottom: 1px solid #7EADD9;
}

.fw-select-top {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 20px;
}

.fw-select-choices {
    display: block;
    position: absolute;
    background: white;
    overflow: auto;
    overflow-x: hidden;
    max-height: 400px;
    top: 0;
    left: 0;
    display: none;
    list-style: none;
    padding: 1px 0;
    margin: 0;
    border: 1px solid #7EADD9;
}

.fw-select-option {
    display: block;
    margin: 0;
    padding: 0 2px;
    white-space: nowrap;
}

.fw-select-option:hover {
    color: white; 
    background-color: #3399FF;
}
