/**
 * @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
 */
/*$legacy-support-for-ie6: false;
$legacy-support-for-ie7: false;
$legacy-support-for-ie8: true;
*/
/*
 * Center the page.
 */
/* line 42, ../../sass/layouts/fixed-width.scss */
.inner {
  /* 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: 972px;
}

/* line 49, ../../sass/layouts/fixed-width.scss */
.full .inner {
  width: auto;
}

/*
 * Apply the shared properties of grid items in a single, efficient ruleset.
 */
/* line 57, ../../sass/layouts/fixed-width.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second {
  padding-left: 15px;
  padding-right: 15px;
  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,
#navigation:before,
#navigation:after {
  content: "";
  display: table;
}
/* line 56, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#navigation:after {
  clear: both;
}

/*
 * Navigation bar
 */
/* line 80, ../../sass/layouts/fixed-width.scss */
#main {
  padding: 3em 0;
  position: relative;
}

/*
 * The layout when there is only one sidebar, the left one.
 */
/* line 91, ../../sass/layouts/fixed-width.scss */
.sidebar-first #content {
  /* Span 4 columns, starting in 2nd column from left. */
  float: left;
  width: 699px;
  margin-left: 243px;
  margin-right: -972px;
}
/* line 95, ../../sass/layouts/fixed-width.scss */
.sidebar-first .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
  float: left;
  width: 213px;
  margin-left: 0px;
  margin-right: -243px;
}

/*
 * The layout when there is only one sidebar, the right one.
 */
/* line 105, ../../sass/layouts/fixed-width.scss */
.sidebar-second #content {
  /* Span 4 columns, starting in 1st column from left. */
  float: left;
  width: 699px;
  margin-left: 0px;
  margin-right: -729px;
}
/* line 109, ../../sass/layouts/fixed-width.scss */
.sidebar-second .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 213px;
  margin-left: 729px;
  margin-right: -972px;
}

/*
 * The layout when there are two sidebars.
 */
/* line 119, ../../sass/layouts/fixed-width.scss */
.two-sidebars #content {
  /* Span 3 columns, starting in 2nd column from left. */
  float: left;
  width: 456px;
  margin-left: 243px;
  margin-right: -729px;
}
/* line 123, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
  float: left;
  width: 213px;
  margin-left: 0px;
  margin-right: -243px;
}
/* line 127, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 213px;
  margin-left: 729px;
  margin-right: -972px;
}

/* line 51, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer-top .inner:before, #footer-top .inner:after {
  content: "";
  display: table;
}
/* line 56, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer-top .inner:after {
  clear: both;
}
/* line 135, ../../sass/layouts/fixed-width.scss */
#footer-top .region-footer {
  float: left;
  width: 294px;
  margin-left: 0px;
  margin-right: -324px;
}
/* line 139, ../../sass/layouts/fixed-width.scss */
#footer-top .region-footer-2 {
  float: left;
  width: 294px;
  margin-left: 324px;
  margin-right: -648px;
}
/* line 143, ../../sass/layouts/fixed-width.scss */
#footer-top .region-footer-3 {
  float: left;
  width: 294px;
  margin-left: 648px;
  margin-right: -972px;
}

/* line 51, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#page-footer-links .inner:before, #page-footer-links .inner:after {
  content: "";
  display: table;
}
/* line 56, ../../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#page-footer-links .inner:after {
  clear: both;
}
/* line 151, ../../sass/layouts/fixed-width.scss */
#page-footer-links .region-footer-links {
  float: left;
  width: 213px;
  margin-left: 0px;
  margin-right: -243px;
}
/* line 155, ../../sass/layouts/fixed-width.scss */
#page-footer-links .region-footer-links-2 {
  float: left;
  width: 294px;
  margin-left: 243px;
  margin-right: -567px;
}
/* line 159, ../../sass/layouts/fixed-width.scss */
#page-footer-links .region-footer-links-3 {
  float: left;
  width: 375px;
  margin-left: 567px;
  margin-right: -972px;
}
