/* @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 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: 764px !important; 
	width:744px;
} /* 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: 764px;
} /* 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: 564px !important; 
	width:544px;
} 
#left-only #MiddleCol {
	width: 764px;
} 
#right-only #MiddleCol {
	width: 764px;
} 
#wide #MiddleCol {
	width: 100%;
} 

#left {
	width: 198px;
}

#right {
	width: 198px;
}
/* @end Main Content */

/* @end Layout */