w2v-server: put css in a separate file
diff --git a/w2v-server.pl b/w2v-server.pl
index 648f4b0..a8ef559 100755
--- a/w2v-server.pl
+++ b/w2v-server.pl
@@ -84,6 +84,14 @@
 	$c->reply->static($url);
 };
 
+get '*/css/*' => sub {
+	my $c = shift;
+	my $url = $c->req->url;
+	$url =~ s@/derekovecs/@/@g;
+  $c->app->log->info("GET: " . $url);
+	$c->reply->static($url);
+};
+
 sub getClassicCollocatorsCached {
   my ($c, $word) = @_;
   if(!$cccache{$word}) {