/* $Id: layout-fixed.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp $ */

/*****  Alter the other layout-fixed to add 100px to the right column
 * in a single column mode, for some pages only. ******/

.sidebar-second #content {
  width: 660px;   /* 760 becomes 660   cataldo */
  margin-left: 0; /* LTR */
  margin-right: -660px; /* LTR */ /* Negative value of #content's width + left margin. */
}

/* unchanged, but might change  */
.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 340px; /* cataldo: we added 40px to the page somewhere, I think, so adding 40px here seems to help.  Might need it elsewhere (margin-right?)
								 The extra 40px pushes the margin to the far right */
  margin-left: 660px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -1000px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}

