/* $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 {
  padding-left:6px;
  padding-right:6px;
  width: 818px;
}

#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;
}

#page {
}

/*
 * Header
 */
#header {
	width:100%;
}

#header .section {
}

#search-box {
}

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

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

#main {
}

/*
 * Content
 */
#content {
    background: white;
}

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

.sidebar-first #content {
  width: 627px;
  margin-left: 191px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -818px; /* LTR */ /* Negative value of #content's width + left margin. */
}

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

.two-sidebars #content {
  width: 436px;
  margin-left: 191px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -627px; /* LTR */ /* Negative value of #content's width + left margin. */
}

h1.title {
	padding-top:1.5em;
	padding-left:2em;
}

#content .section
{
  padding-top: 4px;
}
#content .section #content-area
{
  padding: 1.5em 0.5em 0em 0.5em;
  background: white;
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 191px;
  margin-left: 0; /* LTR */
  margin-right: -191px; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
}

#content-area, #messages warning {
}

.region-sidebar-first {
}

#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 */
  clear:both;
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 191px;
  margin-left: 0; /* LTR */
  margin-right: -191px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

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

/*
 * Second sidebar
 */
.region-sidebar-second {
  float: left; /* LTR */
  width: 191px;
  margin-left: 627px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -818px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

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

/*
 * Footer
 */
#footer {
	clear:both;
	padding-top:10px;
}

.region-footer {
	//display:none;
}

#footer .section {
	text-align:right;
	padding-right:1em;
}

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

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

#navigation {
  //overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

#navigation h2 {
	display:none;
}

#block-block-1 p {
	//line-height:0.8em;
	margin: 0;
}

#page-shadow {
	width:830px;
	height:6px;
	margin:0 auto;
}

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