/* $Id: ie6.css,v 1.1 2008/12/01 05:35:59 johnalbin Exp $ */

/*
 * CSS targeted specifically for Internet Explorer 5 and 6 for Windows.
 *
 * Any CSS in this file will override the rules specified in the ie.css file.
 */

/*
 * Layout CSS
 */

/** body **/
  body
  {
    text-align: center; /* 1st part of IE5/IE6quirks centering hack */
  }

  #page
  {
    text-align: left; /* 2nd part of IE5/IE6quirks centering hack */
  }

/** main (container for everything else) **/
  #main
  {
    zoom: 1; /* Otherwise with a liquid layout, sidebars disappear when resizing the windows in IE6 */
  }

/** floating divs **/
  #content,
  #navbar,
  #sidebar-first,
  #sidebar-second,
  #post-state
  {
    display: inline; /* display inline or double your floated margin! [1] */
    overflow: hidden; /* in ie6, overflow auto is broken [2] and so is overflow visible [3] */
    overflow-y: visible;
  }


/* Tabs CSS - IE 5 and 6 don't support PNGs with alpha transparency.
 */

  ul.primary li a,
  ul.primary li a .tab,
  ul.secondary li a,
  ul.secondary li a .tab
  {
    display: inline-block; /* Otherwise the blocks mistakenly get 100% width in IE6 */
  }

/*
 * REFERECES
 *

1. http://www.positioniseverything.net/explorer/doubled-margin.html
2. http://browservulsel.blogspot.com/2005/04/ie-overflow-auto-scrollbar-overlap.html
3. http://www.howtocreate.co.uk/wrongWithIE/?chapter=overflow%3Avisible%3B

 *
 */
