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

#page {
	width: 997px; /* edit to change the width of the page */
	margin: 0 auto; /* remove 'auto' and the width to switch to a fluid width */
  position: relative;
}

/** LAYOUT RULES
---------------------------------
*  do not change if you're not sure you know what you're doing
*/

#content {
  float: left;
  width: 100%;
  margin-right: -100%;
  padding: 0;
}
.sidebar {
  float: left;
}
#sidebar-second {
  float: right;
}
#footer {
  float: none;
  clear: both;
}

/* Layout Helpers */

#header, #footer, .mission, .breadcrumb, .node {
  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'.
*/

.two-sidebars .center,
.sidebar-left .center {
  margin-left: 247px;     /* LEFT value */
}
#sidebar-first {
  width: 247px;           /* LEFT value */
	margin-right: -247px;    /* negative LEFT value */
  background: url("../images/left-sidebar-bg.jpg") no-repeat scroll left top #E4EBE3;
  height: 100%;
  position: absolute;
}
#sidebar-first-inner {
  margin: 0 0 0 13px;
  padding-top: 20px;
}

.two-sidebars .center,
.sidebar-right .center {
  margin-right: 187px;    /* RIGHT value */
}
.front .center {
  margin-right: 0;
}
#sidebar-second {
  width: 187px;           /* RIGHT value */
  min-height: 570px;
  background: url("../images/right-sidebar-bg3.png") no-repeat scroll left top transparent;
}


.not-front.two-sidebars #main-inner {
  background: url("../images/columnsbackground.png") repeat-y scroll left top transparent;
}

.not-front.one-sidebar #main-inner {
  background: url("../images/columnsbackground2.png") repeat-y scroll left top transparent;
}

#main-middle {
position: relative;
}



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

.inner {
	padding: 0px;
}


#navigation,
#navgation-inner {
  /*height: 36px; height is left undefined so that overflow can be seen on block placement page */           /* Navigation Height */
}