/* @group Layout */

div#page {width: 966px;} /* the width of our outermost container */
	div#nav {width: 966px;} /* the width of our outermost container minus any margin or padding */
	
	li.narrow {display: block;}
	li.wide {display: none;}

/* @group Maincontent */

/* this container holds the left column and mainbody content. We load this container first for SEO Source Ordering purposes.
We set the width of this container based upon the content layout logic. (see includes/template_config.php) */
	#both #LoadFirst {width: 766px !important; width:746px;} /* The available width minus the width of the right container */
	#left-only #LoadFirst {width: 100%;} /* The available width because we no longer have the right container */
	#right-only #LoadFirst {width: 766px;} /* The available width minus the width of the right container */
	#wide #LoadFirst {width: 100%;} /* The available width because we no longer have the left or right containers */

/* The #MiddleCol container holds the mainbody content. We load this container before we load the left column for SEO Source Ordering purposes.
We set the width of this container based upon the content layout logic. (see template_config.php) */
		#both #MiddleCol {width: 566px !important; width:546px;} /* The available width */
		#left-only #MiddleCol {width: 766px;} /* The available width minus the width of the left container */
		#right-only #MiddleCol {width: 766px;} /* The available width minus the width of the right container */
		#wide #MiddleCol {width: 100%;} /* The available width */

/* this container holds the left column content. We load this container before we load the right column for SEO Source Ordering purposes. */
		#left {width: 200px;}

/* this container holds the right column content. */
	#right {width: 200px;}
/* @end Maincontent */

/* @end Layout */