/*
 * Fix IE6 overflow:visible bug for images in sidebar on content pages.
 * without this, the sidebar expands to the width of the images, and the
 * main content gets pushed down the page. Note that the fix requires that
 * the contained element has it's position set to relative- that should
 * be happening in the main css doc. I'm using the star hack because I 
 * think multiple IEs prevents conditional comments from working correctly.
 */
* html .narrowcolumn {
	overflow: hidden;
}

