diff --git a/_layouts/clean_page.html b/_layouts/clean_page.html
index 3e4ca20b47c35cb44682af64cbb1ebb31f47e2a4..8fb975f7b936eab6d77bc502b9cdec367dd83fdf 100644
--- a/_layouts/clean_page.html
+++ b/_layouts/clean_page.html
@@ -1,23 +1,23 @@
 ---
 layout: default
-title: Teaching
-css: wiki
+css: plugin
 ---
 
 <body class="page-template page-template-page-kernel page-template-page-kernel-php page nonTouch">
-<div id="wrapper" class="hfeed">
-{% include headers.html header="documentation" %}
+  <div id="wrapper" class="hfeed">
+    {% include headers.html header="documentation" %}
 
-<div id="container" class="mainContainer">
-  <div class="defaultPage wikiPage pages textLeft" id="content" role="main">
-	<div class="wrap">
-	  <div class="wikiPageContent">
-		{{ content }}
-	  </div>
-	</div>
-  </div>
-  {% include footer.html %}
+    <div id="container" class="mainContainer">
+      <div class="tabs">
+        <div class="pageKernel pages">
+          <div class="wrap">
+            {{ content }}
+          </div>
+        </div>
+				
+        {% include footer.html %}
 
-  <div class="clear"></div>
-</div>
-</div>
+       <div class="clear"></div>
+    </div>
+  </div>
+</body>
diff --git a/assets/css/page.css b/assets/css/page.css
index bd8df0da8e0144cf8d6e42f9516bfee727206f4d..a12dfc73e7fb190652d42964ac76a679a764a447 100644
--- a/assets/css/page.css
+++ b/assets/css/page.css
@@ -91,8 +91,6 @@
     padding-bottom: 20px;
   }
 }
-.ie10 .wikiPage,
-.ie11 .wikiPage,
 .ie10 .versionsPage,
 .ie11 .versionsPage,
 .ie10 .authorsPage,
@@ -100,8 +98,6 @@
   display: block;
   text-align: center;
 }
-.ie10 .wikiPage:before,
-.ie11 .wikiPage:before,
 .ie10 .versionsPage:before,
 .ie11 .versionsPage:before,
 .ie10 .authorsPage:before,
@@ -111,14 +107,10 @@
   content: '';
   height: 70vh;
 }
-.ie10 .wikiPage > div,
-.ie11 .wikiPage > div,
 .ie10 .versionsPage > div,
 .ie11 .versionsPage > div,
 .ie10 .authorsPage > div,
 .ie11 .authorsPage > div,
-.ie10 .wikiPage > article,
-.ie11 .wikiPage > article,
 .ie10 .versionsPage > article,
 .ie11 .versionsPage > article,
 .ie10 .authorsPage > article,
diff --git a/assets/css/wiki.css b/assets/css/wiki.css
deleted file mode 100644
index 112f1ca084c6db1698832fb9219cc14035f1da67..0000000000000000000000000000000000000000
--- a/assets/css/wiki.css
+++ /dev/null
@@ -1,115 +0,0 @@
-/* Wiki Page */
-.wikiPageContent{
-	margin-bottom:40px;
-}
-.wikiPageContent li{
-	margin-bottom:20px;
-}
-
-.wikiPage {
-  text-align: left;
-  align-items: center;
-  justify-content: center;
-}
-.wikiPage:after {
-  display: none;
-}
-.wikiPage > .wrap {
-  position: relative;
-  max-width: 1260px;
-  margin: 0 auto;
-  padding: 0 25px;
-  z-index: 2;
-}
-@media (min-width:  768px) {
-  .wikiPage > .wrap {
-    padding: 28px 10px 0;
-  }
-}
-@media only screen and (min-width: 900px) {
-  .wikiPage > .wrap {
-    padding: 28px 25px 0;
-  }
-}
-@media only screen and (min-width: 1260px) {
-  .wikiPage > .wrap {
-    padding-left: 0;
-    padding-right: 0;
-  }
-}
-.wikiPage .paragraphGroup p a {
-  color: #a1a1a1;
-  border-bottom-color: transparent;
-  position: relative;
-  transition: color 0.1s;
-}
-.wikiPage .paragraphGroup p a:before {
-  content: '';
-  position: absolute;
-  bottom: 0;
-  left: 0;
-  width: 0;
-  height: 1px;
-  background-color: #484848;
-  transition: 0.1s ease-out;
-}
-.nonTouch .wikiPage .paragraphGroup p a:hover {
-  color: #f7931c;
-}
-.nonTouch .wikiPage .paragraphGroup p a:hover:before {
-  width: 100%;
-}
-.wikiPage .paragraphGroup:first-child {
-  margin-top: 0;
-  margin-bottom: 2.7em;
-}
-.wikiPage .wikiPageContent {
-  position: relative;
-  z-index: 2;
-}
-.wikiPage .wikiPageContent .btn + * {
-  margin-top: 30px;
-}
-.wikiPage .wikiPageContent ul {
-  padding: 0;
-}
-.wikiPage .versionsList {
-  margin-bottom: 40px;
-}
-@media (min-width: 1280px) {
-  .wikiPage .versionsList li {
-    padding-left: 24px;
-    margin-bottom: 7px;
-  }
-}
-.wikiPage .versionsList a {
-  color: #484848;
-  font-weight: 600;
-  position: relative;
-  transition: color 0.1s;
-}
-.wikiPage .versionsList a:before {
-  content: '';
-  position: absolute;
-  bottom: 0;
-  left: 0;
-  width: 0;
-  height: 1px;
-  background-color: #484848;
-  transition: 0.1s ease-out;
-}
-.nonTouch .wikiPage .versionsList a:hover {
-  color: #f7931c;
-}
-.nonTouch .wikiPage .versionsList a:hover:before {
-  width: 100%;
-}
-@media (min-width: 1280px) {
-  .wikiPageContent .btn {
-    font-size: 18px;
-    padding: 16px 32px 18px 42px;
-  }
-  .wikiPageContent .btn span .icon-download-arrow {
-    font-size: 15px;
-  }
-}