/* LAYOUT: POSITIONED: CORE RULES */
/* These rules are the very heart of the positioned layouts */

#masthead, #container {
	position:relative;
  }
#masthead {
	border-left:none !important;
	border-right:none !important;
	}
#container {
	border:none !important;
	}
#content {
	position:absolute;
	z-index:2;
	}
#sidebar {
	position:absolute;
	z-index:1;
	}
