diff --git a/css/default.php b/css/default.php
index dd96b97a86ece5f47a14167e6a1b17667e787d04..663dcf0d87eaa789666c62116ffcd391006ce37e 100644
--- a/css/default.php
+++ b/css/default.php
@@ -1,6 +1,11 @@
 <?php
 header('Content-Type: text/css');
-require_once('../inc/lib_base.php');
+// calculate the documentroot
+$SERVERROOT=substr(__FILE__,0,-16);
+$DOCUMENTROOT=realpath($_SERVER['DOCUMENT_ROOT']);
+$SERVERROOT=str_replace("\\",'/',$SERVERROOT);
+$SUBURI=substr(realpath($_SERVER["SCRIPT_FILENAME"]),strlen($SERVERROOT));
+$WEBROOT=substr($_SERVER["SCRIPT_NAME"],0,strlen($_SERVER["SCRIPT_NAME"])-strlen($SUBURI));
 ?>
 html, body {
 	background-color: #F9F9F9;