/*
Layout styles for a content page. Breadcrumbs are displayed here.

To make the left margin of the content line up with the title and
menus, I've cheated by combining a percentage width with padding
in ems. This will break if 1.5em < the 5% difference or
effectively the page is < 30em wide. This is narrow enough not
to matter.
*/

#topic-menu { display: none; }

#content { 
  float: left;
  width: 63.5%;  /* 0.5% extra gap for IE */
  display: inline; /* IE double float margin */
  padding-left: 2em;
  margin: 0 1% 0 0;
}

#panel { 
  width: 30%;
  float: right;
}

#memberaccessleft { 
  float: left;
  width: 50%;  /* 0.5% extra gap for IE */
  display: inline; /* IE double float margin */
  padding-left: 2em;
  margin: 0 1% 0 0;
}

#memberaccessright { 
  width: 40%;
  float: right;
}
