diff --git a/Build/Resources/Public/Less/TYPO3/_module_cshmanual.less b/Build/Resources/Public/Less/TYPO3/_module_cshmanual.less
new file mode 100644
index 0000000000000000000000000000000000000000..4e0d45ea4c06f0b707330f207abf2f7039d600fa
--- /dev/null
+++ b/Build/Resources/Public/Less/TYPO3/_module_cshmanual.less
@@ -0,0 +1,15 @@
+
+//
+// CSH manual module
+//
+.tx_cshmanual {
+	.t3-copyright-notice {
+		font-size: @font-size-small;
+		color: @gray-darker;
+		border-top: 1px solid @gray-light;
+		padding-top: @padding-base-vertical * 4;
+		> :last-child {
+			margin-bottom: 0;
+		}
+	}
+}
diff --git a/Build/Resources/Public/Less/backend.less b/Build/Resources/Public/Less/backend.less
index 30cfbc1ff7bbfd7ad3ffe9ae3161eeb7a102cd41..f7000cec2a250cc58ee08048f5d619ae3c02807a 100644
--- a/Build/Resources/Public/Less/backend.less
+++ b/Build/Resources/Public/Less/backend.less
@@ -83,6 +83,7 @@
 @import "TYPO3/_module_extensionmanager.less";
 @import "TYPO3/_module_lang.less";
 @import "TYPO3/_module_beuser.less";
+@import "TYPO3/_module_cshmanual.less";
 
 @import "TYPO3/_wizard_localization.less";
 
diff --git a/typo3/sysext/backend/Resources/Public/Css/backend.css b/typo3/sysext/backend/Resources/Public/Css/backend.css
index fa830b29d55795b1ba92ee0f8fefa801412a1e2c..e72347d77ae6abd04c7e7616a074fc980d2f7af4 100644
--- a/typo3/sysext/backend/Resources/Public/Css/backend.css
+++ b/typo3/sysext/backend/Resources/Public/Css/backend.css
@@ -14258,6 +14258,15 @@ div.typo3-module-lang div.progress-bar {
   max-width: 28px;
   max-height: 28px;
 }
+.tx_cshmanual .t3-copyright-notice {
+  font-size: 11px;
+  color: #1e1e1e;
+  border-top: 1px solid #d7d7d7;
+  padding-top: 24px;
+}
+.tx_cshmanual .t3-copyright-notice > :last-child {
+  margin-bottom: 0;
+}
 .localization-wizard .option {
   margin-bottom: 4px;
 }
diff --git a/typo3/sysext/cshmanual/Resources/Private/Layouts/Default.html b/typo3/sysext/cshmanual/Resources/Private/Layouts/Default.html
index 39e7457931365013540674956cdea42fb12970c8..2738dec689526877cbf3d6a802c3dacf1971209d 100644
--- a/typo3/sysext/cshmanual/Resources/Private/Layouts/Default.html
+++ b/typo3/sysext/cshmanual/Resources/Private/Layouts/Default.html
@@ -1,6 +1,11 @@
-<f:render section="content" />
+<div class="tx_cshmanual">
+	<f:render section="content" />
 
-<hr />
-<p>
-	<f:format.raw>{copyright}</f:format.raw>
-</p>
+	<hr />
+	<div class="t3-copyright-notice">
+
+		<p>
+			<f:format.raw>{copyright}</f:format.raw>
+		</p>
+	</div>
+</div>