@import url("http://fonts.googleapis.com/css?family=Oswald:400,300,700");
/**
 * @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 44, ../../sass/layouts/fixed-width.scss */
#page,
.region-bottom {
  /* 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: 980px;
  position: relative;
}

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

/*
 * Containers for grid items and flow items.
 */
/* line 52, ../../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 80, ../../sass/layouts/fixed-width.scss */
#main {
  padding-top: 7px;
  /* Move all the children of #main down to make room. */
  position: relative;
}

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

/*
 * The layout when there is only one sidebar, the left one.
 */
/* line 94, ../../sass/layouts/fixed-width.scss */
.sidebar-first #content {
  /* Span 4 columns, starting in 2nd column from left. */
}
/* line 98, ../../sass/layouts/fixed-width.scss */
.sidebar-first .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
}

/* line 103, ../../sass/layouts/fixed-width.scss */
.sidebars {
  width: 290px;
  float: left;
  background: #fff;
}
/* line 107, ../../sass/layouts/fixed-width.scss */
.sidebars .menu {
  margin: 0;
  padding: 0;
}
.stickynav {
  position: fixed;
  top: 20px;
}
.avoidfooter {
  position: absolute;
  bottom: 20px;
}
/* line 114, ../../sass/layouts/fixed-width.scss */
.section-education #content, .section-content #content, .not-front #content {
  width: 635px;
  padding: 0 10px 0 18px;
  min-height: 600px;
}
.page-node-13 #content {
  width: 960px;
  padding: 0 10px;
}
/*
 * The layout when there is only one sidebar, the right one.
 */
/* line 124, ../../sass/layouts/fixed-width.scss */
.sidebar-second #content {
  /* Span 4 columns, starting in 1st column from left. */
  float: left;
  width: 764px;
  margin-left: 0px;
  margin-right: -784px;
}
/* line 128, ../../sass/layouts/fixed-width.scss */
.sidebar-second .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 176px;
  margin-left: 784px;
  margin-right: -980px;
}

/*
 * The layout when there are two sidebars.
 */
/* line 138, ../../sass/layouts/fixed-width.scss */
.two-sidebars #content {
  /* Span 3 columns, starting in 2nd column from left. */
  float: left;
  width: 568px;
  margin-left: 196px;
  margin-right: -784px;
}
/* line 142, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-first {
  /* Span 1 column, starting in 1st column from left. */
  float: left;
  width: 176px;
  margin-left: 0px;
  margin-right: -196px;
}
/* line 146, ../../sass/layouts/fixed-width.scss */
.two-sidebars .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 176px;
  margin-left: 784px;
  margin-right: -980px;
}

/*floats*/
/* line 152, ../../sass/layouts/fixed-width.scss */
.left {
  float: left;
}

/* line 155, ../../sass/layouts/fixed-width.scss */
.right {
  float: right;
}

/* line 158, ../../sass/layouts/fixed-width.scss */
.hero-space, .breadcrumbs, .sidebars {
  padding: 0 10px;
}
