/**
 * @file
 * Positioning for a fixed-width, desktop-centric layout.
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/*
 * Center the page.
 */
/* line 42, ../../sass/layouts/fixed-width.scss */
#header,
#footer,
#main,
#navigation,
#page_bottom,
.region-highlighted {
  /* If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. */
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

/*
 * Apply the shared properties of grid items in a single, efficient ruleset.
 */
/* line 61, ../../sass/layouts/fixed-width.scss */
#content,
.region-sidebar-first,
.region-sidebar-second {
  padding-left: 10;
  padding-right: 10;
  border: 0 !important;
  word-wrap: break-word;
}

/*
 * Containers for grid items and flow items.
 */
/* line 51, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 56, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/*
 * Navigation bar
 */
/* line 84, ../../sass/layouts/fixed-width.scss */
#main {
  margin-top: 17px;
  position: relative;
}

/* line 88, ../../sass/layouts/fixed-width.scss */
#navigation {
  width: 960px;
}

/*
 * The layout when there is only one sidebar, the left one.
 */
/* line 97, ../../sass/layouts/fixed-width.scss */
.sidebar-first #content {
  /* Span 4 columns, starting in 2nd column from left. */
  float: left;
  width: 748px;
  margin-left: 192px;
  margin-right: -960px;
  width: 768px;
}
/* line 102, ../../sass/layouts/fixed-width.scss */
.sidebar-first .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
  float: left;
  width: 172px;
  margin-left: 0px;
  margin-right: -192px;
}

/*
 * The layout when there is only one sidebar, the right one.
 */
/* line 112, ../../sass/layouts/fixed-width.scss */
.sidebar-second #content {
  /* Span 4 columns, starting in 1st column from left. */
  float: left;
  width: 748px;
  margin-left: 0px;
  margin-right: -768px;
}
/* line 116, ../../sass/layouts/fixed-width.scss */
.sidebar-second .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 172px;
  margin-left: 768px;
  margin-right: -960px;
}

/*
 * The layout when there are two sidebars.
 */
/* line 126, ../../sass/layouts/fixed-width.scss */
.two-sidebars #content {
  /* Span 3 columns, starting in 2nd column from left. */
  float: left;
  width: 556px;
  margin-left: 192px;
  margin-right: -768px;
}
/* line 130, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
  float: left;
  width: 172px;
  margin-left: 0px;
  margin-right: -192px;
}
/* line 134, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 172px;
  margin-left: 768px;
  margin-right: -960px;
}

/*# sourceMappingURL=fixed-width.css.map */
