/* @group Layout */
div#page {
	width: 800px;
} /* the width of our outermost container */
div#nav {
	width: 800px;
} /* the width of our outermost container minus any margin or padding */
	
li.narrow {
	display: none;
}

li.wide {
	display: block;
}
	
/* @group Main Content */

/* 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: 600px !important; 
	width:580px;
} 
#left-only #LoadFirst {
	width: 100%;
} 
#right-only #LoadFirst {
	width: 600px;
} 
#wide #LoadFirst {
	width: 100%;
} 

/* 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: 400px !important; width:380px;
} 
#left-only #MiddleCol {
	width: 600px;
} 
#right-only #MiddleCol {
	width: 600px;
} 
#wide #MiddleCol {
	width: 100%;
} 

/* 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 Main Content */
/* @end Layout */