From 367554b8f25ea035bb29dd3847b7fc9e76ddc7a1 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 29 Jan 2020 23:12:56 -0500
Subject: [PATCH] more css

---
 src/events/intro/economyIntro.tw      |  46 +--
 src/events/intro/extremeIntro.tw      |  37 +-
 src/events/intro/genderIntro.tw       |  41 +-
 src/events/intro/pcBodyIntro.tw       | 236 +++++++-----
 src/events/intro/pcExperienceIntro.tw |   9 +-
 src/events/intro/tradeIntro.tw        |  34 +-
 src/pregmod/customizeSlaveTrade.tw    |  52 +--
 src/pregmod/pcAppearanceIntro.tw      | 521 ++++++++++++++------------
 src/pregmod/pcPregIntro.tw            |  97 ++---
 src/pregmod/slaveAgeIntro.tw          |  31 +-
 10 files changed, 642 insertions(+), 462 deletions(-)

diff --git a/src/events/intro/economyIntro.tw b/src/events/intro/economyIntro.tw
index 28ab3038723..c45964c9b78 100644
--- a/src/events/intro/economyIntro.tw
+++ b/src/events/intro/economyIntro.tw
@@ -12,7 +12,7 @@
 				<span style="font-weight:Bold">
 					Not truly dire. Not yet.
 				</span>
-				<span class="minor-note">
+				<span class="note">
 					Very Easy
 				</span>
 			</div>
@@ -21,22 +21,22 @@
 			</div>
 		<<elseif $baseDifficulty == 2>>
 			<div>
-				<span font-weight:bold>
+				<span style="font-weight:Bold">
 					Getting a touch dire.
 				</span>
-				<span class="minor-note">
+				<span class="note">
 					Easy
 				</span>	
 			</div>
 			<div>
 				[[Harder|Economy Intro][$economy = 100, $baseDifficulty = 3]] | [[Easier|Economy Intro][$economy = 200, $baseDifficulty = 1]]
-			/div>
+			</div>
 		<<elseif $baseDifficulty == 3>>
 			<div>
-				<span font-weight:bold>
+				<span style="font-weight:Bold">
 					Very serious.
 				</span>
-				<span class="minor-note">
+				<span class="note">
 					Default Difficulty
 				</span>
 			</div>
@@ -45,10 +45,10 @@
 			</div>
 		<<elseif $baseDifficulty == 4>>
 			<div>
-				<span font-weight:bold>
+				<span style="font-weight:Bold">
 					It won't be pretty.
 				</span>
-				<span class="minor-note">
+				<span class="note">
 					Hard
 				</span>
 			</div>
@@ -57,12 +57,12 @@
 			</div>
 		<<else>>
 			<div>
-				<span font-weight:bold>
+				<span style="font-weight:Bold">
 					This is the last dance.
 				</span>
 			</div>
 			<div>
-				<span class="minor-note">
+				<span class="note">
 					Very Hard
 				</span>
 			</div>
@@ -77,15 +77,15 @@
 	<span class="intro question">
 		How fast is it crumbling?
 	</span>
-	<span class="minor-note">
+	<span class="note">
 		Some economic content requires this to be set to harder than vanilla
 	</span>
 	<<if $difficultySwitch == 0>>
 		<div>
-			<span font-weight:bold>
+			<span style="font-weight:Bold">
 				Barely noticeable, for now.
 			</span>
-			<span class="minor-note">
+			<span class="note">
 				Vanilla
 			</span>
 		</div>
@@ -94,10 +94,10 @@
 		</div>
 	<<elseif $econRate == 1>>
 		<div>
-			<span font-weight:bold>
+			<span style="font-weight:Bold">
 				A slow decline.
 			</span>
-			<span class="minor-note">
+			<span class="note">
 				Easy
 			</span>
 		</div>
@@ -106,10 +106,10 @@
 		</div>
 	<<elseif $econRate == 2>>
 		<div>
-			<span font-weight:bold>
+			<span style="font-weight:Bold">
 				It's visibly deteriorating before your eyes.
 			</span>
-			<span class="minor-note">
+			<span class="note">
 				Default Difficulty
 			</span>
 		</div>
@@ -118,10 +118,10 @@
 		</div>
 	<<else>>
 		<div>
-			<span font-weight:bold>
+			<span style="font-weight:Bold">
 				It's going to hell in a handbasket.
 			</span>
-			<span class="minor-note">
+			<span class="note">
 				Hard
 			</span>
 		</div>
@@ -135,11 +135,11 @@
 		All the things you need to run your arcology are getting more expensive
 		<<if $incomeMod == 0>>
 			while all forms of income
-			<span font-weight:bold>remain static</span>. [[Easier|Economy Intro][$incomeRate = 1]]
+			<span style="font-weight:Bold">remain static</span>. [[Easier|Economy Intro][$incomeRate = 1]]
 		<<elseif $incomeMod == 1>>
-			while all forms of income <span font-weight:bold>rise but cannot keep pace</span>. [[Easier|Economy Intro][$incomeRate = 2]] | [[Harder|Economy Intro][$incomeRate = 0]]
+			while all forms of income <span style="font-weight:Bold">rise but cannot keep pace</span>. [[Easier|Economy Intro][$incomeRate = 2]] | [[Harder|Economy Intro][$incomeRate = 0]]
 		<<else>>
-			but luckily all forms of income <span font-weight:bold>rise in lockstep</span>. [[Harder|Economy Intro][$incomeRate = 1]]
+			but luckily all forms of income <span style="font-weight:Bold">rise in lockstep</span>. [[Harder|Economy Intro][$incomeRate = 1]]
 		<</if>>
 	</div>
 
@@ -153,7 +153,7 @@
 	</p>
 	<p>
 		[[Skip Intro|Intro Summary]]
-		<span class="minor-note">
+		<span class="note">
 			This will preclude you from taking over an established arcology.
 		</span>
 	</p>
diff --git a/src/events/intro/extremeIntro.tw b/src/events/intro/extremeIntro.tw
index 516b2d348f0..ef80ed1d706 100644
--- a/src/events/intro/extremeIntro.tw
+++ b/src/events/intro/extremeIntro.tw
@@ -1,8 +1,33 @@
-:: Extreme Intro
+:: Extreme Intro [nobr]
 
-The early Free Cities were wild places where the writ of law did not run. In some of the most depraved, slaves' bodies, minds and even lives were playthings of the wealthy and powerful. Though modern Free Cities are tremendously varied, a majority of the new communities made a choice about whether extreme practices were a flaw in a lawless society or one of its benefits. @@.orange;How did most Free Cities react to the excesses of the early days?@@
+<p>
+	The early Free Cities were wild places where the writ of law did not run. In some of the most depraved, slaves' bodies, minds and even lives were playthings of the wealthy and powerful. Though modern Free Cities are tremendously varied, a majority of the new communities made a choice about whether extreme practices were a flaw in a lawless society or one of its benefits.
+	<span class="intro question">
+		How did most Free Cities react to the excesses of the early days?
+	</span>
+</p>
 
-[[They drew back from them.|Gender Intro][$seeExtreme = 0]] //Extreme content such as amputation and castration will not appear.//
-[[They reveled in them.|Gender Intro][$seeExtreme = 1]] //Extreme content will appear.//
-[[They reveled in them and were particularly inventive.|Gender Intro][$seeExtreme = 1,$seeHyperPreg = 1]] //Extreme content will appear, including hyper-pregnancy related content//
-[[They drew back from them, but remained creative.|Gender Intro][$seeExtreme = 0,$seeHyperPreg = 1]] //Extreme content will not appear, but hyper-pregnancy related content might appear.//
+<div>
+	[[They drew back from them.|Gender Intro][$seeExtreme = 0]]
+	<span class="note">
+		Extreme content such as amputation and castration will not appear.
+	</span>
+</div>
+<div>
+	[[They reveled in them.|Gender Intro][$seeExtreme = 1]]
+	<span class="note">
+		Extreme content will appear.
+	</span>
+</div>
+<div>
+	[[They drew back from them, but remained creative.|Gender Intro][$seeExtreme = 0,$seeHyperPreg = 1]]
+	<span class="note">
+		Extreme content will not appear, but hyper-pregnancy related content might appear.
+	</span>
+</div>
+<div>
+	[[They reveled in them and were particularly inventive.|Gender Intro][$seeExtreme = 1,$seeHyperPreg = 1]]
+	<span class="note">
+		Extreme content will appear, including hyper-pregnancy related content
+	</span>
+</div>
diff --git a/src/events/intro/genderIntro.tw b/src/events/intro/genderIntro.tw
index 3beb2b54c53..14bfee13676 100644
--- a/src/events/intro/genderIntro.tw
+++ b/src/events/intro/genderIntro.tw
@@ -1,12 +1,33 @@
-:: Gender Intro
+:: Gender Intro [nobr]
 
-The Free Cities are sexually libertine places, and sexual slavery is ubiquitous. Some of the early Free Cities upheld or even strengthened traditional gender roles, expecting men to be men and women to be women. Others subscribed to an interesting refinement of those gender roles, considering any sex slave female, regardless of her biology. A small minority even went so far as to strongly favor societal feminization of slaves born male; in these, biologically female slaves were a rare sight. @@.orange;Which kind of Free City came to predominate?@@
+<p>
+	The Free Cities are sexually libertine places, and sexual slavery is ubiquitous. Some of the early Free Cities upheld or even strengthened traditional gender roles, expecting men to be men and women to be women. Others subscribed to an interesting refinement of those gender roles, considering any sex slave female, regardless of her biology. A small minority even went so far as to strongly favor societal feminization of slaves born male; in these, biologically female slaves were a rare sight.
+	<span class="intro question">
+		Which kind of Free City came to predominate?
+	</span>
+</p>
 
-[[Free Cities that were open-minded about who could be a slave girl.|Slave Age Intro][$seeDicks = 25]]
-&nbsp;&nbsp;&nbsp;&nbsp;//Default setting. The majority of slaves will be biologically female, and all content will be available.//
-[[Free Cities that understood that girls are girls.|Slave Age Intro][$seeDicks = 0]]
-&nbsp;&nbsp;&nbsp;&nbsp;//Almost all slaves will be biologically female, restricting some content.//
-[[Free Cities that understood that girls are girls with some exceptions.|Slave Age Intro][$makeDicks = 1, $seeDicks = 0]]
-&nbsp;&nbsp;&nbsp;&nbsp;//This option will make almost all generated slaves female, but will allow for the attachment of a certain organ through surgery.//
-[[Free Cities that preferred girls with dicks.|Slave Age Intro][$seeDicks = 100]]
-&nbsp;&nbsp;&nbsp;&nbsp;//Almost all slaves will be biologically male, restricting some content.//
+<div>
+	[[Free Cities that were open-minded about who could be a slave girl.|Slave Age Intro][$seeDicks = 25]]
+	<span class="note">
+		Default setting. The majority of slaves will be biologically female, and all content will be available.
+	</span>
+</div>
+<div>
+	[[Free Cities that understood that girls are girls.|Slave Age Intro][$seeDicks = 0]]
+	<span class="note">
+		Almost all slaves will be biologically female, restricting some content.
+	</span>
+</div>
+<div>
+	[[Free Cities that understood that girls are girls with some exceptions.|Slave Age Intro][$makeDicks = 1, $seeDicks = 0]]
+	<span class="note">
+		This option will make almost all generated slaves female, but will allow for the attachment of a certain organ through surgery.
+	</span>
+</div>
+<div>
+	[[Free Cities that preferred girls with dicks.|Slave Age Intro][$seeDicks = 100]]
+	<span class="note">
+		Almost all slaves will be biologically male, restricting some content.
+	</span>
+</div>
diff --git a/src/events/intro/pcBodyIntro.tw b/src/events/intro/pcBodyIntro.tw
index 74ab2a63410..90686496bd0 100644
--- a/src/events/intro/pcBodyIntro.tw
+++ b/src/events/intro/pcBodyIntro.tw
@@ -1,105 +1,155 @@
 :: PC Body Intro [nobr]
 
-Most slaveowners in the Free Cities are male. The preexisting power structures of the old world have mostly migrated to the new, and it can often be very hard to be a free woman in the Free Cities. Some manage to make their way, but in many arcologies, men are the owners, and women are the owned. You'll cut a striking figure as the owner and leader of your arcology, but @@.orange;what's under your business attire?@@
+<p>
+	Most slaveowners in the Free Cities are male. The preexisting power structures of the old world have mostly migrated to the new, and it can often be very hard to be a free woman in the Free Cities. Some manage to make their way, but in many arcologies, men are the owners, and women are the owned. You'll cut a striking figure as the owner and leader of your arcology, but
+	<span class="intro question">
+		what's under your business attire?
+	</span>
+</p>
 
 <<set $PC.actualAge = Math.clamp($PC.actualAge, 14, 80)>>
-<br><br>
 
-<<if $PC.title > 0>>
-	You are a <<if $PC.genes == "XX">>wo<</if>>man with a masculine figure and will be referred to as ''Master.''
-	[[Switch to a feminine appearance|PC Body Intro][$PC.title = 0]]
-<<else>>
-	You are a <<if $PC.genes == "XX">>wo<</if>>man with a feminine figure and will be referred to as ''Mistress.''
-	[[Switch to a masculine appearance|PC Body Intro][$PC.title = 1]]
-<</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-//This option will affect scenes. Femininity may increase difficulty in the future, but for now only your chest and junk matter.//
+<p>
+	<div>
+		<<if $PC.title > 0>>
+			You are a <<if $PC.genes == "XX">>wo<</if>>man with a masculine figure and will be referred to as
+			<span style="font-weight:Bold">
+				Master.
+			</span>
+			[[Switch to a feminine appearance|PC Body Intro][$PC.title = 0]]
+		<<else>>
+			You are a <<if $PC.genes == "XX">>wo<</if>>man with a feminine figure and will be referred to as
+			<span style="font-weight:Bold">
+				Mistress.
+			</span>
+			[[Switch to a masculine appearance|PC Body Intro][$PC.title = 1]]
+		<</if>>
+	</div>
+	<div class="indent note">
+		This option will affect scenes. Femininity may increase difficulty in the future, but for now only your chest and junk matter.
+	</div>
 
-<br>
+	<div>
+		Under my suit jacket,
+		<<if $PC.boobs > 300>>
+			<span style="font-weight:Bold">
+				feminine breasts.
+			</span>
+			[[Remove breasts|PC Body Intro][$PC.boobs = 100]]
+		<<else>>
+			<<if $PC.title > 0>>
+				<span style="font-weight:Bold">
+					masculine muscles.
+				</span>
+				[[Add breasts|PC Body Intro][$PC.boobs = 900]]
+			<<else>>
+				<span style="font-weight:Bold">
+					a flat chest.
+				</span>
+				<span class="note">
+					not 100% implemented
+				</span>
+				[[Add breasts|PC Body Intro][$PC.boobs = 900]]
+			<</if>>
+		<</if>>
+		<div class="note">
+			These options will affect scenes. Sporting breasts will increase difficulty.
+		</div>
+	</div>
 
-Under my suit jacket,
-<<if $PC.boobs > 300>>
-	''feminine breasts.''
-	[[Remove breasts|PC Body Intro][$PC.boobs = 100]]
-<<else>>
-	<<if $PC.title > 0>>
-		''masculine muscles.''
-		[[Add breasts|PC Body Intro][$PC.boobs = 900]]
-	<<else>>
-		''a flat chest.'' //not 100% implemented//
-		[[Add breasts|PC Body Intro][$PC.boobs = 900]]
-	<</if>>
-<</if>>
-//These options will affect scenes. Sporting breasts will increase difficulty.//
+	<div>
+		Behind the front of my tailored
+		<<if $PC.dick != 0>>
+			<<if $PC.vagina != -1>>
+				slacks,
+				<span style="font-weight:Bold">
+					both a penis and a vagina.
+				</span>
+				[[Remove the penis|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.prostate = 0]] | [[Remove the vagina|PC Body Intro][$PC.vagina = -1, $PC.ovaries = 0]]
+			<<else>>
+				slacks, a
+				<span style="font-weight:Bold">
+					penis.
+				</span>
+				[[Switch to vagina|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.prostate = 0, $PC.genes = "XX", $PC.vagina = 1, $PC.ovaries = 1]] | [[Add a vagina|PC Body Intro][$PC.vagina = 1, $PC.ovaries = 1]]
+			<</if>>
+		<<else>>
+			skirt, a
+			<span style="font-weight:Bold">
+				vagina.
+			</span>
+			[[Switch to penis|PC Body Intro][$PC.dick = 4, $PC.balls = 3, $PC.scrotum = 3, $PC.prostate = 1, $PC.genes = "XY", $PC.vagina = -1, $PC.ovaries = 0]] | [[Add a penis|PC Body Intro][$PC.dick = 4, $PC.balls = 3, $PC.scrotum = 3, $PC.prostate = 1]]
+		<</if>>
+	</div>
+	<div class="indent note">
+		These options will affect sex scenes. Feminine options will increase difficulty.
+	</div>
+</p>
+
+<p>
+	<div class="intro question">
+		How old are you?
+	</div>
+	<div>
+		I'm
+		<<if $PC.actualAge >= 65>>
+			getting up in years. I've made a legacy for myself, and I'm not done yet.
+		<<elseif $PC.actualAge >= 50>>
+			well into middle age. I've made a name for myself, and I've still got it.
+		<<elseif $PC.actualAge >= 35>>
+			entering middle age. I'm accomplished, and I retain some youthful vigor.
+		<<else>>
+			surprisingly young. I'll need to prove myself, but I've got energy to burn.
+		<</if>>
+		My age:
+		<span style="font-weight:Bold">
+			<<textbox "$PC.actualAge" $PC.actualAge "PC Body Intro">>
+		</span>
+		<<set $PC.physicalAge = $PC.actualAge, $PC.visualAge = $PC.actualAge>>
+	</div>
+	<div class="indent note">
+		Older player characters start with more reputation and maintain reputation somewhat more easily, but have slightly less sexual energy.
+	</div>
+</p>
 
-<br>
+<p>
+	<div class="intro question">
+		What is your name and alternate indulgence?
+	</div>
 
-Behind the front of my tailored
-<<if $PC.dick != 0>>
+	<div>
+		Name your character: <<textbox "$PC.slaveName" $PC.slaveName "PC Body Intro">> (surname)
+		<<if $PC.slaveSurname>>
+			<<textbox "$PC.slaveSurname" $PC.slaveSurname "PC Body Intro">>
+			<<link "Go by a single name">><<set $PC.slaveSurname = 0, $PC.birthSurname = "">><<goto "PC Body Intro">><</link>>
+		<<else>>
+			<<textbox "$PC.slaveSurname" "" "PC Body Intro">>
+		<</if>>
+	</div>
+	<div class="indent note">
+		As with all text boxes in FC, press the enter key to commit your changes.
+	</div>
+	<div>
+		Preferred refreshment: <<textbox "$PC.refreshment" $PC.refreshment "PC Body Intro">> [[Cigars|PC Body Intro][$PC.refreshment = "cigar",$PC.refreshmentType = 0]] | [[Whiskey|PC Body Intro][$PC.refreshment = "whiskey",$PC.refreshmentType = 1]]
+	</div>
+	<div>
+		Preferred method of consumption:
+		<span style="font-weight:Bold"><<if $PC.refreshmentType == 0>>Smoked<<elseif $PC.refreshmentType == 1>>Drank<<elseif $PC.refreshmentType == 2>>Eaten<<elseif $PC.refreshmentType == 3>>Snorted<<elseif $PC.refreshmentType == 4>>Injected<<elseif $PC.refreshmentType == 5>>Popped<<elseif $PC.refreshmentType == 6>>Dissolved orally<</if>></span>.
+	</div>
+	[[Smoked|PC Body Intro][$PC.refreshmentType = 0]] | [[Drank|PC Body Intro][$PC.refreshmentType = 1]] | [[Eaten|PC Body Intro][$PC.refreshmentType = 2]] | [[Snorted|PC Body Intro][$PC.refreshmentType = 3]] | [[Injected|PC Body Intro][$PC.refreshmentType = 4]] | [[Popped|PC Body Intro][$PC.refreshmentType = 5]] | [[Orally Dissolved|PC Body Intro][$PC.refreshmentType = 6]]
+	<div class="indent note">
+		Flavor only; no mechanical effect. If entering a custom refreshment, please assign proper usage.
+		<<if $PC.refreshmentType == 0>>"Smoke" must fit into the following sentence: "I smoked a $PC.refreshment" to fit events properly
+		<<elseif $PC.refreshmentType == 5>>"Popped" must fit into the following sentence: "I shook the bottle of $PC.refreshment" to fit events properly
+		<<elseif $PC.refreshmentType == 6>>"Orally Dissolved" must fit into the following sentence: "I placed a tab of $PC.refreshment under my tongue" to fit events properly
+		<</if>>
+	</div>
+</p>
+
+<p>
 	<<if $PC.vagina != -1>>
-		slacks, ''both a penis and a vagina.''
-		[[Remove the penis|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.prostate = 0]] | [[Remove the vagina|PC Body Intro][$PC.vagina = -1, $PC.ovaries = 0]]
+		[[Confirm player character customization|PC Preg Intro]]
 	<<else>>
-		slacks, a ''penis.''
-		[[Switch to vagina|PC Body Intro][$PC.dick = 0, $PC.balls = 0, $PC.scrotum = 0, $PC.prostate = 0, $PC.genes = "XX", $PC.vagina = 1, $PC.ovaries = 1]] | [[Add a vagina|PC Body Intro][$PC.vagina = 1, $PC.ovaries = 1]]
+		[[Confirm player character customization|PC Appearance Intro]]
 	<</if>>
-<<else>>
-	skirt, a ''vagina.''
-	[[Switch to penis|PC Body Intro][$PC.dick = 4, $PC.balls = 3, $PC.scrotum = 3, $PC.prostate = 1, $PC.genes = "XY", $PC.vagina = -1, $PC.ovaries = 0]] | [[Add a penis|PC Body Intro][$PC.dick = 4, $PC.balls = 3, $PC.scrotum = 3, $PC.prostate = 1]]
-<</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-//These options will affect sex scenes. Feminine options will increase difficulty.//
-
-<br><br>
-
-@@.orange;How old are you?@@
-<br>
-I'm
-<<if $PC.actualAge >= 65>>
-	getting up in years. I've made a legacy for myself, and I'm not done yet.
-<<elseif $PC.actualAge >= 50>>
-	well into middle age. I've made a name for myself, and I've still got it.
-<<elseif $PC.actualAge >= 35>>
-	entering middle age. I'm accomplished, and I retain some youthful vigor.
-<<else>>
-	surprisingly young. I'll need to prove myself, but I've got energy to burn.
-<</if>>
-My age: ''<<textbox "$PC.actualAge" $PC.actualAge "PC Body Intro">>''
-<<set $PC.physicalAge = $PC.actualAge, $PC.visualAge = $PC.actualAge>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-//Older player characters start with more reputation and maintain reputation somewhat more easily, but have slightly less sexual energy.//
-
-<br><br>
-@@.orange;What is your name and alternate indulgence?@@
-<br>
-
-Name your character: <<textbox "$PC.slaveName" $PC.slaveName "PC Body Intro">> (surname)
-<<if $PC.slaveSurname>>
-	<<textbox "$PC.slaveSurname" $PC.slaveSurname "PC Body Intro">>
-	<<link "Go by a single name">><<set $PC.slaveSurname = 0, $PC.birthSurname = "">><<goto "PC Body Intro">><</link>>
-<<else>>
-	<<textbox "$PC.slaveSurname" "" "PC Body Intro">>
-<</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-//As with all text boxes in FC, press the enter key to commit your changes.//
-<br>
-Preferred refreshment: <<textbox "$PC.refreshment" $PC.refreshment "PC Body Intro">> [[Cigars|PC Body Intro][$PC.refreshment = "cigar",$PC.refreshmentType = 0]] | [[Whiskey|PC Body Intro][$PC.refreshment = "whiskey",$PC.refreshmentType = 1]]
-<br>
-Preferred method of consumption: ''<<if $PC.refreshmentType == 0>>Smoked<<elseif $PC.refreshmentType == 1>>Drank<<elseif $PC.refreshmentType == 2>>Eaten<<elseif $PC.refreshmentType == 3>>Snorted<<elseif $PC.refreshmentType == 4>>Injected<<elseif $PC.refreshmentType == 5>>Popped<<elseif $PC.refreshmentType == 6>>Dissolved orally<</if>>''.
-[[Smoked|PC Body Intro][$PC.refreshmentType = 0]] | [[Drank|PC Body Intro][$PC.refreshmentType = 1]] | [[Eaten|PC Body Intro][$PC.refreshmentType = 2]] | [[Snorted|PC Body Intro][$PC.refreshmentType = 3]] | [[Injected|PC Body Intro][$PC.refreshmentType = 4]] | [[Popped|PC Body Intro][$PC.refreshmentType = 5]] | [[Orally Dissolved|PC Body Intro][$PC.refreshmentType = 6]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-//Flavor only; no mechanical effect. If entering a custom refreshment, please assign proper usage.
-<<if $PC.refreshmentType == 0>>"Smoke" must fit into the following sentence: "I smoked a $PC.refreshment" to fit events properly
-<<elseif $PC.refreshmentType == 5>>"Popped" must fit into the following sentence: "I shook the bottle of $PC.refreshment" to fit events properly
-<<elseif $PC.refreshmentType == 6>>"Orally Dissolved" must fit into the following sentence: "I placed a tab of $PC.refreshment under my tongue" to fit events properly
-<</if>>//
-
-<br><br>
-
-<<if $PC.vagina != -1>>
-	[[Confirm player character customization|PC Preg Intro]]
-<<else>>
-	[[Confirm player character customization|PC Appearance Intro]]
-<</if>>
-
-<br><br>
+</p>
diff --git a/src/events/intro/pcExperienceIntro.tw b/src/events/intro/pcExperienceIntro.tw
index 569672d34c1..3f57f8ec89d 100644
--- a/src/events/intro/pcExperienceIntro.tw
+++ b/src/events/intro/pcExperienceIntro.tw
@@ -3,9 +3,12 @@
 <<if $PC.career == "arcology owner">>
 	<<goto "PC Rumor Intro">>
 <<else>>
-
-	You're a relative unknown in the Free Cities, but it's clear you're already accomplished. The meek and average cannot aspire to acquire arcologies. You've got all the necessary skills to take over an arcology and succeed as its owner, but you should be able to leverage the skills and experience you retain from your past, too. @@.orange;What career brought you to the Free Cities?@@
-	<br>
+	<p>
+		You're a relative unknown in the Free Cities, but it's clear you're already accomplished. The meek and average cannot aspire to acquire arcologies. You've got all the necessary skills to take over an arcology and succeed as its owner, but you should be able to leverage the skills and experience you retain from your past, too.
+		<span class="intro question">
+			What career brought you to the Free Cities?
+		</span>
+	</p>
 
 	<br>[[Idle wealth|PC Rumor Intro][$PC.career = "wealth"]]
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;//Start with @@.yellowgreen;extra money.@@
diff --git a/src/events/intro/tradeIntro.tw b/src/events/intro/tradeIntro.tw
index 44d7cd5823f..0c37ac1779d 100644
--- a/src/events/intro/tradeIntro.tw
+++ b/src/events/intro/tradeIntro.tw
@@ -1,7 +1,31 @@
 :: Trade Intro [nobr]
 
-Most of the Free Cities are run on radically libertarian or even anarcho-capitalist principles. The first Free Cities experimented with indentured servitude, and this rapidly developed into widespread slavery. By now, the Free Cities collectively are a fundamentally slaveowning society and maintain a thriving slave trade that feeds off the terrible conditions in parts of the old world. @@.orange;What attitude have the old world countries generally taken towards this trade?@@
-<br><br>
-[[They've turned a blind eye, or even been complicit.|Extreme Intro][$internationalTrade = 1]] //Slaves from all across the world will appear.//<br>
-[[They've done what little they can to stop it.|Extreme Intro][$internationalTrade = 0]] //Almost all slaves will be from the continent where the arcology is located.//<br>
-<<link "Reactions have been mixed.">><<set $internationalTrade = 0, $customVariety = 1, $customWA = 1>><<goto "Customize Slave Trade">><</link>> //This will bypass arcology location restrictions, allowing you to adjust the nationalities encountered when buying non-customizable slaves.//<br>
\ No newline at end of file
+<p>
+    Most of the Free Cities are run on radically libertarian or even anarcho-capitalist principles. The first Free Cities experimented with indentured servitude, and this rapidly developed into widespread slavery. By now, the Free Cities collectively are a fundamentally slaveowning society and maintain a thriving slave trade that feeds off the terrible conditions in parts of the old world.
+    <span class="intro question">
+        What attitude have the old world countries generally taken towards this trade?
+    </span>
+</p>
+<p>
+    <div>
+        [[They've turned a blind eye, or even been complicit.|Extreme Intro][$internationalTrade = 1]]
+        <span class="note">
+            Slaves from all across the world will appear.
+        </span>
+    </div>
+    <div>
+        [[They've done what little they can to stop it.|Extreme Intro][$internationalTrade = 0]]
+        <span class="note">
+            Almost all slaves will be from the continent where the arcology is located.
+        </span>
+    </div>
+    <div>
+        <<link "Reactions have been mixed.">>
+            <<set $internationalTrade = 0, $customVariety = 1, $customWA = 1>>
+            <<goto "Customize Slave Trade">>
+        <</link>>
+        <span class="note">
+            This will bypass arcology location restrictions, allowing you to adjust the nationalities encountered when buying non-customizable slaves.
+        </span>
+    </div>
+</p>
\ No newline at end of file
diff --git a/src/pregmod/customizeSlaveTrade.tw b/src/pregmod/customizeSlaveTrade.tw
index 829a10963ea..de05fa7406d 100644
--- a/src/pregmod/customizeSlaveTrade.tw
+++ b/src/pregmod/customizeSlaveTrade.tw
@@ -9,14 +9,18 @@
 <<if ndef $customWA>>
 	<<set $customWA = 0>>
 <</if>>
-
-When civilization turned upon itself, some countries readily took to enslaving their own. Others were raided by their neighbors for their desirable, and profitable, citizens. Which nationalities were most affected by the booming slave trade, and thus, likely to appear in your local slave markets?
-<br><br>
-''+ to increase pop. – to reduce pop. 0 to remove entirely''
-<br><br>
-<span id="PopControl"><<include "Basenationalities Controls">></span>
-<br>
-[[Reset filters|passage()][$baseControlsFilter = "all"]] | [[Clear all nationalities|passage()][$nationalities = {}]]
+<p>
+	When civilization turned upon itself, some countries readily took to enslaving their own. Others were raided by their neighbors for their desirable, and profitable, citizens. Which nationalities were most affected by the booming slave trade, and thus, likely to appear in your local slave markets?
+</p>
+<p style="font-weight:Bold">
+	+ to increase pop. – to reduce pop. 0 to remove entirely
+</p>
+<span id="PopControl">
+	<<include "Basenationalities Controls">>
+</span>
+<div>
+	[[Reset filters|passage()][$baseControlsFilter = "all"]] | [[Clear all nationalities|passage()][$nationalities = {}]]
+</div>
 <br style="clear:both"><hr style="margin:0">
 Vanilla presets:
 <span id="vanilla-presets"></span>
@@ -30,19 +34,21 @@ var widgets = Story.widgets
 	.sort().join(' | ');
 setTimeout(function() { new Wikifier(jQuery('#vanilla-presets'), widgets); }, 0);
 <</script>>
-<br>
-Mod presets:
-<span id="mod-presets"></span>
-<<script>>
-var widgets = Story.widgets
-	.map(function(wp) { return wp.text.match(/<<widget\s+"NationalityPresetMod\S+"\s*>>/g); })
-	.filter(function(ws) { return ws; })
-	.reduce(function(arr, el) { return arr.concat(el); }, [])
-	.map(function(w) { return w.replace(/widget\s+"(.*)"\s*/, '$1'); })
-	.filter(function(w) { return Macro.has(w.replace(/[<>]/g, '')); })
-	.sort().join(' | ');
-setTimeout(function() { new Wikifier(jQuery('#mod-presets'), widgets); }, 0);
-<</script>>
-<br><br>
-<<link "Export Settings">><<script>>App.CustomSlaveTrade.export()<</script>><</link>> | <<link "Import Settings">><<script>>App.CustomSlaveTrade.import()<</script>><</link>>
+<div>
+	Mod presets:
+	<span id="mod-presets"></span>
+	<<script>>
+	var widgets = Story.widgets
+		.map(function(wp) { return wp.text.match(/<<widget\s+"NationalityPresetMod\S+"\s*>>/g); })
+		.filter(function(ws) { return ws; })
+		.reduce(function(arr, el) { return arr.concat(el); }, [])
+		.map(function(w) { return w.replace(/widget\s+"(.*)"\s*/, '$1'); })
+		.filter(function(w) { return Macro.has(w.replace(/[<>]/g, '')); })
+		.sort().join(' | ');
+	setTimeout(function() { new Wikifier(jQuery('#mod-presets'), widgets); }, 0);
+	<</script>>
+</div>
+<p>
+	<<link "Export Settings">><<script>>App.CustomSlaveTrade.export()<</script>><</link>> | <<link "Import Settings">><<script>>App.CustomSlaveTrade.import()<</script>><</link>>
+</p>
 <div id="importExportArea"></div>
diff --git a/src/pregmod/pcAppearanceIntro.tw b/src/pregmod/pcAppearanceIntro.tw
index 72e1d46e9c0..ed4ee69b37b 100644
--- a/src/pregmod/pcAppearanceIntro.tw
+++ b/src/pregmod/pcAppearanceIntro.tw
@@ -1,258 +1,281 @@
 :: PC Appearance Intro [nobr]
 
-Race and appearance are largely irrelevant in the Free Cities; there are only the free and the enslaved.
-<br>//Appearance only, no effect on gameplay (unless you make a big deal out of it).//
+<p>
+	Race and appearance are largely irrelevant in the Free Cities; there are only the free and the enslaved.
+	<div class="indent note">
+		Appearance only, no effect on gameplay (unless you make a big deal out of it).
+	</div>
+</p>
 
-<br><br>
+<p>
+	<div class="intro question">
+		What nationality are you?
+	</div>
+	<div>
+		You are $PC.nationality.
+	</div>
+	<div>
+		<<textbox "$PC.nationality" $PC.nationality "PC Appearance Intro">>
+		<span class="note">
+			Capitalize it
+		</span>
+	</div>
+</p>
 
-@@.orange;What nationality are you?@@
-<br>
-You are $PC.nationality.
-<br><<textbox "$PC.nationality" $PC.nationality "PC Appearance Intro">> //Capitalize it//
+<p>
+	<div class="intro question">
+		What race are you?
+	</div>
+	<div id = "ethnicity">
+		You're $PC.race.
+	</div>
+	<<link "White">>
+		<<set $PC.race = "white">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Asian">>
+		<<set $PC.race = "asian">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Latina">>
+		<<set $PC.race = "latina">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Middle Eastern">>
+		<<set $PC.race = "middle eastern">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Black">>
+		<<set $PC.race = "black">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Semitic">>
+		<<set $PC.race = "semitic">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Southern European">>
+		<<set $PC.race = "southern european">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Indo-Aryan">>
+		<<set $PC.race = "indo-aryan">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Amerindian">>
+		<<set $PC.race = "amerindian">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Pacific Islander">>
+		<<set $PC.race = "pacific islander">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Malay">>
+		<<set $PC.race = "malay">>
+		<<PlayerRace>>
+	<</link>>
+	|
+	<<link "Mixed Race">>
+		<<set $PC.race = "mixed race">>
+		<<PlayerRace>>
+	<</link>>
+</p>
 
-<br><br>
+<p>
+	<div class="intro question">
+		What is your skin tone?
+	</div>
+	<div id = "skin">
+		You have $PC.origSkin skin.
+	</div>
+	<<link "Pure White">>
+		<<set $PC.origSkin = "pure white">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Ivory">>
+		<<set $PC.origSkin = "ivory">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "White">>
+		<<set $PC.origSkin = "white">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Extremely Pale">>
+		<<set $PC.origSkin = "extremely pale">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Very Pale">>
+		<<set $PC.origSkin = "very pale">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Pale">>
+		<<set $PC.origSkin = "pale">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Extremely Fair">>
+		<<set $PC.origSkin = "extremely fair">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Very Fair">>
+		<<set $PC.origSkin = "very fair">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Fair">>
+		<<set $PC.origSkin = "fair">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Light">>
+		<<set $PC.origSkin = "light">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Light Olive">>
+		<<set $PC.origSkin = "light olive">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Tan">>
+		<<set $PC.origSkin = "tan">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Olive">>
+		<<set $PC.origSkin = "olive">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Bronze">>
+		<<set $PC.origSkin = "bronze">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Dark Olive">>
+		<<set $PC.origSkin = "dark olive">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Dark">>
+		<<set $PC.origSkin = "dark">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Light Beige">>
+		<<set $PC.origSkin = "light beige">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Beige">>
+		<<set $PC.origSkin = "beige">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Dark Beige">>
+		<<set $PC.origSkin = "dark beige">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Light Brown">>
+		<<set $PC.origSkin = "light brown">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Brown">>
+		<<set $PC.origSkin = "brown">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Dark Brown">>
+		<<set $PC.origSkin = "dark brown">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Black">>
+		<<set $PC.origSkin = "black">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Ebony">>
+		<<set $PC.origSkin = "ebony">>
+		<<PlayerSkin>>
+	<</link>>
+	|
+	<<link "Pure Black">>
+		<<set $PC.origSkin = "pure black">>
+		<<PlayerSkin>>
+	<</link>>
+</p>
 
-@@.orange;What race are you?@@
-<br>
-<span id = "ethnicity">
-You're $PC.race.
-</span>
-<br>
-<<link "White">>
-	<<set $PC.race = "white">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Asian">>
-	<<set $PC.race = "asian">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Latina">>
-	<<set $PC.race = "latina">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Middle Eastern">>
-	<<set $PC.race = "middle eastern">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Black">>
-	<<set $PC.race = "black">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Semitic">>
-	<<set $PC.race = "semitic">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Southern European">>
-	<<set $PC.race = "southern european">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Indo-Aryan">>
-	<<set $PC.race = "indo-aryan">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Amerindian">>
-	<<set $PC.race = "amerindian">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Pacific Islander">>
-	<<set $PC.race = "pacific islander">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Malay">>
-	<<set $PC.race = "malay">>
-	<<PlayerRace>>
-<</link>>
-|
-<<link "Mixed Race">>
-	<<set $PC.race = "mixed race">>
-	<<PlayerRace>>
-<</link>>
+<p>
+	<div class="intro question">
+		Some people have freckles.
+	</div>
+	<div id = "markings">
+		<<if $PC.markings == "none">>
+			Your skin is pure and clear of any freckles.
+		<<elseif $PC.markings == "freckles">>
+			You have some freckles on your cheeks and elsewhere.
+		<<elseif $PC.markings == "heavily freckled">>
+			You have dense freckles on your cheeks and elsewhere.
+		<</if>>
+	</div>
+	<<link "No Freckles">>
+		<<set $PC.markings = "none">>
+		<<PlayerMarkings>>
+	<</link>>
+	|
+	<<link "Light Freckles">>
+		<<set $PC.markings = "freckles">>
+		<<PlayerMarkings>>
+	<</link>>
+	|
+	<<link "Heavy Freckles">>
+		<<set $PC.markings = "heavily freckled">>
+		<<PlayerMarkings>>
+	<</link>>
+</p>
 
-<br><br>
+<p>
+	<div class="intro question">
+		What color are your eyes?
+	</div>
+	<div>
+		You have $PC.eye.origColor eyes.
+	</div>
+	<div>
+		<<textbox "$PC.eye.origColor" $PC.eye.origColor "PC Appearance Intro">>
+	</div>
+</p>
 
-@@.orange;What is your skin tone?@@
-<br>
-<span id = "skin">
-You have $PC.origSkin skin.
-</span>
-<br>
-<<link "Pure White">>
-	<<set $PC.origSkin = "pure white">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Ivory">>
-	<<set $PC.origSkin = "ivory">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "White">>
-	<<set $PC.origSkin = "white">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Extremely Pale">>
-	<<set $PC.origSkin = "extremely pale">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Very Pale">>
-	<<set $PC.origSkin = "very pale">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Pale">>
-	<<set $PC.origSkin = "pale">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Extremely Fair">>
-	<<set $PC.origSkin = "extremely fair">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Very Fair">>
-	<<set $PC.origSkin = "very fair">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Fair">>
-	<<set $PC.origSkin = "fair">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Light">>
-	<<set $PC.origSkin = "light">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Light Olive">>
-	<<set $PC.origSkin = "light olive">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Tan">>
-	<<set $PC.origSkin = "tan">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Olive">>
-	<<set $PC.origSkin = "olive">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Bronze">>
-	<<set $PC.origSkin = "bronze">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Dark Olive">>
-	<<set $PC.origSkin = "dark olive">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Dark">>
-	<<set $PC.origSkin = "dark">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Light Beige">>
-	<<set $PC.origSkin = "light beige">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Beige">>
-	<<set $PC.origSkin = "beige">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Dark Beige">>
-	<<set $PC.origSkin = "dark beige">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Light Brown">>
-	<<set $PC.origSkin = "light brown">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Brown">>
-	<<set $PC.origSkin = "brown">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Dark Brown">>
-	<<set $PC.origSkin = "dark brown">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Black">>
-	<<set $PC.origSkin = "black">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Ebony">>
-	<<set $PC.origSkin = "ebony">>
-	<<PlayerSkin>>
-<</link>>
-|
-<<link "Pure Black">>
-	<<set $PC.origSkin = "pure black">>
-	<<PlayerSkin>>
-<</link>>
+<p>
+	<div class="intro question">
+		What color is your hair?
+	</div>
+	<div>
+		You have $PC.hColor hair.
+	</div>
+	<div>
+		<<textbox "$PC.hColor" $PC.hColor "PC Appearance Intro">>
+	</div>
+</p>
 
-<br><br>
-
-@@.orange;Some people have freckles.@@
-<br>
-<span id = "markings">
-	<<if $PC.markings == "none">>
-		Your skin is pure and clear of any freckles.
-	<<elseif $PC.markings == "freckles">>
-		You have some freckles on your cheeks and elsewhere.
-	<<elseif $PC.markings == "heavily freckled">>
-		You have dense freckles on your cheeks and elsewhere.
-	<</if>>
-</span>
-<br>
-<<link "No Freckles">>
-	<<set $PC.markings = "none">>
-	<<PlayerMarkings>>
-<</link>>
-|
-<<link "Light Freckles">>
-	<<set $PC.markings = "freckles">>
-	<<PlayerMarkings>>
-<</link>>
-|
-<<link "Heavy Freckles">>
-	<<set $PC.markings = "heavily freckled">>
-	<<PlayerMarkings>>
-<</link>>
-
-<br><br>
-
-@@.orange;What color are your eyes?@@
-<br>
-You have $PC.eye.origColor eyes.
-<br><<textbox "$PC.eye.origColor" $PC.eye.origColor "PC Appearance Intro">>
-
-<br><br>
-
-@@.orange;What color is your hair?@@
-<br>
-You have $PC.hColor hair.
-<br><<textbox "$PC.hColor" $PC.hColor "PC Appearance Intro">>
-
-<br><br>
-[[Finish player character customization|PC Experience Intro][resetEyeColor($PC)]]
+<p>
+	[[Finish player character customization|PC Experience Intro][resetEyeColor($PC)]]
+</p>
diff --git a/src/pregmod/pcPregIntro.tw b/src/pregmod/pcPregIntro.tw
index 15a5e0b0271..1bf7dc23eb9 100644
--- a/src/pregmod/pcPregIntro.tw
+++ b/src/pregmod/pcPregIntro.tw
@@ -1,47 +1,58 @@
 :: PC Preg Intro [nobr]
 
-You have a working female reproductive system, and thus, a menstrual cycle. Women already face hardships as slaveowners and arcology owners, and being pregnant, coupled with a strong societal aversion to the dominant being penetrated, leads most pregnant owners to find themselves in dire situations. As an added precaution, since nothing stops an owner from hooking up with another owner, contraceptives are common amongst free women.
-<br><br>
-@@.orange;What's your stance on taking contraceptives?@@
+<p>
+	You have a working female reproductive system, and thus, a menstrual cycle. Women already face hardships as slaveowners and arcology owners, and being pregnant, coupled with a strong societal aversion to the dominant being penetrated, leads most pregnant owners to find themselves in dire situations. As an added precaution, since nothing stops an owner from hooking up with another owner, contraceptives are common amongst free women.
+</p>
 
-<br><br>
-You're
-<<if $PC.preg == -1>>
-	not interested in being a mother.
-	[[Risky|PC Preg Intro][$PC.preg = 0]]
-<<elseif $PC.preg == 0>>
-	fertile and you know the risks.
-	[[Safe|PC Preg Intro][$PC.preg = -1]] | [[About that...|PC Preg Intro][$PC.preg = 10]]
-<<elseif $PC.preg > 42>>
-	proudly pregnant with octuplets and they are coming right now.
-	[[Not pregnant|PC Preg Intro][$PC.preg = 0, $PC.pregType = 0, $PC.labor = 0]]
-<<elseif $PC.preg > 37>>
-	<<print $PC.preg>> weeks pregnant and very close to being due.
-	[[Not pregnant|PC Preg Intro][$PC.preg = 0, $PC.pregType = 0]]
-	| [[Overdid the fertility agents|PC Preg Intro][$PC.preg = 43, $PC.pregType = 8, $PC.labor = 1]]
-<<else>>
-	already pregnant.
-	[[Fertile|PC Preg Intro][$PC.preg = 0]]
-	| [[Make that very pregnant|PC Preg Intro][$PC.preg = 40]]
-<</if>>
-<br>
-//Being or becoming pregnant will raise difficulty.//
+<p class="intro question">
+	What's your stance on taking contraceptives?
+</p>
 
-<br><br>
-@@.orange;Hormones can be an interesting thing, but how do they affect you?@@
-<br><br>
-You're
-<<if $PC.pregMood == 1>>
-	gentle and motherly when you're hormonal.
-	[[Normal|PC Preg Intro][$PC.pregMood = 0]] | [[Aggressive|PC Preg Intro][$PC.pregMood = 2]]
-<<elseif $PC.pregMood == 0>>
-	in complete control of yourself.
-	[[Motherly|PC Preg Intro][$PC.pregMood = 1]] | [[Aggressive|PC Preg Intro][$PC.pregMood = 2]]
-<<else>>
-	aggressive and domineering when you're hormonal.
-	[[Normal|PC Preg Intro][$PC.pregMood = 0]] | [[Motherly|PC Preg Intro][$PC.pregMood = 1]]
-<</if>>
-<br>
-//Hormone induced moods may alter some sex scenes, as well as change slaves' reactions to you.//
-<br><br>
-[[Confirm player character customization|PC Appearance Intro]]
+<p>
+	You're
+	<<if $PC.preg == -1>>
+		not interested in being a mother.
+		[[Risky|PC Preg Intro][$PC.preg = 0]]
+	<<elseif $PC.preg == 0>>
+		fertile and you know the risks.
+		[[Safe|PC Preg Intro][$PC.preg = -1]] | [[About that...|PC Preg Intro][$PC.preg = 10]]
+	<<elseif $PC.preg > 42>>
+		proudly pregnant with octuplets and they are coming right now.
+		[[Not pregnant|PC Preg Intro][$PC.preg = 0, $PC.pregType = 0, $PC.labor = 0]]
+	<<elseif $PC.preg > 37>>
+		<<print $PC.preg>> weeks pregnant and very close to being due.
+		[[Not pregnant|PC Preg Intro][$PC.preg = 0, $PC.pregType = 0]]
+		| [[Overdid the fertility agents|PC Preg Intro][$PC.preg = 43, $PC.pregType = 8, $PC.labor = 1]]
+	<<else>>
+		already pregnant.
+		[[Fertile|PC Preg Intro][$PC.preg = 0]]
+		| [[Make that very pregnant|PC Preg Intro][$PC.preg = 40]]
+	<</if>>
+	<div class="indent note">
+		Being or becoming pregnant will raise difficulty.
+	</div>
+</p>
+
+<p class="intro question">
+	Hormones can be an interesting thing, but how do they affect you?
+</p>
+
+<p>
+	You're
+	<<if $PC.pregMood == 1>>
+		gentle and motherly when you're hormonal.
+		[[Normal|PC Preg Intro][$PC.pregMood = 0]] | [[Aggressive|PC Preg Intro][$PC.pregMood = 2]]
+	<<elseif $PC.pregMood == 0>>
+		in complete control of yourself.
+		[[Motherly|PC Preg Intro][$PC.pregMood = 1]] | [[Aggressive|PC Preg Intro][$PC.pregMood = 2]]
+	<<else>>
+		aggressive and domineering when you're hormonal.
+		[[Normal|PC Preg Intro][$PC.pregMood = 0]] | [[Motherly|PC Preg Intro][$PC.pregMood = 1]]
+	<</if>>
+	<div class="indent note">
+		Hormone induced moods may alter some sex scenes, as well as change slaves' reactions to you.
+	</div>
+</p>
+<p>
+	[[Confirm player character customization|PC Appearance Intro]]
+</p>
diff --git a/src/pregmod/slaveAgeIntro.tw b/src/pregmod/slaveAgeIntro.tw
index e69c9ccb1b3..844f1f0718f 100644
--- a/src/pregmod/slaveAgeIntro.tw
+++ b/src/pregmod/slaveAgeIntro.tw
@@ -1,10 +1,27 @@
 :: Slave Age Intro [nobr]
 
-@@.orange;Do you want to see content involving girls younger than 18 in this game?@@
+<p class="intro question">
+	Do you want to see content involving girls younger than 18 in this game?
+</p>
 
-<br><br>
-
-[[No.|PC Body Intro][$minimumSlaveAge = 18, $pedo_mode = 0]] //All slaves will be at least 18 years old, and slavery of children will be illegal in the Free Cities.//
-<br>Yes, I wish to see girls as young as <<textbox "$minimumSlaveAge" $minimumSlaveAge "PC Body Intro">> [[Continue|PC Body Intro][$pedo_mode = 0]]
-<br>Yes, and [[I just want lots of lolis.|PC Body Intro][$minimumSlaveAge = 3, $pedo_mode = 1]] //Nearly all randomly generated slaves will be under the age of 18, although custom slaves and slaves related to specific events may be older.//
-<br>Yes, [[I wish to see them grow up and become fertile.|PC Body Intro][$minimumSlaveAge = 3, $pedo_mode = 0, $precociousPuberty = 1, $loliGrow = 1, $fertilityAge = 10, $potencyAge = 12, $seeAge = 1]] //Preset. Slaves' age will be random from minimal possible age. They can be made fertile younger than normal puberty age (10) in some cases, and grow up naturally.//
+<div>
+	[[No.|PC Body Intro][$minimumSlaveAge = 18, $pedo_mode = 0]]
+	<span class="note">
+		All slaves will be at least 18 years old, and slavery of children will be illegal in the Free Cities.
+	</span>
+</div>
+<div>
+	Yes, I wish to see girls as young as <<textbox "$minimumSlaveAge" $minimumSlaveAge "PC Body Intro">> [[Continue|PC Body Intro][$pedo_mode = 0]]
+</div>
+<div>
+	Yes, and [[I just want lots of lolis.|PC Body Intro][$minimumSlaveAge = 3, $pedo_mode = 1]]
+	<span class="note">
+		Nearly all randomly generated slaves will be under the age of 18, although custom slaves and slaves related to specific events may be older.
+	</span>
+</div>
+<div>
+	Yes, [[I wish to see them grow up and become fertile.|PC Body Intro][$minimumSlaveAge = 3, $pedo_mode = 0, $precociousPuberty = 1, $loliGrow = 1, $fertilityAge = 10, $potencyAge = 12, $seeAge = 1]]
+	<span class="note">
+		Preset. Slaves' age will be random from minimal possible age. They can be made fertile younger than normal puberty age (10) in some cases, and grow up naturally.
+	</span>
+</div>
-- 
GitLab