/**
 * @file
 * 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 {
  text-align: center;
  /* 1st part of IE5/IE6quirks centering hack */
}

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

#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second {
  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;
}
