
/*
 * Ac is an auto-complete library used on the checkout pages to
 * give a popup list of things like Suburbs as the user types.
 */



.ac_menu
{
        border:1px solid black
}
.ac_normal
{
    background-color:#ffffff;
        cursor:pointer;
    white-space: nowrap;
    overflow: hidden;
}
.ac_highlight
{
        background-color:#3366cc;
    color:white;
        cursor:pointer;
    white-space: nowrap;
    overflow: hidden;
}
.ac_normal .a
{
        font-size:11px;
        color:black;
    white-space: nowrap;
    overflow: hidden;
}
.ac_highlight .a
{
    font-size:11px;
    white-space: nowrap;
    overflow: hidden;
}

