/* @group Layout */

div#page {width: 100% ;} /* the width of our outermost container 1070 */

	div#nav {width: 100% ;} /* the width of our outermost container minus any margin or padding 1070 */

	

	li.narrow {display: none;}

	li.wide {display: block;}

	

/* @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: 600px !important; width:580px;} /* 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: 600px;} /* 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.

#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 */