// ==UserScript==
// @name          Spiceworks Remove Ad Column
// @namespace     http://userstyles.org
// @description	  Since you already run adblock to remove ads from Spiceworks, this stylesheet change will widen the tickets area so you do not have 320px of blank space.
// @author        ticklemeozmo
// @homepage      http://userstyles.org/styles/58953
// @run-at        document-start
// ==/UserScript==
(function() {
var css = "#content_wrapper {\npadding-right: 0px !important;\n}";
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); 
	}
}
})();

