/* @group Layout */

div#page {width: 100%;} /* the width of our outermost container 1296 */
	div#nav {width: 100% ;} /* the width of our outermost container minus any margin or padding 1296 */
	
	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.
#main3 {
    float: left ;
    width: 28% ;
    border: 2px solid darkblue ;
    color: white ;
    background: darkblue;
}

#main {
    float: left ;
    width: 99.9% ;
}
/* this container holds the left column content. We load this container before we load the right column for SEO Source Ordering purposes. */
		#left {width: 29%;}

/* this container holds the right column content. */
	#right {width: 41% ;}
/* @end Maincontent */

/* @end Layout */