// ==UserScript==
// @name          Hindu.com widener
// @namespace     http://userstyles.org
// @description	  Hindu.com widener
// @author        JoeSimmons
// @homepage      http://userstyles.org/styles/12552
// @include       http://hindu.com/*
// @include       https://hindu.com/*
// @include       http://*.hindu.com/*
// @include       https://*.hindu.com/*
// @include       http://thehindu.com/*
// @include       https://thehindu.com/*
// @include       http://*.thehindu.com/*
// @include       https://*.thehindu.com/*
// @include       http://hinduonnet.com/*
// @include       https://hinduonnet.com/*
// @include       http://*.hinduonnet.com/*
// @include       https://*.hinduonnet.com/*
// @run-at        document-start
// ==/UserScript==
(function() {
var css = "body>center>table[width=\"800\"]{width:100%!important}\nbody>center>table[width=\"800\"]>tbody>tr>td[width=\"229\"]{min-width:230px!important}\nbody>center>table[width=\"800\"]>tbody>tr>td[width=\"448\"]{width:100%!important}";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}
})();

