/**
 * @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-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. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  min-width: 28.75em;
  max-width: 72em;
  margin: 10px auto;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

.region-header {
}

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

#main {
}


/*
 * Content
 */
#content, .region-highlighted  {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

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

.sidebar-second #content .section, .no-sidebars #content .section {
  margin: 15px 20em 20px 20px; 
  padding:20px 20px 50px;
  
}

.page_content	{
	max-width:61em;
}

/* First or two sidebar styles

.sidebar-first #content .section {
  padding-left: 200px; 
  padding-right: 20px;
}

.two-sidebars #content .section {
  padding-left: 200px;  The width + left margin of .region-sidebar-first. */
  /*padding-right: 200px;  The width + right margin of .region-sidebar-second.
} */


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

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* 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: 65px; 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. */
}

#secondary_nav {
  margin-top:68px;
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* 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: 35px; /* 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-first,
.with-navigation .region-sidebar-second  {
 /*Set this to the same value as the navigation height above. */
 margin-top: 70px;
}


.with-secondary-menu #content,
.with-secondary-menu .region-sidebar-first,
.with-secondary-menu .region-sidebar-second  {
 /*Set this to the same value as the navigation height above. */
 margin-top: 228px;
}

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

.with-secondary-menu .region-highlighted {
 /*Set this to the same value as the navigation height above. */
 margin-top: 107px;
}

#navigation .section {
	
}

/*
 * First sidebar

.region-sidebar-first {
  float: left; 
  width: 200px;
  margin-left: 0;
  margin-right: -200px; 
  padding: 0; 

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


/*
 * Second sidebar
 */
.region-sidebar-second {
  float: right; /* LTR */
  width: 20em;
  margin-left: -20em; /* LTR */ /* Negative value of .region-sidebar-second's width + right margin. */
  margin-right: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

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

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

/*
 * Footer
 */
.region-footer {
}

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

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

/*
 * CSS targeted specifically for Internet Explorer 6 for Windows.
 *
 * Any CSS in this file will override the rules specified in the ie.css file.
 *
 * References:
 * 1. http://www.positioniseverything.net/explorer/doubled-margin.html
 * 2. http://browservulsel.blogspot.com/2005/04/ie-overflow-auto-scrollbar-overlap.html
 * 3. http://www.howtocreate.co.uk/wrongWithIE/?chapter=overflow%3Avisible%3B
 */
.ie6 #content,
.ie6 #navigation,
.ie6 .region-sidebar-first,
.ie6 .region-sidebar-second /* Floating divs */ {
  display: inline; /* display inline or double your floated margin! [1] */
  overflow: hidden; /* in IE6, overflow auto is broken [2] and so is overflow visible [3] */
  overflow-y: visible;
}

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