/*-------------------------------------------
Layout styles
---------------------------------------------

Three column layout with 1-2-3 ordering.

Specific hacks for Internet Explorer 6 are marked with "IE6 HACK". See
README.txt for details.

Original author: Ben Sturmfels, Boojum, March 2009

------------------------------------------*/

body {
  min-width: 1024px;
  max-width: 1024px;
}

#main-content {
  width: 46%; /* IE7 HACK: man, I thought they fixed the rounding issues */
  float: left;

  _width: 46%; /* IE6 HACK */
  _display:inline; /* IE6 HACK */
}

#sub-content-a {
  display: block;
  width: 22%;
  float: left;

  _display: inline; /* IE6 HACK */
}

#sub-content-b {
  display: block;
  width: 25%;
  float: right;
}


