diff -r 3e0babfce869 src/org/openbravo/retail/stockvalidation/OBPOSSVComponentProvider.java
--- a/src/org/openbravo/retail/stockvalidation/OBPOSSVComponentProvider.java	Fri Aug 30 14:40:04 2013 +0200
+++ b/src/org/openbravo/retail/stockvalidation/OBPOSSVComponentProvider.java	Thu Feb 13 17:54:55 2014 +0100
@@ -49,6 +49,7 @@
   public List<ComponentResource> getGlobalComponentResources() {
     final List<ComponentResource> globalResources = new ArrayList<ComponentResource>();
     final String prefix = "web/" + MODULE_JAVA_PACKAGE + "/js/";
+    final String cssPrefix = "web/" + MODULE_JAVA_PACKAGE + "/css/";
 
     String[] resourceList = { "initmodule", "modals" };
 
@@ -57,6 +58,13 @@
           + ".js", POSUtils.APP_NAME));
     }
 
+    final String[] cssDependency = { "obpossv-styles" };
+
+    for (String resource : cssDependency) {
+      globalResources.add(createComponentResource(ComponentResourceType.Stylesheet, prefix
+          + "../css/" + resource + ".css", POSUtils.APP_NAME));
+    }
+
     return globalResources;
   }
 }
\ No newline at end of file
diff -r 3e0babfce869 web/org.openbravo.retail.stockvalidation/css/obpossv-styles.css
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/org.openbravo.retail.stockvalidation/css/obpossv-styles.css	Thu Feb 13 17:54:55 2014 +0100
@@ -0,0 +1,13 @@
+/*
+ ************************************************************************************
+ * Copyright (C) 2013 Openbravo S.L.U.
+ * Licensed under the Openbravo Commercial License version 1.0
+ * You may obtain a copy of the License at http://www.openbravo.com/legal/obcl.html
+ * or in the legal folder of this module distribution.
+ ************************************************************************************
+ */
+
+.ob-body-standard {
+  background-color: blue;
+  background: url('./../../org.openbravo.retail.stockvalidation/css/test.jpg') top left;
+}
\ No newline at end of file
diff -r 3e0babfce869 web/org.openbravo.retail.stockvalidation/css/test.jpg
Binary file web/org.openbravo.retail.stockvalidation/css/test.jpg has changed
