/* $Id: layout-fixed.css,v 1.17 2009/11/05 12:09:53 johnalbin Exp $ */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * 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 is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */

/*
 * Body
 */

body {
}

#page-wrapper,
.region-page-closure {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 962px;
  padding-left: 80px;
  padding-right: 80px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
}

.region-header {
  /* clear: both; */
  /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content .half {
  float: left; /* LTR */
  width: 481px;
  margin-left: 0; /* LTR */
  /*margin-right: -960px;*/
  /* LTR */
  /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 481px;
  margin-left: 0; /* LTR */
  /*margin-right: -960px;*/
  /* LTR */
  /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

#content .column homepage {
  margin-left: -481px;
  float: left;
  padding: 0;
  width: 481px;
}

#content.full,
#content.shoppingcart,
body.page-corporate-detail #content,
body.node-type-corp-forum-topic #content,
body.page-digital-learning #content,
#editorial #content.full {
  width: 940px;
}

body.section-forums #content,
body.section-forums #content,
body.section-forum #content {
  width: 600px;
}

#editorial #content,
#editorial .no-sidebars #content {
  float: left; /* LTR */
  width: 635px;
  margin-left: 0; /* LTR */
  /*margin-right: -960px;*/
  /* LTR */
  /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
  clear: left;
}

body.page-corporate-members #content {
  width: 481px;
}

.sidebar #content {
  width: 760px;
  margin-left: 0; /* LTR */
  margin-right: -760px; /* LTR */
  /* Negative value of #content's width + left margin. */
}

body.page-forum #content {
  width: 520px;
}

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  /* width: 100%; */
  /* margin-left: 200px; *//* LTR */
  /* margin-right: -100%; */
  /* LTR */
  /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em;
  /* The navigation can have any arbritrary height. We picked one
                     that is the line-height plus 1em: 1.3 + 1 = 2.3
                     Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar,
.with-navigation .region-sidebar {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#editorial .with-navigation .region-sidebar {
  margin-top: 0;
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */  {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */  {
  float: left; /* LTR */
}

/*
 * Second sidebar
 */
.region-sidebar {
  float: left; /* LTR */
  width: 481px;
  margin-right: -960px; /* LTR */
  /* Negative value of .region-sidebar-second's width + left margin. */
}

#editorial .region-sidebar {
  float: right; /* LTR */
  width: 300px;
  margin-right: 0;
  */ /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
}

.region-sidebar .section {
  margin: 0 0 0 0; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */  {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

.day-header-box {
  padding: 30px;
  background-color: #333333;
  margin-top: 10px;
  margin-bottom: 10px;
}

.day-header {
  text-align: center;
  color: #78A749;
  font-size: 25px;
}
