/* - columns.css - */
@media screen {
/*
** Table-based column layout for all browsers.
**
** There's a table-less column layout alternative in the plone_tableless
** skin layer, if you prefer layouts without tables.
*/

/*  */

#portal-column-one {
  float:left;
  width: 16em;
  padding: 0;
}

#portal-column-content {
  padding: 1em 1em 0 1em;
  margin: 0em 0em 2em 0em;
}
#portal-column-content.sl {
  margin-left:16em;
}
#portal-column-content.sr {
  margin-right:16em;
}
#portal-content-wrapper {
  float:left;
  width:100%;
}

#portal-column-two {
  /*float:right;*/
  width: 16em;
  padding: 0;
}

/* fullscreen */
body.fullscreen #portal-column-one,
body.fullscreen #portal-column-two {
  display: none;
}
body.fullscreen #portal-column-content {
  margin: 0;
  padding: 0;
}

/*  */

}
