diff --git a/src/003-assets/CSS/links.css b/src/003-assets/CSS/links.css
index 654265f051a54e3cb206dd9788a6addd3fe4df5b..5ea75b9308265e8e8d462f309f020e44ac34d277 100644
--- a/src/003-assets/CSS/links.css
+++ b/src/003-assets/CSS/links.css
@@ -50,6 +50,7 @@ ul.choicesStrip {
 	display: inline;
 	list-style-type: none;
 	padding: 0mm;
+	margin-left: 0em;
 }
 
 ul.choicesStrip li {
diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js
index 6fda55a9026a0e24fff66c9a5deb24ee36a69879..4d0a9b9e5e1296a3fcf23538dc5e406a79ff8a66 100644
--- a/src/markets/specificMarkets/customSlaveMarket.js
+++ b/src/markets/specificMarkets/customSlaveMarket.js
@@ -121,7 +121,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.health === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -149,7 +149,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.muscles >= Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -175,7 +175,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.lips >= Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -201,12 +201,12 @@ App.Markets["Custom Slave"] = function() {
 			for (const [value, text] of choices) {
 				if (slave.voice === Number(value)) {
 					if (slave.voice === -1) {
-						return `${text}.`;
+						return `${text}. `;
 					} else {
-						return `${text} voice.`;
+						return `${text} voice. `;
 					}
 				} else {
-					return `Voice is unimportant.`;
+					return `Voice is unimportant. `;
 				}
 			}
 		}
@@ -231,7 +231,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.heightMod === value) {
-					return `${text} height.`;
+					return `${text} height. `;
 				}
 			}
 		}
@@ -259,7 +259,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.weight >= Number(value)) {
-					return `${text} weight.`;
+					return `${text} weight. `;
 				}
 			}
 		}
@@ -284,7 +284,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.face >= Number(value)) {
-					return `${text} face.`;
+					return `${text} face. `;
 				}
 			}
 		}
@@ -407,9 +407,9 @@ App.Markets["Custom Slave"] = function() {
 			for (const [value, text] of choices) {
 				if (slave.boobs >= Number(value)) {
 					if (slave.boobs <= 200) {
-						return `${text} chest.`;
+						return `${text} chest. `;
 					} else {
-						return `${text} breasts.`;
+						return `${text} breasts. `;
 					}
 				}
 			}
@@ -434,7 +434,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.butt >= Number(value)) {
-					return `${text} buttocks.`;
+					return `${text} buttocks. `;
 				}
 			}
 		}
@@ -457,11 +457,11 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			switch (slave.sex) {
 				case 3:
-					return `Female (cock & balls options not applied).`;
+					return `Female (cock & balls options not applied). `;
 				case 2:
-					return `Male (pussy options not applied).`;
+					return `Male (pussy options not applied). `;
 				case 1:
-					return `Futanari (clit options not applied).`;
+					return `Futanari (clit options not applied). `;
 			}
 		}
 
@@ -482,10 +482,10 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.virgin === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
-			return `Virginity not important.`;
+			return `Virginity not important. `;
 		}
 
 		return el;
@@ -506,7 +506,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.dick >= Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -530,7 +530,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.balls >= Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -554,10 +554,10 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.clit === 5) {
-					return `Pseudophallus.`;
+					return `Pseudophallus. `;
 				} else {
 					if (slave.clit >= Number(value)) {
-						return `${text}.`;
+						return `${text}. `;
 					}
 				}
 			}
@@ -582,7 +582,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.labia === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -605,7 +605,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.vaginaLube === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -627,7 +627,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.analVirgin === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -649,11 +649,11 @@ App.Markets["Custom Slave"] = function() {
 
 		function description() {
 			if (slave.skills <= 10) {
-				return `Sexually unskilled.`;
+				return `Sexually unskilled. `;
 			} else if (slave.skills <= 15) {
-				return `Basic sex skills.`;
+				return `Basic sex skills. `;
 			} else {
-				return `Sexually skilled.`;
+				return `Sexually skilled. `;
 			}
 		}
 
@@ -674,11 +674,11 @@ App.Markets["Custom Slave"] = function() {
 
 		function description() {
 			if (slave.skill.whore <= 10) {
-				return `Unskilled at prostitution and entertainment.`;
+				return `Unskilled at prostitution and entertainment. `;
 			} else if (slave.skills <= 15) {
-				return `Basic skills at prostitution and entertainment.`;
+				return `Basic skills at prostitution and entertainment. `;
 			} else {
-				return `Skilled at prostitution and entertainment.`;
+				return `Skilled at prostitution and entertainment. `;
 			}
 		}
 
@@ -699,7 +699,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.skill.combat >= Number(value)) {
-					return `${text} at combat`;
+					return `${text} at combat. `;
 				}
 			}
 		}
@@ -726,7 +726,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.intelligence === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -749,7 +749,7 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.intelligenceImplant >= Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
 		}
@@ -810,10 +810,10 @@ App.Markets["Custom Slave"] = function() {
 			const vision = getBestVision(slave);
 			for (const [value, text] of choices) {
 				if (vision === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
-			return `Blind.`;
+			return `Blind. `;
 		}
 
 		return el;
@@ -836,10 +836,10 @@ App.Markets["Custom Slave"] = function() {
 		function description() {
 			for (const [value, text] of choices) {
 				if (slave.hears === Number(value)) {
-					return `${text}.`;
+					return `${text}. `;
 				}
 			}
-			return `Hard of hearing.`;
+			return `Hard of hearing. `;
 		}
 
 		return el;
@@ -861,7 +861,7 @@ App.Markets["Custom Slave"] = function() {
 				if (slave.smells === Number(value)) {
 					return `${text}.`;
 				} else {
-					return `Normal Sense of smell.`;
+					return `Normal Sense of smell. `;
 				}
 			}
 		}
@@ -885,7 +885,7 @@ App.Markets["Custom Slave"] = function() {
 				if (slave.tastes === Number(value)) {
 					return `${text}.`;
 				} else {
-					return `Normal Sense of taste.`;
+					return `Normal Sense of taste. `;
 				}
 			}
 		}