/**
 * Various CSS hacks to overcome generic browser bugs and handle common edge
 * cases.
 */

/**
 * Fix IE6 background flicker.
 */
html {_filter: expression(document.execCommand("BackgroundImageCache", false, true));}

/**
 * Fix for IE6 and 7 italic wrapping bug.
 */
p {*overflow:visible;}


/**
 * Fix for IE6 and 7 Submit button bug.
 */
input.submit {*overflow:visible;}

/**
 * OO menu & toolbar
 *
 * This is a hack because !important is a hack.
 */
.oo-menu, .oo-toolbar {font-size:11px!important;}
.oo-menu {z-index:102!important;}
.oo-toolbar {z-index:101!important;}

/**
 * Fix dodgy IE image scaling.
 * http://code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {-ms-interpolation-mode:bicubic;}

