/**
 * jQuery TextBox
 * Version 0.1 - 18/03/2008
 * @author Dale Harvey <harveyd@gmail.com>
 *
 * A combination of a text input and a drop down
 * select box, used by
 * http://code.google.com/p/jqueryspreadsheet/
 *
 **/
.textbox
{
    padding-right:16px;
}

.textboxarrow
{
    position:   absolute;
    display:    none;
    cursor:     pointer;
    width:      14px;
    height:     14px;
    background: url('arrow_down.png') center center;
}

.textboxlist
{
    position:   absolute;
    display:    none;
    background: #FFF;
    border:     1px solid #999;
    z-index:    9999;
}

.textboxlist li
{
    width:      100%;
    list-style-type: none;
}

.textboxlist li a
{
    cursor:     pointer;
    display:    block;
    padding:    3px;
    color:      black;
    text-decoration:none;
}

.textboxlist li a:hover
{
    background: #EEE;
}
