/* -- Layout-- */



div#page {

width: 700px; /* the width of our outermost container */

}



/* 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) */

#LoadFirst-both {

	width: 530px; /* The available width minus the width of the right container */

}

#LoadFirst-left-only {

	width: 100%; /* The available width because we no longer have the right container */

}

#LoadFirst-right-only {

	width: 530px; /* The available width minus the width of the right container */

}

#LoadFirst-wide {

	width: 100%; /* The available width because we no longer have the left or right containers */

}

* html #LoadFirst {

	height: 1%; /* We apply a height expression for ie6 */

}



/* 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) */

#MiddleCol-both {

	width: 400px; /* The available width */

}



#MiddleCol-left-only {

	width: 530px; /* The available width minus the width of the left container */	
}

#MiddleCol-left-only .inside
{
	width: 530px;
}

#MiddleCol-right-only {

	width: 530px; /* The available width minus the width of the right container */

}

#mainbody
{
	width:530px;
}

#MiddleCol-wide {

	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: 140px;

}

/* this container holds the right column content. */

#right {

	width: 140px;
}
#footer
{
	width: 700px;
}
#header
{
	width: 700px;
	height: 132px;
}

/* end MAINCONTENT */

/* end Layout */