/**
 **
 **  Browser-Specific Overrides
 **
 **/ 
$(document).ready(function()
{	
	if ($.browser.safari) 
	{   
		//$("td.Button").css("font-size", "11px");
		//$("td.Button a").css("font-size", "11px");
		$("td.Button").css("font-weight", "normal");		
		$("td.Button a").css("font-weight", "normal");	
		$(".RightText").css("font-size", "13px");
		$(".RightText").css("line-height", "130%");
		$("#quote").css("width", "385px");
	}
	
	if ($.browser.firefox || $.browser.mozilla) 
	{   
		$("#buttons").css("top", "119px");
		$("td.Button").css("height", "22px");		
		
		$("#buttons").css("left", "253px");
		$("#buttons").css("width", "677px");
	}
});