//alert(navigator.appVersion);

document.writeln('<style type="text/css"><!--');
if (navigator.appVersion.indexOf('Mac') > -1)
{
	if (navigator.userAgent.indexOf('Safari') > -1)
	{
		document.write('.xxsmall { font-size: 50%; }');
		document.write('.xsmall { font-size: 60%; }');
		document.write('.small { font-size: 70%; }');
		document.write('.medium { font-size: 80%; }');
		document.write('.large { font-size: 90%; }');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
	else if (navigator.userAgent.indexOf('Firefox') > -1)
	{
		document.write('.xxsmall { font-size: 50%; }');
		document.write('.xsmall { font-size: 60%; }');
		document.write('.small { font-size: 70%; }');
		document.write('.medium { font-size: 80%; }');
		document.write('.large { font-size: 90%; }');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
	else
	{
		document.write('.xxsmall { font-size: 55%; }');
		document.write('.xsmall {font-size: 65%;}');
		document.write('.small {font-size: 75%;}');
		document.write('.medium {font-size: 80%;}');
		document.write('.large {font-size: 90%;}');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
}
else
{
	if (navigator.appVersion.indexOf('MSIE') > -1)
	{
		document.write('.xxsmall { font-size: 65%; }');
		document.write('.xsmall { font-size: 70%; }');
		document.write('.small { font-size: 75%; }');
		document.write('.medium { font-size: 80%;}');
		document.write('.large {font-size: 90%; }');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
	else if (navigator.userAgent.indexOf('Firefox') > -1)
	{
		document.write('.xxsmall { font-size: 60%; }');
		document.write('.xsmall { font-size: 70%; }');
		document.write('.small { font-size: 75%; }');
		document.write('.medium { font-size: 80%; }');
		document.write('.large { font-size: 90%; }');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
	else
	{
		document.write('.xxsmall { font-size: 55%; }');
		document.write('.xsmall { font-size: 65%; }');
		document.write('.small { font-size: 75%; }');
		document.write('.medium { font-size: 80%; }');
		document.write('.large { font-size: 90%; }');
		document.write('.xlarge { font-size: 100%; }');
		document.write('.xxlarge { font-size: 120%; }');
	}
}
document.writeln('--></style>');


