/* $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: 960px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
}

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

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

#main {
}

/*
 * Content
 */
#content {
  width: 415px;
  float: left; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

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

/*
 * Navigation
 */
#navigation {
}

.with-navigation .region-sidebar-first {
  margin-top: 26px; /* Set this to the same value as the navigation height above. */
}

.with-navigation #content {
  margin-top:40px; }
.with-navigation .region-sidebar-second  {
  margin-top: 44px;
}

#navigation .section {
padding: 0;
}

#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 */
  padding: 0 10px 0 0; /* LTR */
}

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

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

/*
 * Footer
 */
#footer {
	clear:both;
}

#footer .section {
margin:30px 8px;
}

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

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

#footer, #header, #main-wrapper {
	float:left;
	width:960px;
}

#navigation {
	float:right;
	margin:0 70px 0 0;
}

.region-sidebar-first {
	float:left;
	width:200px;
}

.region-sidebar-second {
	float:right;
	width:260px;

}

#block-menu_block-1 ul, #block-menu_block-1 li, #block-menu_block-1 li a {
	float:left;
}


/*
 * Content
 */
.no-sidebars #content {
  width: 660px;
}

.sidebar-first #content {
  width: 660px;
}

.sidebar-second #content {
  width: 660px;
}

.two-sidebars #content {
  width: 415px;
}

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