diff --git a/src/facilities/fsDecoration.js b/src/facilities/fsDecoration.js
index dfa9241948c3441b27020fb3bfceb47504b3c78a..92ff25a27c2d9b6a8b8c644d9271abbea23d9e46 100644
--- a/src/facilities/fsDecoration.js
+++ b/src/facilities/fsDecoration.js
@@ -76,13 +76,13 @@ App.UI.facilityRedecoration = function() {
 		const select = document.createElement("select");
 		select.classList.add("rajs-list");
 		for (const decorationName of decorationNames) {
-			const choice = App.UI.DOM.makeElement("option", decorationName, "indent");
+			const choice = App.UI.DOM.makeElement("option", decorationName);
 			if (V[variable] === decorationName) {
 				choice.selected = true;
 			}
 			select.append(choice);
 		}
-		const choice = App.UI.DOM.makeElement("option", "Standard", "indent");
+		const choice = App.UI.DOM.makeElement("option", "Standard");
 		if (V[variable] === "standard") {
 			choice.selected = true;
 		}
@@ -106,15 +106,15 @@ App.UI.facilityRedecoration = function() {
 		const select = document.createElement("select");
 		select.classList.add("rajs-list");
 		for (const decorationName of decorationNames) {
-			App.UI.DOM.appendNewElement("option", select, decorationName, "indent");
+			App.UI.DOM.appendNewElement("option", select, decorationName);
 		}
-		App.UI.DOM.appendNewElement("option", select, "Standard", "indent");
+		App.UI.DOM.appendNewElement("option", select, "Standard");
 
-		App.UI.DOM.appendNewElement("option", select, "Distribute Evenly", "indent");
+		App.UI.DOM.appendNewElement("option", select, "Distribute Evenly");
 
 		select.onchange = () => {
 			const O = select.options[select.selectedIndex];
-			if (O.value === "Distribute Evenly") {
+			if (O.value === "Distribute Evenly") { // Cycles through the list of available FS decorations, and distributes them to facilities round robin style.
 				let i = 0;
 				for (const decoration of activeFacilities.values()) {
 					cashX(-5000, "capEx");