diff --git a/core/css/global.css b/core/css/global.css
new file mode 100644
index 0000000000000000000000000000000000000000..9511d4324fa4d5c65d92524066acec932aded8cc
--- /dev/null
+++ b/core/css/global.css
@@ -0,0 +1,50 @@
+/* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com
+ This file is licensed under the Affero General Public License version 3 or later.
+ See the COPYING-README file. */
+
+/* Global Components */
+
+.pull-left {
+	float: left;
+}
+
+.pull-right {
+	float: right;
+}
+
+.clear-left {
+	clear: left;
+}
+
+.clear-right {
+	clear: right;
+}
+
+.clear-both {
+	clear: both;
+}
+
+.hidden {
+	display: none;
+}
+
+.hidden-visually {
+	position: absolute;
+	left:-10000px;
+	top: auto;
+	width: 1px;
+	height: 1px;
+	overflow: hidden;
+}
+
+.bold {
+	font-weight:600;
+}
+
+.center {
+	text-align:center;
+}
+
+.inlineblock {
+	display: inline-block;
+}
\ No newline at end of file
diff --git a/core/css/styles.css b/core/css/styles.css
index 1368d8bfa5803438f4efa68a06fa90891d6c0e36..163750f46b886e1be3ffc323a607c004e0160c65 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -856,26 +856,6 @@ html.ie8 #body-login form input[type="checkbox"] {
 	height: 70px;
 }
 
-
-
-
-/* VARIOUS REUSABLE SELECTORS */
-.hidden {
-	display: none;
-}
-.hidden-visually {
-	position: absolute;
-	left:-10000px;
-	top: auto;
-	width: 1px;
-	height: 1px;
-	overflow: hidden;
-}
-
-.bold { font-weight:600; }
-.center { text-align:center; }
-.inlineblock { display: inline-block; }
-
 /* round profile photos */
 .avatar,
 .avatar img,
diff --git a/lib/private/template.php b/lib/private/template.php
index 5a08e15d95b041807412e85421ed8bb63bcfac0a..38527cdc461bf4c723da3a96f83e3792d011c428 100644
--- a/lib/private/template.php
+++ b/lib/private/template.php
@@ -108,6 +108,7 @@ class OC_Template extends \OC\Template\Base {
 			OC_Util::addVendorStyle('jquery-ui/themes/base/jquery-ui',null,true);
 			OC_Util::addStyle("multiselect",null,true);
 			OC_Util::addStyle("fixes",null,true);
+			OC_Util::addStyle("global",null,true);
 			OC_Util::addStyle("apps",null,true);
 			OC_Util::addStyle("fonts",null,true);
 			OC_Util::addStyle("icons",null,true);