// JavaScript Document
//attempts to hack the stylesheet to correct for layout difference caused by different mac vs pc handling of allcaps
if (navigator.userAgent.indexOf('Windows') == -1) {
	document.writeln('<style type="text/css" media="all">');
	document.writeln('input[type="radio"] { bottom: -1px; }');
	document.writeln('li.menucustomerservice + li.menucustomerservice { margin-left: 39px; }');
	document.writeln('</style>');
}