/**
 * Use the hlist class to make child list items inline blocks.
 * This contains hacks for IE6. See also ff2-inline-stack.js
 * for the javascript hack to enable inline block support.
 * 
 * This is a better alternative to floating and clearing.
 * (e.g. no <br clear="all"/> or clearfix necessary) and
 * padding, margins, etc will function on the elements.
 */
ul.hlist li, ol.hlist li, .inline-block
{
    display:-moz-inline-stack;
    display:inline-block;
    zoom:1;
    *display:inline;
    float: none !important;
}

