/* Layout
 * ------
 * Using a negative margin technique, adapted from ZEN. The page is loaded by this order:
 *
 * 1. Header
 * 2. Content
 * 3. Navigation menus
 * 4. Sidebar Left
 * 5. Sideabr Right */
 
/* remove 'auto' and the width to switch to a fluid width */
/* line 15, ../sass/layout.sass */
#page {
  margin: 0 0 0 0; }
#header {
	width: 990px;
	margin: 0 auto;
}
/* Layout rules. */
/* line 20, ../sass/layout.sass */
#content {
  float: left;
  width: 100%;
  margin-right: -100%;
  padding: 0; 
}
#content-inner {	
	position: relative;
	width: 990px;
	margin: 40px auto;
}

/* line 26, ../sass/layout.sass */
.sidebar {
  float: left; }

/* line 29, ../sass/layout.sass */
#sidebar-second {
  float: right; }

/* line 32, ../sass/layout.sass */
#footer {
	position: relative;
	float: none;
	clear: both;
	margin: 0 0 0 0;
	padding: 20px 0 0 20px;
}
#footer-inner {
	position: relative;
	width: 990px;
	margin: 0 auto;
}
/* Layout Helpers */
/* line 37, ../sass/layout.sass */
#header,
#footer,
.mission,
.breadcrumb,
.node {
	position: relative;
	clear: both; 
}

/* Sidebars width
 * --------------
 * Changing the width of the sidebars is dead easy, just change the
 * values below corresponding to the sidebar you want to modify.
 * Make sure you keep negative values as negative values.
 * For example, if I want to increase the width of the left sidebar
 * to 300px, I would have to change each '190' to '300'. */
 
#sidebar-container {
	position: relative;
	width: 990px;
	margin: 0 auto;
}
/* line 55, ../sass/layout.sass */
.two-sidebars #content-header,
.sidebar-first #content-header,
.two-sidebars #content-area,
.sidebar-first #content-area {
  margin-left: 300px; }

.two-sidebars #content-header,
.two-sidebars #content-area {
	margin-right: 300px;
}
/* line 59, ../sass/layout.sass */
#sidebar-first {
	position: relative;
	width: 260px;
	padding-top: 40px;
	margin-bottom: 40px;
	margin-right: -260px; }

/* line 65, ../sass/layout.sass */
.two-sidebars .center,
.sidebar-second .center, {
  margin-right: 30	0px; }

/* line 69, ../sass/layout.sass */
#sidebar-second {
	position: relative;
	padding-top: 40px;
	margin-bottom: 40px;
	width: 260px; }
.one-sidebar.sidebar-second #sidebar-second {	
	top: 200px;
}

/* Columns Inner
 * -------------
 * You can change the padding inside the columns without changing the
 * width of them by just usinbg the INNER div of each column */
/* line 76, ../sass/layout.sass */
.inner {
  padding: 0; }

/* Navigation styles
 * -----------------
 * The navigation is loaded after the content, so we need to make space
 * for it, equal to its height, so if you change the height of the navigation,
 * remember to adapt the margin top of the content and sidebars. */
/* line 84, ../sass/layout.sass */
#navigation {
  float: left;
  margin-left: 0;
  margin-right: -100%;
  padding: 0;
  width: 100%;
  height: 54px; 
}
#navigation-inner {
	width: 990px;
	margin: 0 auto;
}
/* line 94, ../sass/layout.sass */
.with-navigation #content,
.with-navigation .sidebar {
  margin-top: 40px; }
  
  /* homepage panel */
  body.front .panel-col-first {
  	width: 260px;
  }/* homepage panel */
  body.front .panel-col-last {
  	width: 690px;
  	margin-left: 40px;
  }
