diff --git a/maid.cabal b/maid.cabal
--- a/maid.cabal
+++ b/maid.cabal
@@ -1,5 +1,5 @@
 Name:                 maid
-Version:              2014.8.31
+Version:              2014.10.14
 Build-type:           Simple
 Synopsis:             A simple static web server
 Description:
@@ -35,4 +35,4 @@
   hs-source-dirs:     src/
   main-is:            maid.hs
   Other-Modules:      Web.Maid.ApacheMimeTypes
-                      Web.Maid.DefaultCSSSTyle
+                      Web.Maid.DefaultCSSStyle
diff --git a/src/Web/Maid/DefaultCSSSTyle.hs b/src/Web/Maid/DefaultCSSSTyle.hs
deleted file mode 100644
--- a/src/Web/Maid/DefaultCSSSTyle.hs
+++ /dev/null
@@ -1,46 +0,0 @@
-{-# LANGUAGE QuasiQuotes #-}
-{-# LANGUAGE OverloadedStrings #-}
-
-module Web.Maid.DefaultCSSStyle where
-
-
-import qualified Data.Text as T
-import Air.TH
-
-
-default_css_style :: T.Text
-default_css_style = [here|
-
-body {
-line-height: 1.5em;
-font-size: 1.3em;
-}
-
-  .directory a
-, .directory a:visited {
-color: grey;
-}
-
-  a
-, a:visited {
-text-decoration: none;
-color: #222;
-display: block;
-background: #eee;
-padding: 3px;
-padding-left: 20px;
-}
-
-a:hover {
-background: #ccc;
-}
-
-li {
-list-style-type: none;
-
-width: 80%;
-margin: 5px;
-}
-
-
-|]
diff --git a/src/Web/Maid/DefaultCSSStyle.hs b/src/Web/Maid/DefaultCSSStyle.hs
new file mode 100644
--- /dev/null
+++ b/src/Web/Maid/DefaultCSSStyle.hs
@@ -0,0 +1,46 @@
+{-# LANGUAGE QuasiQuotes #-}
+{-# LANGUAGE OverloadedStrings #-}
+
+module Web.Maid.DefaultCSSStyle where
+
+
+import qualified Data.Text as T
+import Air.TH
+
+
+default_css_style :: T.Text
+default_css_style = [here|
+
+body {
+line-height: 1.5em;
+font-size: 1.3em;
+}
+
+  .directory a
+, .directory a:visited {
+color: grey;
+}
+
+  a
+, a:visited {
+text-decoration: none;
+color: #222;
+display: block;
+background: #eee;
+padding: 3px;
+padding-left: 20px;
+}
+
+a:hover {
+background: #ccc;
+}
+
+li {
+list-style-type: none;
+
+width: 80%;
+margin: 5px;
+}
+
+
+|]
