/**
 * @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.
 *
 * If you want to make the page a fixed width and centered in the viewport,
 * this is the standards-compliant way to do that.
 */
#header,
#main,
#footer,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
  background:white;
  box-shadow:#e3e3e3 0 0 3px;
}
.footer-wrapper
{
	background:#1a1818;
	position:relative;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#main,
#navigation,
#footer {
  padding-left: 35px;
  padding-right: 35px;
  border-left: 0 !important;
  border-right: 0 !important;
  word-wrap: break-word;
  *behavior: url("/path/to/boxsizing.htc");
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
}
#content,
.region-sidebar-first,
.region-sidebar-second
{
	padding:0;
}
#footer
{
	background:none;
	box-shadow:none;
}
/* Containers for grid items and flow items. */
#header,
#main,
#footer {
  *position: relative;
  *zoom: 1;
}
#header:before,
#header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
#main {
  /* Move all the children of #main down to make room. */
  position: relative;
  padding:25px 35px;
}
#navigation {
  /* Move the navbar up inside #main's padding. */
  position: absolute;
  top: 0;
  height: 3em;
  width: 960px;
}

/**
 * The layout when there is only one sidebar, the left one.
 */

/* Span 4 columns, starting in 2nd column from left. */
.sidebar-first #content {
  float: left;
  width: 735px;
  margin-left: 240px;
  margin-right: -980px;
}

/* Span 1 column, starting in 1st column from left. */
.sidebar-first .region-sidebar-first {
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-right: -240px;
}

/**
 * The layout when there is only one sidebar, the right one.
 */

/* Span 4 columns, starting in 1st column from left. */
.sidebar-second #content {
  float: left;
  width: 630px;
  margin-left: 0px;
  margin-right: -650px;
}

/* Span 1 column, starting in 5th column from left. */
.sidebar-second .region-sidebar-second {
  float: left;
  width: 220px;
  margin-left: 650px;
  margin-right: -980px;
}

/**
 * The layout when there are two sidebars.
 */

/* Span 3 columns, starting in 2nd column from left. */
.two-sidebars #content {
    float: left;
    width: 485px;
    margin-left: 245px;
    margin-right: -740px;

}

/* Span 1 column, starting in 1st column from left. */
.two-sidebars .region-sidebar-first {
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-right: -240px;
}

/* Span 1 column, starting in 5th column from left. */
.two-sidebars .region-sidebar-second {
  float: left;
  width: 220px;
  margin-left: 760px;
  margin-right: -980px;
}
#push
{
	height:74px;
}
#page
{
	position: relative;
	margin: 0px auto -70px;
	min-height: 100%;
	height: auto !important;
}
.footer-wrapper
{
	height:70px;
}
.page__title, .node__title, .block__title, .comments__title, .comments__form-title, .comment__title {
    margin: 0px;
    line-height: 1em;
	color:#1b1818;
}