﻿/* adding this stylesheet converts the fluid layout to a fixed-width layout when needed */
/* the fixed pixel width value can be changed, but should be the same value for the elements below */

div.bar
{
	min-width: 961px;
}

div.body
{
	min-width: 961px;
}

div.footer
{
	min-width: 961px;
}

div.fixedwidth
{
	min-width: 961px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

