﻿/*
	This fixes a difference between IE9 and other browsers.
	IE9 needs this tr to stay "float:left;" to work; others will only center if it's set to float:none;
*/
@media all and (max-width:700px)
{
	.primarynavcontainer .primarynav tr
	{
		float:none;
	}
}
