diff --git a/src/004-base/arcologyBuilding.js b/src/004-base/arcologyBuilding.js
index c8dd4bb816267ff885a0ddb35dfca47ba44c09ce..687a3f36e11ce99c069d3a20f790c1b86f7bbce5 100644
--- a/src/004-base/arcologyBuilding.js
+++ b/src/004-base/arcologyBuilding.js
@@ -167,7 +167,7 @@ App.Arcology.Cell.BaseCell = class extends App.Entity.Serializable {
 			}
 
 			if (cell.owner === 1) {
-				fragment.append(`Selling this sector would relinquish a ${oneCellPercentage}% interest in ${A.name}. Such an interest is worth ${cashFormat(price(false))}.`);
+				App.Events.addNode(fragment, [`Selling this sector would relinquish a ${oneCellPercentage}% interest in ${A.name}. Such an interest is worth <span class='cash'>${cashFormat(price(false))}.</span>`]);
 
 				if (ownedCells > 1) {
 					const span = document.createElement("span");
@@ -182,7 +182,7 @@ App.Arcology.Cell.BaseCell = class extends App.Entity.Serializable {
 					fragment.append(" ", span);
 				}
 			} else {
-				fragment.append(`You will have to acquire an additional ${oneCellPercentage}% interest in ${A.name} to take control of this sector. Such an interest is worth ${cashFormat(price(true))} and will require a transaction cost of ${cashFormat(10000)} to acquire for a total cost of ${cashFormat(price(true) + 10000)}.`);
+				App.Events.addNode(fragment, [`You will have to acquire an additional ${oneCellPercentage}% interest in ${A.name} to take control of this sector. Such an interest is worth ${cashFormatColor(price(true))} and will require a transaction cost of ${cashFormatColor(10000)} to acquire for a total cost of <span class='cash'>${cashFormat(price(true) + 10000)}.</span>`]);
 				const availableCells = allCells.length * ((100 - A.minority) / 100) - ownedCells;
 				if (availableCells >= 1) {
 					const buySpan = document.createElement("span");