// ==UserScript==
// @name          Gmail 3: No Ads
// @namespace     http://userstyles.org
// @description	  Hides ads (as found on the right side-bar on every message) on Gmail version 3; enjoy
// @author        war59312
// @homepage      http://userstyles.org/styles/15794
// @include       http://mail.google.com/*
// @include       https://mail.google.com/*
// @include       http://*.mail.google.com/*
// @include       https://*.mail.google.com/*
// ==/UserScript==
(function() {
var css = "div.mn { display: none !important }\n\n.u5, .u8 { display: none !important }\n\ntable.iY > tr > td:first-child + td > div { width: auto !important }\n\ntable.iY > tr > td:first-child + td + td > div { width: 0 !important; position: relative !important }\n\ntable.iY > tr > td:first-child + td + td > div > div { position: absolute !important; right: 0 !important; top: 0 !important }\n\ntable.iY div.hj { width: auto !important; }\n\ntable.iY div.hj div.hk { display: inline !important; padding-right: 10px !important }\n\ntable.iY div.hj div.hk span img { display: none !important }\n\ntable.iY div.hj div.hk span {\npadding: 0px 6px 1px 6px !important;\nborder-top-width: 0 !important;\n-moz-border-radius: 0 0 4px 4px !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); 
	}
}
})();
