
select.smart_select { height: 24px; display: inline-block; }

div.smart_select {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
    height: 24px;
    width: 200px; /* defauld width */
    cursor: pointer;
    overflow: visible
}

div.smart_select > div {
    height: 24px;
    background: url(../../img/v3/inputs/input_left.gif) left top no-repeat;
    padding-left: 4px;
}

div.smart_select > div > div {
    height: 24px;
    background: url(../../img/v3/inputs/dropdown_default.gif) right top no-repeat;
    padding-right: 13px;
}

div.smart_select > div > div > div {
    height: 17px;
    background: url(../../img/v3/inputs/input_center.gif) center top repeat-x;
    padding: 5px 5px;

    font-size: 11px;
    color: #000;
    font-weight: normal;
}

/****************/
div.smart_select > div:hover > div  { 
    background: url(../../img/v3/inputs/dropdown_selected.gif) right top no-repeat;
}

div.smart_select > div:hover > div > div {
    font-weight: bold;
}
/****************/

div.smart_select_disabled > div {
    background: url(../../img/v3/inputs/input_left_grayed.gif) left top no-repeat;
}

div.smart_select_disabled > div > div {
    background: url(../../img/v3/inputs/dropdown_grayed.gif) right top no-repeat;
}

div.smart_select_disabled > div > div > div {
    background: url(../../img/v3/inputs/input_center_grayed.gif) center top repeat-x;
    color: darkgray;
}

/***************/
div.smart_select_disabled > div:hover > div  { 
    background: url(../../img/v3/inputs/dropdown_grayed.gif) right top no-repeat;
}

div.smart_select > div:hover > div > div {
    font-weight: normal;
}
/****************/

div.smart_select > ul {
    display: block;
    background-color: #fff;
    border: 1px solid #92301f;
    /*margin-top: 1px;*/
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

div.smart_select > ul > li {
    display: block;
    padding: 2px 5px;
    overflow: hidden;

    font-size: 11px;
    font-weight: normal;
    color: #333;
    cursor: pointer;
}

div.smart_select > ul > li:hover {
    background-color: #ab3a24;
    color: #fff;
}

div.smart_select > ul > li.opt_sel {
    background-color: #bb5533;
    color: #fff;
}