/**
 * @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.
 */

 #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:960px;
  background:white;
  /*width: 100%;*/
}

html, body {
  height: 100%;
  background: gainsboro;
}

#page {
}

/*
 * Apply the shared properties of grid items in a single, efficient ruleset.
 */

 #header,
 #content,
 #navigation,
 .region-sidebar-first,
 .region-sidebar-second,
 #footer {
  /*padding-left: 10px;*/
  /*padding-right: 10px;*/
  border: 0 !important;
  word-wrap: break-word;
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
}

/*
 * 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 {
 }

 #navigation {
  position: relative;
  top: 0; /* Move the navbar up inside #main's padding. */
  height: 35px;
  /*width: 960px;*/
  width: 100%;
  margin: 0 auto;
}

.region-navigation {
  width: 100%;
  margin: 0 auto;
}

/* 
* Header
*/

#header {
  width: 100%;
  margin: 0 auto;
margin-top: 25px;
}

/* 
* Footer
*/
.footer-push {
  height: 35px;
}
#footer-wrapper {
  background-color: #292929;
  width: 100%;
  height:35px;
  margin: 0 auto;
}

#footer {
  width: 100%;
  margin: 0 auto;
  color: #FFF;
}

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

 #content {
 }

 #content-wrapper {
  width: 100%;
  margin: 0 auto;
  /*background: white url(../../css/menu/main-bg.png) repeat-x 0 0;*/
}

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

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

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

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

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

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

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

 .two-sidebars #content {
  /* Span 3 columns, starting in 2nd column from left. */
  float: left;
  width: 568px;
  margin-left: 196px;
  margin-right: -759px;
}

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

.two-sidebars .region-sidebar-second {
  /* Span 1 column, starting in 5th column from left. */
  float: left;
  width: 176px;
  margin-left: 759px;
  margin-right: -960px;
}

/* Break */
.cl {
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
  clear: both;
}

.location-wrapper {
  height: 70px;
  width: 100%;
  background: url(../../css/menu/location-bg.gif) repeat-x 0 0;
  border-bottom: 1px solid #DFDFDF;
}

.copyright {
  font-size: .8em;
  float: right;
  margin-top: 7px;
  margin-right: 20px;
}