// JavaScript Document
document.write('<link rel="stylesheet" href="/styles/');
//alert(navigator.userAgent);

var agt=navigator.userAgent.toLowerCase(); 

if (agt.indexOf('opera') != -1)
{
	document.write('opera.css');
}
else if (agt.indexOf('safari') != -1) 
{
	document.write('safari.css');
}
else if(agt.indexOf('granparadiso') != -1)
{
	if (agt.indexOf('mac') != -1)
	{
		document.write('firefox_mac.css');
	}
	else
	{
		document.write('firefox.css');
	}
}
else if (agt.indexOf('firefox') != -1) 
{
	if (agt.indexOf('mac') != -1)
	{
		document.write('firefox_mac.css');
	}
	else
	{
		document.write('firefox.css');
	}
}
else if (agt.indexOf('msie') != -1)
{
	if (agt.indexOf('msie 7') != -1)
	{
		document.write('iexplorer7.css');
	}
	else
	{
		document.write('iexplorer.css');
	}
}
else
{
	document.write('default.css');
}

document.write('" type="text/css">');