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

Two column layout with 2-3 ordering. First column is hidden if
exists in markup.

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: 580px;
  max-width: 1024px;
}

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

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

#sub-content-b {
  display: block;
  width: 25%;
  float: right;
  margin-left: 0;

}


