.combobox {
    display: inline-block;
    position: relative;
    width: 127px;
    line-height: 100%;
    padding: 0;
    margin: 0;
    text-indent: 0;
}

    .combobox input[type=text] {
        width: 100%;
    }

        .combobox input[type=text].error {
            border: 1px solid #FF2E09;
            background: #FFEFEC;
            color: #46505A;
        }

.combobox-dropdown {
    position: absolute;
    right: -11px;
    top: 0px;
    cursor: default;
    background-color: #c3d8f1;
    background: url(combobox/dropdown.png) 0 0 no-repeat;
    width: 20px !important;
    height: 27px;
}

.combobox-suggestions {
    border: 1px solid #d0d0d0;
    background: #FFF;
    cursor: default;
    overflow: auto;
    position: absolute;
    display: none;
    left: 0px;
    top: auto;
    text-align: left;
    z-index:9999;
    border-radius: 0 0 4px 4px;
    -moz-border-radius:0 0 4px 4px;
    -webkit-border-radius:0 0 4px 4px;
    behavior:url(../Content/themes/default/pie.htc);
}

.combobox-suggestions .combobox-suggestion {
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.combobox-suggestions .combobox-selected {
    background: #007acc;
    color:#fff;
}

.combobox-suggestions .combobox-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}