[Libreoffice-commits] online.git: configure.ac loleaflet/build loleaflet/css loleaflet/dist loleaflet/.eslintignore loleaflet/html loleaflet/images loleaflet/js loleaflet/l10n loleaflet/loleaflet.html.m4 loleaflet/main.css.m4 loleaflet/main.js loleaflet/Makefile.am loleaflet/package.json loleaflet/src loleaflet/unocommands.js scripts/unocommands.py

Henry Castro hcastro at collabora.com
Thu May 10 18:30:37 UTC 2018


 configure.ac                               |    6 
 loleaflet/.eslintignore                    |    3 
 loleaflet/Makefile.am                      |  231 
 loleaflet/build/deps.js                    |    2 
 loleaflet/css/loleaflet.css                |    6 
 loleaflet/css/selectionMarkers.css         |    4 
 loleaflet/css/toolbar.css                  |  122 
 loleaflet/dist/errormessages.js            |   18 
 loleaflet/dist/toolbar/w2ui-1.4.3.css      | 2754 -----
 loleaflet/dist/toolbar/w2ui-1.4.3.js       |13715 -----------------------------
 loleaflet/dist/toolbar/w2ui-1.4.3.min.css  |    2 
 loleaflet/dist/toolbar/w2ui-1.4.3.min.js   |   11 
 loleaflet/dist/toolbar/w2ui-1.5.rc1.min.js |   14 
 loleaflet/js/global.js                     |   32 
 loleaflet/js/main.js                       |   62 
 loleaflet/loleaflet.html.m4                |   18 
 loleaflet/main.css.m4                      |   25 
 loleaflet/package.json                     |    2 
 loleaflet/src/errormessages.js             |   34 
 loleaflet/src/unocommands.js               |    2 
 scripts/unocommands.py                     |    4 
 21 files changed, 375 insertions(+), 16692 deletions(-)

New commits:
commit 8618885b3175781a95573c261f876e8626978573
Author: Henry Castro <hcastro at collabora.com>
Date:   Thu Apr 12 15:57:00 2018 -0400

    use Makefile to build loleaflet
    
    Concatenate and minify all javascript files in the release build but not
    in the debug build. Also, it is enabled to use a build directory
    
    Change-Id: Ia120447a827cfe236241ddf188bf43a088f877a7
    Reviewed-on: https://gerrit.libreoffice.org/52802
    Reviewed-by: pranavk <pranavk at collabora.co.uk>
    Tested-by: pranavk <pranavk at collabora.co.uk>

diff --git a/configure.ac b/configure.ac
index 70c6f7d91..13204904c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -445,6 +445,12 @@ fi
 
 AC_SUBST(ENABLE_SETCAP)
 
+AC_CONFIG_LINKS([discovery.xml:discovery.xml])
+AC_CONFIG_LINKS([loolkitconfig.xcu:loolkitconfig.xcu])
+AC_CONFIG_LINKS([loleaflet/package.json:loleaflet/package.json])
+AC_CONFIG_LINKS([loleaflet/npm-shrinkwrap.json:loleaflet/npm-shrinkwrap.json])
+AC_LINK_FILES([loleaflet/node_shrinkwrap], [loleaflet/node_shrinkwrap])
+
 AC_CONFIG_FILES([Makefile
                  test/Makefile
                  loleaflet/Makefile
diff --git a/loleaflet/.eslintignore b/loleaflet/.eslintignore
index 26e742c88..4ddb46e95 100644
--- a/loleaflet/.eslintignore
+++ b/loleaflet/.eslintignore
@@ -2,4 +2,5 @@
 dist/**/*.js
 !dist/toolbar/toolbar.js
 
-src/admin/Base.js
+**/src/admin/Base.js
+**/src/unocommands.js
diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index 036f4c729..7166a6de9 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -8,34 +8,221 @@ DRAW_VERSION=0.2.4
 
 MINIFY=false
 
-L10N_PO = $(wildcard po/*.po)
-L10N_JSON = $(patsubst po/%.po,dist/l10n/%.json,$(L10N_PO))
+L10N_PO = $(wildcard $(srcdir)/po/*.po)
+L10N_JSON = $(patsubst $(srcdir)/po/%.po,$(builddir)/dist/l10n/%.json,$(L10N_PO))
 
 JQUERY_UI_IMAGE_PATH = node_modules/jquery-ui/themes/ui-lightness/images
 JQUERY_UI_IMAGES = $(wildcard $(JQUERY_UI_IMAGE_PATH)/*.png)
-JQUERY_UI_DIST_IMAGES = $(patsubst $(JQUERY_UI_IMAGE_PATH)/%.png,dist/$(JQUERY_UI_IMAGE_PATH)/%.png,$(JQUERY_UI_IMAGES))
+JQUERY_UI_DIST_IMAGES = $(patsubst $(JQUERY_UI_IMAGE_PATH)/%.png,$(builddir)/dist/images/%.png,$(JQUERY_UI_IMAGES))
+
+LOLEAFLET_IMAGES_SRC = $(wildcard $(srcdir)/images/*)
+LOLEAFLET_IMAGES_DST = $(patsubst $(srcdir)/%,$(builddir)/dist/%,$(LOLEAFLET_IMAGES_SRC))
+
+LOLEAFLET_L10N_SRC = $(shell find $(srcdir)/l10n -name '*.*')
+LOLEAFLET_L10N_DST =  $(patsubst $(srcdir)/l10n/%,$(builddir)/dist/l10n/%,$(LOLEAFLET_L10N_SRC))
+
+LOLEAFLET_DRAW_JS_SRC = $(shell find $(srcdir)/plugins/draw-$(DRAW_VERSION)/src -name '*.js')
+LOLEAFLET_DRAW_CSS_SRC = $(shell find $(srcdir)/plugins/draw-$(DRAW_VERSION)/dist -name '*.css')
+
+LOLEAFLET_HTML_SRC = $(shell find $(srcdir)/html -name '*.html')
+LOLEAFLET_HTML_DST = $(patsubst $(srcdir)/html/%.html,$(builddir)/dist/%.html,$(LOLEAFLET_HTML_SRC))
+
+define file_target
+$(1): $(2)
+	@cp $$< $$@
+
+endef
+
+define file_targets
+$(foreach file,$(1),$(call file_target,\
+	$(builddir)/dist/$(notdir $(file)),\
+	$(file)))
+endef
+
+LOLEAFLET_CSS =\
+	$(srcdir)/css/w2ui-1.5.rc1.css \
+	$(srcdir)/css/leaflet.css \
+	$(srcdir)/css/selectionMarkers.css \
+	$(srcdir)/css/loleaflet.css \
+	$(srcdir)/css/toolbar.css \
+	$(srcdir)/css/partsPreviewControl.css \
+	$(srcdir)/css/scrollBar.css \
+	$(srcdir)/css/searchControl.css \
+	$(srcdir)/css/spreadsheet.css \
+	$(srcdir)/css/editor.css \
+	$(srcdir)/plugins/draw-$(DRAW_VERSION)/dist/leaflet.draw.css \
+	$(builddir)/node_modules/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css \
+	$(builddir)/node_modules/jquery-contextmenu/dist/jquery.contextMenu.css \
+	$(builddir)/node_modules/vex-js/css/vex.css \
+	$(builddir)/node_modules/vex-js/css/vex-theme-plain.css \
+	$(builddir)/node_modules/vex-js/css/vex-theme-bottom-right-corner.css \
+	$(builddir)/node_modules/select2/dist/css/select2.css \
+	$(builddir)/node_modules/smartmenus/dist/css/sm-core-css.css \
+	$(builddir)/node_modules/smartmenus/dist/css/sm-simple/sm-simple.css \
+	$(srcdir)/css/menubar.css \
+	$(builddir)/node_modules/jquery-ui/themes/ui-lightness/jquery-ui.css \
+	$(builddir)/node_modules/evol-colorpicker/css/evol-colorpicker.css
+
+LOLEAFLET_CSS_DST = $(foreach file,$(LOLEAFLET_CSS),$(builddir)/dist/$(notdir $(file)))
+LOLEAFLET_CSS_M4 = $(strip $(foreach file,$(LOLEAFLET_CSS),$(notdir $(file))))
+
+$(eval $(call file_targets,$(LOLEAFLET_CSS)))
+
+NODE_MODULES_JS =\
+	node_modules/jquery/dist/jquery.js \
+	node_modules/jquery-mousewheel/jquery.mousewheel.js \
+	node_modules/jquery-contextmenu/dist/jquery.contextMenu.js \
+	node_modules/jquery-ui/jquery-ui.js \
+	node_modules/evol-colorpicker/js/evol-colorpicker.js \
+	node_modules/smartmenus/dist/jquery.smartmenus.js \
+	node_modules/timeago/jquery.timeago.js \
+	node_modules/autolinker/dist/Autolinker.js \
+	node_modules/json-js/json2.js \
+	node_modules/l10n-for-node/l10n.js \
+	node_modules/select2/dist/js/select2.js \
+	node_modules/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js \
+	node_modules/vex-js/js/vex.js \
+	node_modules/vex-js/js/vex.dialog.js
+
+NODE_MODULES_JS_SRC = $(patsubst %.js,$(builddir)/%.js,$(NODE_MODULES_JS))
+NODE_MODULES_JS_DST = $(patsubst %.js,$(builddir)/dist/%.js,$(NODE_MODULES_JS))
+
+GLOBAL_JS =\
+	global.js
+
+LOLEAFLET_JS = $(strip $(shell NODE_PATH=$(abs_builddir)/node_modules $(NODE) -e "try {console.log(require('$(1)').getFiles().join(' '))} catch(e) {}"))
+
+PLUGINS_JS =\
+	loleaflet.draw-src.js \
+	w2ui-1.5.rc1.js \
+	main.js \
+	toolbar.js
+
+LOLEAFLET_JS_SRC = $(shell find $(srcdir)/src -name '*.js')
+LOLEAFLET_JS_DST = $(patsubst $(srcdir)/src/%.js,$(builddir)/dist/src/%.js,$(LOLEAFLET_JS_SRC))
+
+COMMA := ,
+EMPTY :=
+SPACE := $(EMPTY) $(EMPTY)
+LOLEAFLET_VERSION = $(shell cd $(srcdir) && git log -1 --pretty=format:"%h")
+LOLEAFLET_PREFIX := $(if $(ENABLE_DEBUG),$(builddir)/dist,$(builddir)/build)
 
 EXTRA_DIST = $(shell find . -type f -not -path './.git/*' | sed 's/.\///')
 
-all-local: node_modules $(L10N_JSON) $(JQUERY_UI_DIST_IMAGES)
-	$(abs_top_srcdir)/scripts/unocommands.py --check $(abs_top_srcdir)
-	rm -rf dist/plugins/draw-$(DRAW_VERSION) || true
-	mkdir -p dist/plugins/draw-$(DRAW_VERSION)
-	cd plugins/draw-$(DRAW_VERSION) && jake build && cp -ar dist ../../dist/plugins/draw-$(DRAW_VERSION)
-	@m4 -E -Ddebug=$(ENABLE_DEBUG) dist/loleaflet.html.m4 > dist/loleaflet.html
-	@m4 -E -Ddebug=$(ENABLE_DEBUG) main.css.m4 > main.css
-	jake build debug=$(ENABLE_DEBUG) minify=$(MINIFY)
+all-local: | node_modules \
+	$(LOLEAFLET_L10N_DST) \
+	$(L10N_JSON) \
+	$(LOLEAFLET_IMAGES_DST) \
+	$(JQUERY_UI_DIST_IMAGES) \
+	$(LOLEAFLET_PREFIX)/loleaflet.draw-src.js \
+	$(LOLEAFLET_PREFIX)/loleaflet-src.js \
+	$(builddir)/dist/bundle.css \
+	$(builddir)/dist/bundle.js \
+	$(builddir)/dist/loleaflet.html
+	@echo "build loleaflet completed"
+
+$(LOLEAFLET_PREFIX)/loleaflet.draw-src.js: $(LOLEAFLET_DRAW_CSS_SRC) $(LOLEAFLET_DRAW_JS_SRC)
+	@mkdir -p $(dir $@)
+	@NODE_PATH=$(abs_builddir)/node_modules jake -f $(srcdir)/plugins/draw-$(DRAW_VERSION)/Jakefile.js -C $(srcdir)/plugins/draw-$(DRAW_VERSION) build
+if ENABLE_DEBUG
+	@cp $(LOLEAFLET_DRAW_CSS_SRC) $(builddir)/dist/
+endif
+	@cp -a $(srcdir)/plugins/draw-$(DRAW_VERSION)/dist/images/* $(builddir)/dist/images/
+	@cp -a $(srcdir)/plugins/draw-$(DRAW_VERSION)/dist/leaflet.draw-src.js $@
+
+if ENABLE_DEBUG
+$(LOLEAFLET_PREFIX)/loleaflet-src.js: $(LOLEAFLET_JS_DST)
+	@echo "Checking loleaflet for JS errors..."
+	@$(NODE) node_modules/eslint/bin/eslint.js $(srcdir)/src --ignore-path $(srcdir)/.eslintignore --config $(srcdir)/.eslintrc
+	@touch $@
+
+$(builddir)/dist/bundle.css: $(LOLEAFLET_CSS_DST)
+	@touch $@
+
+$(builddir)/dist/bundle.js: $(NODE_MODULES_JS_DST) \
+	$(LOLEAFLET_PREFIX)/loleaflet-src.js \
+	$(LOLEAFLET_PREFIX)/loleaflet.draw-src.js \
+	$(builddir)/dist/global.js $(builddir)/dist/w2ui-1.5.rc1.js \
+	$(builddir)/dist/main.js $(builddir)/dist/toolbar.js
+	@touch $@
+else
+$(LOLEAFLET_PREFIX)/loleaflet-src.js: $(LOLEAFLET_JS_SRC)
+	@mkdir -p $(dir $@)
+	@echo "Checking loleaflet for JS errors..."
+	@$(NODE) node_modules/eslint/bin/eslint.js $(srcdir)/src --ignore-path $(srcdir)/.eslintignore --config $(srcdir)/.eslintrc
+	@echo "Concatenating loleaflet files..."
+	@(cat $(srcdir)/src/copyright.js | sed 's/{VERSION}/$(LOLEAFLET_VERSION)/' - \
+		&& echo "(function (window, document, undefined) {" \
+		&& awk 'FNR == 1 {print ""} 1' $(patsubst %.js,$(srcdir)/%.js,$(call LOLEAFLET_JS,$(srcdir)/build/build.js)) \
+		&& echo "}(window, document));") > $@
+
+$(builddir)/dist/bundle.css: $(LOLEAFLET_CSS)
+	@echo "Uglify loleaflet css files..."
+	@$(NODE) node_modules/uglifycss/uglifycss $(LOLEAFLET_CSS) > $@
+
+$(builddir)/dist/bundle.js: $(NODE_MODULES_JS_SRC) \
+	$(LOLEAFLET_PREFIX)/loleaflet-src.js \
+	$(LOLEAFLET_PREFIX)/loleaflet.draw-src.js \
+	$(srcdir)/js/global.js $(srcdir)/js/w2ui-1.5.rc1.js \
+	$(srcdir)/js/main.js $(srcdir)/js/toolbar.js
+	@echo "Uglify loleaflet js files..."
+	@$(NODE) node_modules/uglify-js/bin/uglifyjs \
+		$(srcdir)/js/global.js \
+		$(NODE_MODULES_JS) \
+		$(builddir)/build/loleaflet-src.js \
+		$(builddir)/build/loleaflet.draw-src.js \
+		$(srcdir)/js/w2ui-1.5.rc1.js \
+		$(srcdir)/js/main.js \
+		$(srcdir)/js/toolbar.js \
+		--source-map --output $@
+endif
+
+$(builddir)/dist/loleaflet.html: $(srcdir)/loleaflet.html.m4 $(LOLEAFLET_HTML_DST) \
+	$(builddir)/dist/bundle.css $(builddir)/dist/bundle.js
+	@echo "Generating loleaflet.html..."
+	@m4 -E -DDEBUG=$(ENABLE_DEBUG) \
+		-DLOLEAFLET_CSS="$(subst $(SPACE),$(COMMA),$(LOLEAFLET_CSS_M4))" \
+		-DLOLEAFLET_JS="$(subst $(SPACE),$(COMMA),$(GLOBAL_JS) $(NODE_MODULES_JS) $(call LOLEAFLET_JS,$(srcdir)/build/build.js) $(PLUGINS_JS))" \
+		$(srcdir)/loleaflet.html.m4 > $@
 
 node_modules: npm-shrinkwrap.json
 	npm install
 	touch node_modules
 
-dist/$(JQUERY_UI_IMAGE_PATH)/%.png: $(JQUERY_UI_IMAGE_PATH)/%.png
-	mkdir -p dist/$(JQUERY_UI_IMAGE_PATH)
-	cp -a $(JQUERY_UI_IMAGE_PATH)/* dist/$(JQUERY_UI_IMAGE_PATH)/
+$(builddir)/dist/images/%: $(srcdir)/images/%
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/%.html: $(srcdir)/html/%.html
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/src/%.js: $(srcdir)/src/%.js
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/%.js: $(srcdir)/js/%.js
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/node_modules/%.js: $(builddir)/node_modules/%.js
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/$(JQUERY_UI_IMAGE_PATH)/%.png: $(JQUERY_UI_IMAGE_PATH)/%.png
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/images/%.png: $(JQUERY_UI_IMAGE_PATH)/%.png
+	@mkdir -p $(dir $@)
+	@cp $< $@
+
+$(builddir)/dist/l10n/%: $(srcdir)/l10n/%
+	@mkdir -p $(dir $@)
+	@cp $< $@
 
-dist/l10n/%.json: po/%.po
-	@util/po2json.py $< -o $@
+$(builddir)/dist/l10n/%.json: $(srcdir)/po/%.po
+	@$(srcdir)/util/po2json.py $< -o $@
 
 install-data-hook:
 	mkdir -p $(DESTDIR)$(pkgdatadir)/loleaflet; \
@@ -76,8 +263,16 @@ l10n: pot
 
 clean-local:
 	rm -rf node_modules
-	cd dist && rm -f bundle.js bundle.js.map admin-bundle.js admin-bundle.js.map
-	cd plugins/draw-$(DRAW_VERSION) && rm -f dist/*.js
+	rm -rf $(builddir)/dist/src
+	rm -rf $(builddir)/dist/node_modules
+	rm -rf $(builddir)/dist/plugins
+	rm -rf $(builddir)/dist/images
+	rm -rf $(builddir)/dist/l10n
+	rm -rf $(builddir)/build/loleaflet-src.js
+	rm -rf $(builddir)/build/loleaflet.draw-src.js
+	rm -f $(builddir)/dist/*.html
+	cd dist && rm -f bundle.js bundle.css bundle.js.map admin-bundle.js admin-bundle.js.map
+	cd $(srcdir)/plugins/draw-$(DRAW_VERSION) && rm -f dist/*.js
 
 spec/data/load-test:
 	if [ ! -d spec/data/load_test ]; then \
diff --git a/loleaflet/build/deps.js b/loleaflet/build/deps.js
index 4b66adeea..d0c2a7265 100644
--- a/loleaflet/build/deps.js
+++ b/loleaflet/build/deps.js
@@ -1,6 +1,8 @@
 var deps = {
 	Core: {
 		src: ['Leaflet.js',
+		      'errormessages.js',
+		      'unocommands.js',
 		      'core/Log.js',
 		      'core/Util.js',
 		      'core/LOUtil.js',
diff --git a/loleaflet/dist/editor.css b/loleaflet/css/editor.css
similarity index 100%
rename from loleaflet/dist/editor.css
rename to loleaflet/css/editor.css
diff --git a/loleaflet/dist/leaflet.css b/loleaflet/css/leaflet.css
similarity index 100%
rename from loleaflet/dist/leaflet.css
rename to loleaflet/css/leaflet.css
diff --git a/loleaflet/dist/loleaflet.css b/loleaflet/css/loleaflet.css
similarity index 96%
rename from loleaflet/dist/loleaflet.css
rename to loleaflet/css/loleaflet.css
index 4a5e86ced..eae3e4f63 100644
--- a/loleaflet/dist/loleaflet.css
+++ b/loleaflet/css/loleaflet.css
@@ -252,15 +252,15 @@ body {
 }
 
 .loleaflet-redline-accept-button {
-        background: url('../images/lc_accepttrackedchanges.svg') no-repeat center !important;
+        background: url('images/lc_accepttrackedchanges.svg') no-repeat center !important;
 }
 
 .loleaflet-redline-reject-button {
-        background: url('../images/lc_rejecttrackedchange.svg') no-repeat center !important;
+        background: url('images/lc_rejecttrackedchange.svg') no-repeat center !important;
 }
 
 .loleaflet-annotation-menu, .loleaflet-annotation-menu-redline {
-	background: url(../images/submenu.svg) no-repeat center !important;
+	background: url('images/submenu.svg') no-repeat center !important;
 }
 
 .loleaflet-annotation-menu:hover, .loleaflet-annotation-menu-redline:hover, .loleaflet-redline-accept-button:hover, .loleaflet-redline-reject-button:hover {
diff --git a/loleaflet/dist/menubar.css b/loleaflet/css/menubar.css
similarity index 100%
rename from loleaflet/dist/menubar.css
rename to loleaflet/css/menubar.css
diff --git a/loleaflet/dist/partsPreviewControl.css b/loleaflet/css/partsPreviewControl.css
similarity index 100%
rename from loleaflet/dist/partsPreviewControl.css
rename to loleaflet/css/partsPreviewControl.css
diff --git a/loleaflet/dist/scrollBar.css b/loleaflet/css/scrollBar.css
similarity index 100%
rename from loleaflet/dist/scrollBar.css
rename to loleaflet/css/scrollBar.css
diff --git a/loleaflet/dist/searchControl.css b/loleaflet/css/searchControl.css
similarity index 100%
rename from loleaflet/dist/searchControl.css
rename to loleaflet/css/searchControl.css
diff --git a/loleaflet/dist/selectionMarkers.css b/loleaflet/css/selectionMarkers.css
similarity index 61%
rename from loleaflet/dist/selectionMarkers.css
rename to loleaflet/css/selectionMarkers.css
index 8957efd55..91578d99d 100644
--- a/loleaflet/dist/selectionMarkers.css
+++ b/loleaflet/css/selectionMarkers.css
@@ -2,12 +2,12 @@
 	margin-left: -28px;
 	width: 30px;
 	height: 44px;
-	background-image: url('../images/handle_start.png');
+	background-image: url('images/handle_start.png');
 	}
 
 .leaflet-selection-marker-end {
 	margin-left: -2px;
 	width: 30px;
 	height: 44px;
-	background-image: url('../images/handle_end.png');
+	background-image: url('images/handle_end.png');
 	}
diff --git a/loleaflet/dist/spreadsheet.css b/loleaflet/css/spreadsheet.css
similarity index 100%
rename from loleaflet/dist/spreadsheet.css
rename to loleaflet/css/spreadsheet.css
diff --git a/loleaflet/dist/toolbar.css b/loleaflet/css/toolbar.css
similarity index 53%
rename from loleaflet/dist/toolbar.css
rename to loleaflet/css/toolbar.css
index d56b809a2..cc69a1d94 100644
--- a/loleaflet/dist/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -98,7 +98,7 @@ w2ui-toolbar {
 #document-name-input.editable:hover {
     border: 1px solid #bbbbbb;
     background-color: white;
-    background-image: url('../images/lc_editdoc.svg');
+    background-image: url('images/lc_editdoc.svg');
     background-position: right;
     background-repeat: no-repeat;
     padding-right: 20px;
@@ -123,7 +123,7 @@ w2ui-toolbar {
     border-color: #ccc;
     background-color: #eee;
 }
-.closebuttonimage{ background: url('../images/lc_closedoc.svg') no-repeat center !important; }
+.closebuttonimage{ background: url('images/lc_closedoc.svg') no-repeat center !important; }
 
 #tb_toolbar-down_item_left {
     width: 45%;
@@ -256,65 +256,65 @@ button.leaflet-control-search-next
     border-style: solid;
 }
 
-.w2ui-icon.accepttrackedchanges{ background: url('../images/lc_accepttrackedchanges.svg') no-repeat center !important; }
-.w2ui-icon.alignblock{ background: url('../images/lc_alignblock.svg') no-repeat center !important; }
-.w2ui-icon.alignhorizontal{ background: url('../images/lc_alignhorizontalcenter.svg') no-repeat center !important; }
-.w2ui-icon.alignleft{ background: url('../images/lc_alignleft.svg') no-repeat center !important; }
-.w2ui-icon.alignright{ background: url('../images/lc_alignright.svg') no-repeat center !important; }
-.w2ui-icon.autosum{ background: url('../images/lc_autosum.svg') no-repeat center !important; }
-.w2ui-icon.backcolor{ background: url('../images/lc_backcolor.svg') no-repeat center !important; }
-.w2ui-icon.bold{ background: url('../images/lc_bold.svg') no-repeat center !important; }
-.w2ui-icon.annotation{ background: url('../images/lc_showannotations.svg') no-repeat center !important; }
-.w2ui-icon.bullet{ background: url('../images/lc_defaultbullet.svg') no-repeat center !important; }
-.w2ui-icon.cancel{ background: url('../images/lc_cancel.svg') no-repeat center !important; }
-.w2ui-icon.color{ background: url('../images/lc_color.svg') no-repeat center !important; }
-.w2ui-icon.decrementindent{ background: url('../images/lc_decrementindent.svg') no-repeat center !important; }
-.w2ui-icon.deletepage{ background: url('../images/lc_deletepage.svg') no-repeat center !important; }
-.w2ui-icon.duplicatepage{ background: url('../images/lc_duplicatepage.svg') no-repeat center !important; }
-.w2ui-icon.edit{ background: url('../images/lc_editdoc.svg') no-repeat center !important; }
-.w2ui-icon.equal{ background: url('../images/lc26049.svg') no-repeat center !important; }
-.w2ui-icon.help{ background: url('../images/lc_helpindex.svg') no-repeat center !important; }
-.w2ui-icon.incrementindent{ background: url('../images/lc_decrementlevel.svg') no-repeat center !important; }
-.w2ui-icon.insertpage{ background: url('../images/lc_insertpage.svg') no-repeat center !important; }
-.w2ui-icon.insertsheet{ background: url('../images/plus.svg') no-repeat center !important; }
-.w2ui-icon.italic{ background: url('../images/lc_italic.svg') no-repeat center !important; }
-.w2ui-icon.insertgraphic{ background: url('../images/lc_gallery.svg') no-repeat center !important; }
-.w2ui-icon.inserttable{ background: url('../images/lc_inserttable.svg') no-repeat center !important; }
-.w2ui-icon.next{ background: url('../images/lc_downsearch.svg') no-repeat center !important; }
-.w2ui-icon.numbering{ background: url('../images/lc_defaultnumbering.svg') no-repeat center !important; }
-.w2ui-icon.presentation{ background: url('../images/lc_dia.svg') no-repeat center !important; }
-.w2ui-icon.prev{ background: url('../images/lc_upsearch.svg') no-repeat center !important; }
-.w2ui-icon.print{ background: url('../images/lc_print.svg') no-repeat center !important; }
-.w2ui-icon.redo{ background: url('../images/lc_redo.svg') no-repeat center !important; }
-.w2ui-icon.save{ background: url('../images/lc_save.svg') no-repeat center !important; }
-.w2ui-icon.saveas{ background: url('../images/lc_saveas.svg') no-repeat center !important; }
-.w2ui-icon.savemodified{ background: url('../images/savemodified.svg') no-repeat center !important; }
-.w2ui-icon.strikeout{ background: url('../images/lc_strikeout.svg') no-repeat center !important; }
-.w2ui-icon.insertfootnote{ background: url('../images/lc_insertfootnote.svg') no-repeat center !important; }
-.w2ui-icon.underline{ background: url('../images/lc_underline.svg') no-repeat center !important; }
-.w2ui-icon.undo{ background: url('../images/lc_undo.svg') no-repeat center !important; }
-.w2ui-icon.zoomin{ background: url('../images/plus.svg') no-repeat center !important; }
-.w2ui-icon.zoomout{ background: url('../images/minus.svg') no-repeat center !important; }
-.w2ui-icon.zoomreset{ background: url('../images/lc_view100.svg') no-repeat center !important; }
-.w2ui-icon.more{ background: url('../images/lc_downsearch.svg') no-repeat center !important; }
-.w2ui-icon.firstrecord{ background: url('../images/lc_firstrecord.svg') no-repeat center !important; }
-.w2ui-icon.nextrecord{ background: url('../images/lc_nextrecord.svg') no-repeat center !important; }
-.w2ui-icon.prevrecord{ background: url('../images/lc_prevrecord.svg') no-repeat center !important; }
-.w2ui-icon.lastrecord{ background: url('../images/lc_lastrecord.svg') no-repeat center !important; }
-.w2ui-icon.wraptext{ background: url('../images/lc_wraptext.svg') no-repeat center !important; }
-.w2ui-icon.togglemergecells{ background: url('../images/lc_togglemergecells.svg') no-repeat center !important; }
-.w2ui-icon.numberformatcurrency{ background: url('../images/lc_currencyfield.svg') no-repeat center !important; }
-.w2ui-icon.numberformatpercent{ background: url('../images/lc_numberformatpercent.svg') no-repeat center !important; }
-.w2ui-icon.numberformatdecimal{ background: url('../images/lc_numberformatdecimal.svg') no-repeat center !important; }
-.w2ui-icon.numberformatdate{ background: url('../images/lc_datefield.svg') no-repeat center !important; }
-.w2ui-icon.numberformatincdecimals{ background: url('../images/lc_numberformatincdecimals.svg') no-repeat center !important; }
-.w2ui-icon.numberformatdecdecimals{ background: url('../images/lc_numberformatdecdecimals.svg') no-repeat center !important; }
-.w2ui-icon.sortascending{ background: url('../images/lc_sortascending.svg') no-repeat center !important; }
-.w2ui-icon.sortdescending{ background: url('../images/lc_sortdescending.svg') no-repeat center !important; }
-.w2ui-icon.selected{ background: url('../images/lc_ok.svg') no-repeat center !important; }
-.w2ui-icon.repair{ background: url('../images/lc_backward.svg') no-repeat center !important; }
-.w2ui-icon.specialcharacter{ background: url('../images/lc_insertsymbol.svg') no-repeat center !important; }
-.w2ui-icon.insertobjectchart{ background: url('../images/lc_drawchart.svg') no-repeat center !important; }
+.w2ui-icon.accepttrackedchanges{ background: url('images/lc_accepttrackedchanges.svg') no-repeat center !important; }
+.w2ui-icon.alignblock{ background: url('images/lc_alignblock.svg') no-repeat center !important; }
+.w2ui-icon.alignhorizontal{ background: url('images/lc_alignhorizontalcenter.svg') no-repeat center !important; }
+.w2ui-icon.alignleft{ background: url('images/lc_alignleft.svg') no-repeat center !important; }
+.w2ui-icon.alignright{ background: url('images/lc_alignright.svg') no-repeat center !important; }
+.w2ui-icon.autosum{ background: url('images/lc_autosum.svg') no-repeat center !important; }
+.w2ui-icon.backcolor{ background: url('images/lc_backcolor.svg') no-repeat center !important; }
+.w2ui-icon.bold{ background: url('images/lc_bold.svg') no-repeat center !important; }
+.w2ui-icon.annotation{ background: url('images/lc_showannotations.svg') no-repeat center !important; }
+.w2ui-icon.bullet{ background: url('images/lc_defaultbullet.svg') no-repeat center !important; }
+.w2ui-icon.cancel{ background: url('images/lc_cancel.svg') no-repeat center !important; }
+.w2ui-icon.color{ background: url('images/lc_color.svg') no-repeat center !important; }
+.w2ui-icon.decrementindent{ background: url('images/lc_decrementindent.svg') no-repeat center !important; }
+.w2ui-icon.deletepage{ background: url('images/lc_deletepage.svg') no-repeat center !important; }
+.w2ui-icon.duplicatepage{ background: url('images/lc_duplicatepage.svg') no-repeat center !important; }
+.w2ui-icon.edit{ background: url('images/lc_editdoc.svg') no-repeat center !important; }
+.w2ui-icon.equal{ background: url('images/lc26049.svg') no-repeat center !important; }
+.w2ui-icon.help{ background: url('images/lc_helpindex.svg') no-repeat center !important; }
+.w2ui-icon.incrementindent{ background: url('images/lc_decrementlevel.svg') no-repeat center !important; }
+.w2ui-icon.insertpage{ background: url('images/lc_insertpage.svg') no-repeat center !important; }
+.w2ui-icon.insertsheet{ background: url('images/plus.svg') no-repeat center !important; }
+.w2ui-icon.italic{ background: url('images/lc_italic.svg') no-repeat center !important; }
+.w2ui-icon.insertgraphic{ background: url('images/lc_gallery.svg') no-repeat center !important; }
+.w2ui-icon.inserttable{ background: url('images/lc_inserttable.svg') no-repeat center !important; }
+.w2ui-icon.next{ background: url('images/lc_downsearch.svg') no-repeat center !important; }
+.w2ui-icon.numbering{ background: url('images/lc_defaultnumbering.svg') no-repeat center !important; }
+.w2ui-icon.presentation{ background: url('images/lc_dia.svg') no-repeat center !important; }
+.w2ui-icon.prev{ background: url('images/lc_upsearch.svg') no-repeat center !important; }
+.w2ui-icon.print{ background: url('images/lc_print.svg') no-repeat center !important; }
+.w2ui-icon.redo{ background: url('images/lc_redo.svg') no-repeat center !important; }
+.w2ui-icon.save{ background: url('images/lc_save.svg') no-repeat center !important; }
+.w2ui-icon.saveas{ background: url('images/lc_saveas.svg') no-repeat center !important; }
+.w2ui-icon.savemodified{ background: url('images/savemodified.svg') no-repeat center !important; }
+.w2ui-icon.strikeout{ background: url('images/lc_strikeout.svg') no-repeat center !important; }
+.w2ui-icon.insertfootnote{ background: url('images/lc_insertfootnote.svg') no-repeat center !important; }
+.w2ui-icon.underline{ background: url('images/lc_underline.svg') no-repeat center !important; }
+.w2ui-icon.undo{ background: url('images/lc_undo.svg') no-repeat center !important; }
+.w2ui-icon.zoomin{ background: url('images/plus.svg') no-repeat center !important; }
+.w2ui-icon.zoomout{ background: url('images/minus.svg') no-repeat center !important; }
+.w2ui-icon.zoomreset{ background: url('images/lc_view100.svg') no-repeat center !important; }
+.w2ui-icon.more{ background: url('images/lc_downsearch.svg') no-repeat center !important; }
+.w2ui-icon.firstrecord{ background: url('images/lc_firstrecord.svg') no-repeat center !important; }
+.w2ui-icon.nextrecord{ background: url('images/lc_nextrecord.svg') no-repeat center !important; }
+.w2ui-icon.prevrecord{ background: url('images/lc_prevrecord.svg') no-repeat center !important; }
+.w2ui-icon.lastrecord{ background: url('images/lc_lastrecord.svg') no-repeat center !important; }
+.w2ui-icon.wraptext{ background: url('images/lc_wraptext.svg') no-repeat center !important; }
+.w2ui-icon.togglemergecells{ background: url('images/lc_togglemergecells.svg') no-repeat center !important; }
+.w2ui-icon.numberformatcurrency{ background: url('images/lc_currencyfield.svg') no-repeat center !important; }
+.w2ui-icon.numberformatpercent{ background: url('images/lc_numberformatpercent.svg') no-repeat center !important; }
+.w2ui-icon.numberformatdecimal{ background: url('images/lc_numberformatdecimal.svg') no-repeat center !important; }
+.w2ui-icon.numberformatdate{ background: url('images/lc_datefield.svg') no-repeat center !important; }
+.w2ui-icon.numberformatincdecimals{ background: url('images/lc_numberformatincdecimals.svg') no-repeat center !important; }
+.w2ui-icon.numberformatdecdecimals{ background: url('images/lc_numberformatdecdecimals.svg') no-repeat center !important; }
+.w2ui-icon.sortascending{ background: url('images/lc_sortascending.svg') no-repeat center !important; }
+.w2ui-icon.sortdescending{ background: url('images/lc_sortdescending.svg') no-repeat center !important; }
+.w2ui-icon.selected{ background: url('images/lc_ok.svg') no-repeat center !important; }
+.w2ui-icon.repair{ background: url('images/lc_backward.svg') no-repeat center !important; }
+.w2ui-icon.specialcharacter{ background: url('images/lc_insertsymbol.svg') no-repeat center !important; }
+.w2ui-icon.insertobjectchart{ background: url('images/lc_drawchart.svg') no-repeat center !important; }
 
 .inserttable-pop {
     z-index: 1000;
diff --git a/loleaflet/dist/w2ui-1.5.rc1.css b/loleaflet/css/w2ui-1.5.rc1.css
similarity index 100%
rename from loleaflet/dist/w2ui-1.5.rc1.css
rename to loleaflet/css/w2ui-1.5.rc1.css
diff --git a/loleaflet/dist/errormessages.js b/loleaflet/dist/errormessages.js
deleted file mode 100644
index 1f1454208..000000000
--- a/loleaflet/dist/errormessages.js
+++ /dev/null
@@ -1,18 +0,0 @@
-exports.diskfull = _('No disk space left on server, please contact the server administrator to continue.');
-exports.emptyhosturl = _('The host URL is empty. The loolwsd server is probably misconfigured, please contact the administrator.');
-exports.limitreached = _('This is an unsupported version of {productname}. To avoid the impression that it is suitable for deployment in enterprises, this message appears when more than {docs} documents or {connections} connections are in use concurrently');
-exports.infoandsupport = _('More information and support');
-exports.limitreachedprod = _('This service is limited to %0 documents, and %1 connections total by the admin. This limit has been reached. Please try again later.');
-exports.serviceunavailable = _('Service is unavailable. Please try again later and report to your administrator if the issue persists.');
-exports.unauthorized = _('Unauthorized WOPI host. Please try again later and report to your administrator if the issue persists.');
-exports.wrongwopisrc = _('Wrong or missing WOPISrc parameter, please contact support.');
-exports.sessionexpiry = _('Your session will expire in %time. Please save your work and refresh the session (or webpage) to continue.');
-exports.sessionexpired = _('Your session has been expired. Further changes to document might not be saved. Please refresh the session (or webpage) to continue.');
-exports.faileddocloading = _('Failed to load the document. Please ensure the file type is supported and not corrupted, and try again.');
-
-exports.storage = {
-	loadfailed: _('Failed to read document from storage. Please contact your storage server (%storageserver) administrator.'),
-	savediskfull: _('Save failed due to no disk space left on storage server. Document will now be read-only. Please contact the server (%storageserver) administrator to continue editing.'),
-	saveunauthorized: _('Document cannot be saved due to expired or invalid access token.'),
-	savefailed: _('Document cannot be saved. Check your permissions or contact the storage server administrator.')
-};
diff --git a/loleaflet/dist/toolbar/w2ui-1.4.3.css b/loleaflet/dist/toolbar/w2ui-1.4.3.css
deleted file mode 100644
index e3c87108f..000000000
--- a/loleaflet/dist/toolbar/w2ui-1.4.3.css
+++ /dev/null
@@ -1,2754 +0,0 @@
-/* w2ui 1.4.3 (c) http://w2ui.com, vitmalina at gmail.com */
- at font-face {
-  font-family: "w2ui-font";
-  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAWIAAoAAAAACAgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAEMAAABWQLxMsmNtYXAAAAE4AAAAOgAAAUriGRC2Z2x5ZgAAAXQAAAH9AAACgLu4vTRoZWFkAAADdAAAADAAAAA2AOYXBGhoZWEAAAOkAAAAIAAAACQD8wHHaG10eAAAA8QAAAAWAAAAIA7dAABsb2NhAAAD3AAAABIAAAASAngBuG1heHAAAAPwAAAAHwAAACABFQA2bmFtZQAABBAAAAEtAAACIsTQ/zJwb3N0AAAFQAAAAEgAAABi4/7ZEHicY2BkvMM4gYGVgYPRhTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfmRnPPD/AIMe4wEGR6AwI0gOANHZC/IAeJxjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYGBg+sv//D1LwkRFE8zNA1QMBIxvDiAcAddwGvgAAeJxFkLFv01AQxu97LrHdRImjpnaS1gnEia3IoqAktkkiEhaEOiCsDkEo8dyBDkytKpYKVWwssKKKAYmBREKMLJSFoRJ/AGJhY0NZGFgSzrUinvR+d++7T+/ePQLRci4IJ3SFCLIjG8CH+ZPwHHdwkkSS2PMXP3DGmUxpoo123lrt5nj8fjyejsc4W0zwNtl8FfHCKV5QnaOhF3IJUrUbkGPYnSGcGH6risBvGQhdVY0iVXXVkhJN1JL6/6xOIqWk4tRlJiVFiSJFSUrsZ+tkoqpEgt/6Hb/wjtZog2gonBx24AyFJUuNwMvha+/CvLi3vq1f785GsxGuTqfWc5O1N/r2+lNrOl38ZHnWpdUMr/CaLKLGZiHl4hI1+zasGB2/Dy9GSzfRbul4qaWPtHSQ0Y7SWpxmgnSc/mblMKNpmcOVEhfj+5d/8BG
 fqMl9bKuWFYWKaLf8YIAq9IKc5TY7ojNgTTcC7iEjaN4yPdswbM+81t8UimRLojq66YbdWq0bus375t21bwgcw/H6nmNUyhIkR/DsTasXPgx7VtV8oDx6XIxHE8vl8rMAzqlEDZ7QseUBPP6tLOQKDH5HqooKfLvB2gABa1lgflzI60VxsLd3IJj1YRn5/Wx9Syy++LvArn/JzH4e5WE98TCLer5wnBNb9WcrB5PoH084dg8AAAB4nGNgZGBgAOKMsPib8fw2Xxm4mRhA4PzjbBcY/f////1MjIwHgFwOBrA0AFcuDPF4nGNgZGBgPPD/AIMeEwMDw/9/TEwMQBEUwAEAe34EvHicY2JgYGCCYsbJCJpxO4QNABdTAesAAAAAAAAAEgAsAGgAjgC+AP4BQAAAeJxjYGRgYOBg0GJgZgABJiDmAkIGhv9gPgMADYEBTAB4nG2PTW7CMBCFXyBQFaQKtVKl7qwuuqkIPwsWHAD2LNiH4ARQEkeOQeICPUHP0DP0BF32DD1KX8IoixZbHn/z5o1/AAzwBQ/V8HBbx2q0cMPswm3SQNgnPwl30MezcJf6ULiHV8yE+3hAyBM8vzrtHk64hTu8Cbepvwv75A/hDh7xKdyl/i3cwxo/wn28eLN9ZPJhbHK30skxDW2TN7DWttybXE2CcaMtda5t6PRWbc6qPCVT52IVW5OpBas6TY0qrDnoyAU754r5aBSLHkQmwx4RDHL+Oq53hxU0EhyR8sf2Sv2/smaHRclKlStMEGB8xbekL6+9ITONLb0bnBlLnHjnlKqjW3FZ9mSkhfRqviclKxR17UAloh5gV3cVmGPEGf/xB/Ursl9uDmByAAAAeJxtwUEOgCAMBMAu0sI3SdMEIwKh8n8PXp2hQB+mf5kIAQciGIKEzFpNr6Sj7bs76xruMq3r2eJs22XZtPKIW1laiV6rCBDA") format("woff");
-  font-weight: normal;
-  font-style: normal;
-}
-[class^="w2ui-icon-"]:before,
-[class*=" w2ui-icon-"]:before {
-  font-family: "w2ui-font";
-  display: inline-block;
-  vertical-align: middle;
-  line-height: 1;
-  font-weight: normal;
-  font-style: normal;
-  speak: none;
-  text-decoration: inherit;
-  text-transform: none;
-  text-rendering: optimizeLegibility;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-/* Icons */
-.w2ui-icon-check:before {
-  content: "\f101";
-}
-.w2ui-icon-columns:before {
-  content: "\f102";
-}
-.w2ui-icon-cross:before {
-  content: "\f103";
-}
-.w2ui-icon-pencil:before {
-  content: "\f104";
-}
-.w2ui-icon-plus:before {
-  content: "\f105";
-}
-.w2ui-icon-reload:before {
-  content: "\f106";
-}
-.w2ui-icon-search:before {
-  content: "\f107";
-}
-/*************************************************
-* --- Reset (used for all w2ui wdigetes)
-* --- The reset is needed to coexist with other CSS
-* --- on the same page (for example bootstrap)
-*/
-.w2ui-reset {
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-  font-family: Verdana, Arial, sans-serif;
-  font-size: 11px;
-}
-.w2ui-reset * {
-  color: default;
-  line-height: 100%;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-  margin: 0px;
-  padding: 0px;
-}
-.w2ui-reset table {
-  font-family: Verdana, Arial, sans-serif;
-  font-size: 11px;
-  max-width: none;
-  background-color: transparent;
-  border-collapse: separate;
-  border-spacing: 0;
-}
-.w2ui-reset input,
-.w2ui-reset textarea {
-  width: auto;
-  height: auto;
-  vertical-align: baseline;
-  padding: 4px;
-}
-.w2ui-reset select {
-  padding: 1px;
-  height: 23px;
-}
-.w2ui-centered {
-  position: absolute;
-  left: 0px;
-  right: 0px;
-  top: 50%;
-  -webkit-transform: translateY(-50%);
-  -moz-transform: translateY(-50%);
-  -ms-transform: translateY(-50%);
-  -o-transform: translateY(-50%);
-  transform: translateY(-50%);
-  max-height: 100%;
-  margin: 0px;
-  padding: 0px 10px;
-  text-align: center;
-}
-.w2ui-disabled,
-.w2ui-readonly {
-  background-color: #f1f1f1 !important;
-  color: #777 !important;
-}
-/*************************************************
-* ---- Input Controls ----
-*/
-input:not([type=button]),
-select,
-textarea {
-  padding: 4px;
-  border: 1px solid #bbbbbb;
-  border-radius: 3px;
-  color: #000000;
-  background-color: #ffffff;
-  line-height: normal;
-}
-input:not([type=button]):focus,
-select:focus,
-textarea:focus {
-  outline-color: #72b2ff;
-}
-input:not([type=button]):disabled,
-select:disabled,
-textarea:disabled,
-input:not([type=button])[readonly],
-select[readonly],
-textarea[readonly] {
-  background-color: #f1f1f1;
-  color: #777;
-}
-/* IE9-11 specific classes */
-/* needs doblue :: */
-input::-ms-clear {
-  display: none;
-}
-input:-ms-input-placeholder {
-  color: #aaa !important;
-}
-select {
-  padding: 2px;
-}
-/* On/Off switch */
-input[type="checkbox"].w2ui-toggle {
-  position: absolute;
-  opacity: 0;
-  width: 46px;
-  height: 22px;
-  padding: 0px;
-  margin: 0px;
-  margin-left: 2px;
-}
-/* Track */
-input[type="checkbox"].w2ui-toggle + div {
-  display: inline-block;
-  width: 46px;
-  height: 22px;
-  border: 1px solid #bbb;
-  border-radius: 30px;
-  background-color: #eee;
-  -webkit-transition-duration: .3s;
-  -webkit-transition-property: background-color, box-shadow;
-  -moz-transition-duration: .3s;
-  -moz-transition-property: background-color, box-shadow;
-  box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.4);
-  margin-left: 2px;
-}
-input[type="checkbox"].w2ui-toggle:disabled + div {
-  opacity: 0.3;
-}
-/* Knob */
-input[type="checkbox"].w2ui-toggle + div > div {
-  float: left;
-  width: 22px;
-  height: 22px;
-  border-radius: inherit;
-  background: #f5f5f5;
-  -webkit-transition-duration: 0.3s;
-  -webkit-transition-property: transform, background-color, box-shadow;
-  -moz-transition-duration: 0.3s;
-  -moz-transition-property: transform, background-color;
-  box-shadow: 0px 0px 1px #323232, 0 0 0 1px rgba(200, 200, 200, 0.6);
-  pointer-events: none;
-  margin-top: -1px;
-  margin-left: -1px;
-}
-/* Default Green */
-input[type="checkbox"].w2ui-toggle:checked + div {
-  border: 1px solid #00a23f;
-  box-shadow: inset 0 0 0 12px #54B350;
-}
-input[type="checkbox"].w2ui-toggle:checked + div > div {
-  -webkit-transform: translate3d(24px, 0, 0);
-  -moz-transform: translate3d(24px, 0, 0);
-  background-color: #ffffff;
-  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px #00a23f;
-}
-/* Blue */
-input[type="checkbox"].w2ui-toggle.blue:checked + div {
-  border: 1px solid #206FAD;
-  box-shadow: inset 0 0 0 12px #35A6EB;
-}
-input[type="checkbox"].w2ui-toggle.blue:checked + div > div {
-  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px #206fad;
-}
-input[type=checkbox].w2ui-toggle:focus {
-  outline: none;
-}
-/*************************************************
-* ---- Overlay and Bubble ----
-*/
-.w2ui-overlay {
-  position: absolute;
-  margin-top: 6px;
-  margin-left: -17px;
-  display: none;
-  z-index: 1300;
-  color: inherit;
-  background-color: #fbfbfb;
-  border: 3px solid #777777;
-  box-shadow: 0px 2px 10px #999999;
-  border-radius: 4px;
-  text-align: left;
-}
-.w2ui-overlay table td {
-  color: inherit;
-}
-.w2ui-overlay:before {
-  content: "";
-  position: absolute;
-  -webkit-transform: rotate(-45deg);
-  -moz-transform: rotate(-45deg);
-  -ms-transform: rotate(-45deg);
-  -o-transform: rotate(-45deg);
-  transform: rotate(-45deg);
-  width: 12px;
-  height: 12px;
-  border: 3px solid #777777;
-  border-color: inherit;
-  background-color: inherit;
-  border-left: 1px solid transparent;
-  border-bottom: 1px solid transparent;
-  border-bottom-left-radius: 50px;
-  margin: -9px 0 0 30px;
-}
-.w2ui-overlay:after {
-  display: none;
-  content: "";
-  position: absolute;
-  -webkit-transform: rotate(135deg);
-  -moz-transform: rotate(135deg);
-  -ms-transform: rotate(135deg);
-  -o-transform: rotate(135deg);
-  transform: rotate(135deg);
-  width: 12px;
-  height: 12px;
-  border: 3px solid #777777;
-  border-color: inherit;
-  background-color: inherit;
-  border-left: 1px solid transparent;
-  border-bottom: 1px solid transparent;
-  border-bottom-left-radius: 50px;
-  margin: -7px 0 0 30px;
-}
-.w2ui-overlay.w2ui-overlay-popup {
-  z-index: 1700;
-}
-.w2ui-tag {
-  position: absolute;
-  z-index: 1300;
-  opacity: 0;
-  -webkit-transition: opacity 0.3s;
-  -moz-transition: opacity 0.3s;
-  -ms-transition: opacity 0.3s;
-  -o-transition: opacity 0.3s;
-  transition: opacity 0.3s;
-}
-.w2ui-tag .w2ui-tag-body {
-  background-color: rgba(60, 60, 60, 0.82);
-  display: inline-block;
-  position: absolute;
-  border-radius: 4px;
-  padding: 4px 10px;
-  margin-left: 10px;
-  margin-top: 0px;
-  color: #ffffff !important;
-  box-shadow: 1px 1px 3px #000000;
-  line-height: 100%;
-  font-size: 11px;
-  font-family: Verdana, Arial, sans-serif;
-}
-.w2ui-tag .w2ui-tag-body:before {
-  content: "";
-  position: absolute;
-  width: 0;
-  height: 0;
-  border-top: 5px solid transparent;
-  border-right: 5px solid rgba(60, 60, 60, 0.82);
-  border-bottom: 5px solid transparent;
-  margin: 2px 0 0 -15px;
-}
-.w2ui-tag.w2ui-tag-popup {
-  z-index: 1700;
-}
-/*
-*    Drop down menu
-*/
-.w2ui-overlay table.w2ui-drop-menu {
-  width: 100%;
-  color: #000000;
-  background-color: #ffffff;
-  padding: 5px 0px;
-  cursor: default;
-}
-.w2ui-overlay table.w2ui-drop-menu td {
-  white-space: nowrap;
-}
-.w2ui-overlay table.w2ui-drop-menu .w2ui-item-even {
-  color: inherit;
-  background-color: #ffffff;
-}
-.w2ui-overlay table.w2ui-drop-menu .w2ui-item-odd {
-  color: inherit;
-  background-color: #f3f6fa;
-}
-.w2ui-overlay table.w2ui-drop-menu .w2ui-item-group {
-  color: #444;
-  font-weight: bold;
-  background-color: #ECEDF0;
-  border-bottom: 1px solid #D3D2D4;
-}
-.w2ui-overlay table.w2ui-drop-menu td.menu-icon {
-  padding: 3px 0px 4px 6px;
-  width: 20px;
-}
-.w2ui-overlay table.w2ui-drop-menu td.menu-text {
-  padding: 8px 10px 8px 5px;
-  width: auto;
-}
-.w2ui-overlay table.w2ui-drop-menu td.menu-count {
-  text-align: right;
-}
-.w2ui-overlay table.w2ui-drop-menu td.menu-count > span {
-  border: 1px solid #9da4af;
-  border-radius: 20px;
-  width: auto;
-  height: 18px;
-  padding: 2px 7px;
-  margin: 3px 5px 0px 5px;
-  background-color: #e7f0fc;
-  color: #667274;
-  box-shadow: 0 0 2px #ffffff;
-  text-shadow: 1px 1px 1px #e6e6e6;
-}
-.w2ui-overlay table.w2ui-drop-menu tr:hover {
-  color: inherit;
-  background-color: #e6f0ff;
-}
-.w2ui-overlay table.w2ui-drop-menu tr.w2ui-selected {
-  background-color: #b6d5fb;
-}
-.w2ui-overlay table.w2ui-drop-menu tr.w2ui-selected td {
-  color: inherit;
-}
-.w2ui-overlay table.w2ui-drop-menu tr.w2ui-disabled {
-  opacity: 0.4;
-  background-color: white !important;
-}
-.w2ui-overlay table.w2ui-drop-menu .w2ui-icon {
-  font-size: 14px;
-  color: #8d99a7;
-  display: inline-block;
-  padding-top: 4px;
-}
-/*************************************************
-* ---- Common Classes ----
-*/
-.w2ui-marker {
-  color: #444;
-  background-color: rgba(252, 244, 161, 0.48);
-}
-.w2ui-spinner {
-  display: inline-block;
-  background-size: 100%;
-  background-repeat: no-repeat;
-  background-image: url(data:image/gif;base64,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);
-}
-/* common icons */
-.w2ui-icon {
-  background-repeat: no-repeat;
-  height: 16px;
-  width: 16px;
-  overflow: hidden;
-  margin: 2px 2px;
-  display: inline-block;
-}
-.w2ui-icon.icon-search,
-.w2ui-icon.icon-search-down {
-  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAgCAYAAAB+ZAqzAAACuElEQVRYw9WXSWhTQRjHR0UKLqhFaV0OUih68GAOWjyJKypCpAoV8aIiioIICiKiB1GMtE3MYmry2moXDz1UDx7sUXHBhQpSaRVxrYpWcMO9avx/8AJh/CbznHkxdeB3Cd/8589kvuUJkWcdjCTHghUgAi6DJ+AVeAqugSQIggniXywcNBJsB70g44EHYBcYXUhTM8EFj4ZkboKqQpiqAv2GprK8o7/f75t6pjn0M3gNPmri3vtycxAZA64qDvkJ2kENqAQTQQWoBg74qth3B4y3NbZDIX4fzNfsnQtuK/YfsjFVCh4pMq3Co0Y5uMVoUGkpy8aFT5xaeSzVEo45bXdBt4LeaLq1k0RXMYJfdDfFmAuAD4zWlty4UNyZEkm19MUb2zMw8Sfp1u+IWSrcIimLnTG8/SijdU6OO5poDESdtgHZVBzUHm/amhW7zoitMTS2mNHqASPk2FDCCcLMYK6p+obmulyxfiYLA4bGKFvfSnrUvkq5+Lpk8z4yRH8r3l/X4WiqJFfspSQ0CGYZGpsMnkt6L+h31Z76hpMdeOwPQ7H0NFnssST0C8wxNDaDKb6kP06150gsHahNNlVzYheZd7HJ0BiX4VRGhpmIhRixKyZilM2M1mnTArtIUbU3/qVO0H0GvmQ4CY4C3YopYYlHjXlggNG4R33Ypi2tVtwaPeTdNMkq9pVQZQdvFPs32zbx4aAjzxhDRfIAWAeWg7VgrzsY5ht/zoNJtubKwA3LITGjSKRyW3NTwaUCmKOSMd3WHH0ZJRQZZkOP1zFKZ3CB++4+aQ6kEeksWAb2a2L7qDv49S1Q6T72MOgEXa6RGFhP3wpS/B6NOWpRs0UxFg7eqTFHjX1hscxtAz/ymEuIYi0cvgF8Y0w5Ro3dZ3M1boJkTaXEUFlug
 6fsdsRQWzTj0cey+N/Xb2sj5lTh2M6OAAAAAElFTkSuQmCC) no-repeat center !important;
-  background-size: 14px 12px !important;
-  opacity: 0.9;
-}
-.w2ui-icon.icon-folder {
-  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGrSURBVDjLxZO7ihRBFIa/6u0ZW7GHBUV0UQQTZzd3QdhMQxOfwMRXEANBMNQX0MzAzFAwEzHwARbNFDdwEd31Mj3X7a6uOr9BtzNjYjKBJ6nicP7v3KqcJFaxhBVtZUAK8OHlld2st7Xl3DJPVONP+zEUV4HqL5UDYHr5xvuQAjgl/Qs7TzvOOVAjxjlC+ePSwe6DfbVegLVuT4r14eTr6zvA8xSAoBLzx6pvj4l+DZIezuVkG9fY2H7YRQIMZIBwycmzH1/s3F8AapfIPNF3kQk7+kw9PWBy+IZOdg5Ug3mkAATy/t0usovzGeCUWTjCz0B+Sj0ekfdvkZ3abBv+U4GaCtJ1iEm6ANQJ6fEzrG/engcKw/wXQvEKxSEKQxRGKE7Izt+DSiwBJMUSm71rguMYhQKrBygOIRStf4TiFFRBvbRGKiQLWP29yRSHKBTtfdBmHs0BUpgvtgF4yRFR+NUKi0XZcYjCeCG2smkzLAHkbRBmP0/Uk26O5YnUActBp1GsAI+S5nRJJJal5K1aAMrq0d6Tm9uI6zjyf75dAe6tx/SsWeD//o2/Ab6IH3/h25pOAAAAAElFTkSuQmCC) no-repeat center !important;
-}
-.w2ui-icon.icon-page {
-  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAINSURBVBgZBcG/r55zGAfg6/4+z3va01NHlYgzEfE7MdCIGISFgS4Gk8ViYyM2Mdlsko4GSf8Do0FLRCIkghhYJA3aVBtEz3nP89wf11VJvPDepdd390+8Nso5nESBQoq0pfvXm9fzWf19453LF85vASqJlz748vInb517dIw6EyYBIIG49u+xi9/c9MdvR//99MPPZ7+4cP4IZhhTPbwzT2d+vGoaVRRp1rRliVvHq+cfvM3TD82+7mun0o/ceO7NT+/4/KOXjwZU1ekk0840bAZzMQ2mooqh0A72d5x/6sB9D5zYnff3PoYBoWBgFKPKqDKqjCpjKr//dcu9p489dra88cydps30KswACfNEKanSaxhlntjJ8Mv12Paie+vZ+0+oeSwwQ0Iw1xAR1CiFNJkGO4wu3ZMY1AAzBI0qSgmCNJsJUEOtJSMaCTBDLyQ0CknAGOgyTyFFiLI2awMzdEcSQgSAAKVUmAeNkxvWJWCGtVlDmgYQ0GFtgg4pNtOwbBcwQy/Rife/2yrRRVI0qYCEBly8Z+P4qMEMy7JaVw72N568e+iwhrXoECQkfH91kY7jwwXMsBx1L93ZruqrK6uuiAIdSnTIKKPLPFcvay8ww/Hh+ufeznTXu49v95IMoQG3784gYXdTqvRmqn/Wpa/ADFX58MW3L71SVU9ETgEIQQQIOOzub+fhIvwPRDgeVjWDahIAAAAASUVORK5CYII=) no-repeat center !important;
-}
-/*************************************************
-* ---- Locking portion of the screen (in grid, form, layout)
-*/
-.w2ui-lock {
-  display: none;
-  position: absolute;
-  z-index: 1400;
-  top: 0px;
-  left: 0px;
-  width: 100%;
-  height: 100%;
-  opacity: 0.15;
-  filter: alpha(opacity=15);
-  background-color: #333333;
-}
-.w2ui-lock-msg {
-  display: none;
-  position: absolute;
-  z-index: 1400;
-  top: 45%;
-  left: 50%;
-  -webkit-transform: translateX(-50%) translateY(-50%);
-  -moz-transform: translateX(-50%) translateY(-50%);
-  -ms-transform: translateX(-50%) translateY(-50%);
-  -o-transform: translateX(-50%) translateY(-50%);
-  transform: translateX(-50%) translateY(-50%);
-  width: 200px;
-  height: 80px;
-  padding: 30px 8px;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  font-size: 13px;
-  font-family: Verdana, Arial, sans-serif;
-  opacity: 0.8;
-  filter: alpha(opacity=80);
-  background-color: #555555;
-  color: #ffffff;
-  text-align: center;
-  border-radius: 5px;
-  border: 2px solid #444444;
-}
-.w2ui-lock-msg .w2ui-spinner {
-  display: inline-block;
-  width: 24px;
-  height: 24px;
-  margin: -3px 8px -7px -10px;
-}
-button.btn {
-  display: inline-block;
-  border-radius: 4px;
-  margin: 0px 5px;
-  padding: 7px 12px 6px 12px !important;
-  color: #666;
-  font-size: 12px !important;
-  border: 1px solid #B6B6B6;
-  background-image: -webkit-linear-gradient(#ffffff 0%, #e7e7e7 100%);
-  background-image: -moz-linear-gradient(#ffffff 0%, #e7e7e7 100%);
-  background-image: -ms-linear-gradient(#ffffff 0%, #e7e7e7 100%);
-  background-image: -o-linear-gradient(#ffffff 0%, #e7e7e7 100%);
-  background-image: linear-gradient(#ffffff 0%, #e7e7e7 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffe7e7e7', endColorstr='#ffffffff', GradientType=0);
-  outline: none;
-  box-shadow: 0px 1px 0px white;
-  cursor: default;
-  min-width: 75px;
-  line-height: 100% !important;
-  user-select: none;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  -o-user-select: none;
-  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-button.btn:hover {
-  text-decoration: none;
-  border: 1px solid #bbb;
-  background-image: -webkit-linear-gradient(#f7f7f7 0%, #dddddd 100%);
-  background-image: -moz-linear-gradient(#f7f7f7 0%, #dddddd 100%);
-  background-image: -ms-linear-gradient(#f7f7f7 0%, #dddddd 100%);
-  background-image: -o-linear-gradient(#f7f7f7 0%, #dddddd 100%);
-  background-image: linear-gradient(#f7f7f7 0%, #dddddd 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffdddddd', endColorstr='#fff7f7f7', GradientType=0);
-  color: #333;
-}
-button.btn:active,
-button.btn.clicked {
-  border: 1px solid #999;
-  background-image: -webkit-linear-gradient(#cccccc 0%, #cccccc 100%);
-  background-image: -moz-linear-gradient(#cccccc 0%, #cccccc 100%);
-  background-image: -ms-linear-gradient(#cccccc 0%, #cccccc 100%);
-  background-image: -o-linear-gradient(#cccccc 0%, #cccccc 100%);
-  background-image: linear-gradient(#cccccc 0%, #cccccc 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffcccccc', endColorstr='#ffcccccc', GradientType=0);
-  text-shadow: 1px 1px 1px #eee;
-}
-button.btn:disabled {
-  border: 1px solid #bbb !important;
-  background: #f7f7f7 !important;
-  color: #bdbcbc !important;
-  text-shadow: none !important;
-}
-button.btn-blue {
-  color: white;
-  background-image: -webkit-linear-gradient(#80c0f7 0%, #269df0 100%);
-  background-image: -moz-linear-gradient(#80c0f7 0%, #269df0 100%);
-  background-image: -ms-linear-gradient(#80c0f7 0%, #269df0 100%);
-  background-image: -o-linear-gradient(#80c0f7 0%, #269df0 100%);
-  background-image: linear-gradient(#80c0f7 0%, #269df0 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff269df0', endColorstr='#ff80c0f7', GradientType=0);
-  border: 1px solid #538AB7;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-blue:hover {
-  color: white;
-  background-image: -webkit-linear-gradient(#73b6f0 0%, #2391dd 100%);
-  background-image: -moz-linear-gradient(#73b6f0 0%, #2391dd 100%);
-  background-image: -ms-linear-gradient(#73b6f0 0%, #2391dd 100%);
-  background-image: -o-linear-gradient(#73b6f0 0%, #2391dd 100%);
-  background-image: linear-gradient(#73b6f0 0%, #2391dd 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff2391dd', endColorstr='#ff73b6f0', GradientType=0);
-  border: 1px solid #497BA3;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-blue:active,
-button.btn-blue.clicked {
-  color: white;
-  background-image: -webkit-linear-gradient(#1e83c9 0%, #1e83c9 100%);
-  background-image: -moz-linear-gradient(#1e83c9 0%, #1e83c9 100%);
-  background-image: -ms-linear-gradient(#1e83c9 0%, #1e83c9 100%);
-  background-image: -o-linear-gradient(#1e83c9 0%, #1e83c9 100%);
-  background-image: linear-gradient(#1e83c9 0%, #1e83c9 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff1e83c9', endColorstr='#ff1e83c9', GradientType=0);
-  border: 1px solid #1268A6;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-green {
-  color: white;
-  background-image: -webkit-linear-gradient(#81cf81 0%, #52a452 100%);
-  background-image: -moz-linear-gradient(#81cf81 0%, #52a452 100%);
-  background-image: -ms-linear-gradient(#81cf81 0%, #52a452 100%);
-  background-image: -o-linear-gradient(#81cf81 0%, #52a452 100%);
-  background-image: linear-gradient(#81cf81 0%, #52a452 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff52a452', endColorstr='#ff81cf81', GradientType=0);
-  border: 1px solid #479247;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-green:hover {
-  color: white;
-  background-image: -webkit-linear-gradient(#6abe68 0%, #3f8f3d 100%);
-  background-image: -moz-linear-gradient(#6abe68 0%, #3f8f3d 100%);
-  background-image: -ms-linear-gradient(#6abe68 0%, #3f8f3d 100%);
-  background-image: -o-linear-gradient(#6abe68 0%, #3f8f3d 100%);
-  background-image: linear-gradient(#6abe68 0%, #3f8f3d 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff3f8f3d', endColorstr='#ff6abe68', GradientType=0);
-  border: 1px solid #479247;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-green:active,
-button.btn-green.clicked {
-  color: white;
-  background-image: -webkit-linear-gradient(#377d36 0%, #377d36 100%);
-  background-image: -moz-linear-gradient(#377d36 0%, #377d36 100%);
-  background-image: -ms-linear-gradient(#377d36 0%, #377d36 100%);
-  background-image: -o-linear-gradient(#377d36 0%, #377d36 100%);
-  background-image: linear-gradient(#377d36 0%, #377d36 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff377d36', endColorstr='#ff377d36', GradientType=0);
-  border: 1px solid #555 !important;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-orange {
-  color: white;
-  background-image: -webkit-linear-gradient(#fcc272 0%, #fb8822 100%);
-  background-image: -moz-linear-gradient(#fcc272 0%, #fb8822 100%);
-  background-image: -ms-linear-gradient(#fcc272 0%, #fb8822 100%);
-  background-image: -o-linear-gradient(#fcc272 0%, #fb8822 100%);
-  background-image: linear-gradient(#fcc272 0%, #fb8822 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffb8822', endColorstr='#fffcc272', GradientType=0);
-  border: 1px solid #B68B4C;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-orange:hover {
-  color: white;
-  background-image: -webkit-linear-gradient(#f4ad59 0%, #f1731f 100%);
-  background-image: -moz-linear-gradient(#f4ad59 0%, #f1731f 100%);
-  background-image: -ms-linear-gradient(#f4ad59 0%, #f1731f 100%);
-  background-image: -o-linear-gradient(#f4ad59 0%, #f1731f 100%);
-  background-image: linear-gradient(#f4ad59 0%, #f1731f 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff1731f', endColorstr='#fff4ad59', GradientType=0);
-  border: 1px solid #B68B4C;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-orange:active,
-button.btn-orange.clicked {
-  color: white;
-  border: 1px solid #666;
-  background-image: -webkit-linear-gradient(#b98747 0%, #b98747 100%);
-  background-image: -moz-linear-gradient(#b98747 0%, #b98747 100%);
-  background-image: -ms-linear-gradient(#b98747 0%, #b98747 100%);
-  background-image: -o-linear-gradient(#b98747 0%, #b98747 100%);
-  background-image: linear-gradient(#b98747 0%, #b98747 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffb98747', endColorstr='#ffb98747', GradientType=0);
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-red {
-  color: white;
-  background-image: -webkit-linear-gradient(#ff6e70 0%, #c72d2d 100%);
-  background-image: -moz-linear-gradient(#ff6e70 0%, #c72d2d 100%);
-  background-image: -ms-linear-gradient(#ff6e70 0%, #c72d2d 100%);
-  background-image: -o-linear-gradient(#ff6e70 0%, #c72d2d 100%);
-  background-image: linear-gradient(#ff6e70 0%, #c72d2d 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffc72d2d', endColorstr='#ffff6e70', GradientType=0);
-  border: 1px solid #BB3C3E;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-red:hover {
-  color: white;
-  background-image: -webkit-linear-gradient(#ee696c 0%, #ae2527 100%);
-  background-image: -moz-linear-gradient(#ee696c 0%, #ae2527 100%);
-  background-image: -ms-linear-gradient(#ee696c 0%, #ae2527 100%);
-  background-image: -o-linear-gradient(#ee696c 0%, #ae2527 100%);
-  background-image: linear-gradient(#ee696c 0%, #ae2527 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffae2527', endColorstr='#ffee696c', GradientType=0);
-  border: 1px solid #BB3C3E;
-  text-shadow: 1px 1px 1px #777777;
-}
-button.btn-red:active,
-button.btn-red.clicked {
-  color: white;
-  border: 1px solid #861C1E;
-  background-image: -webkit-linear-gradient(#9c2123 0%, #9c2123 100%);
-  background-image: -moz-linear-gradient(#9c2123 0%, #9c2123 100%);
-  background-image: -ms-linear-gradient(#9c2123 0%, #9c2123 100%);
-  background-image: -o-linear-gradient(#9c2123 0%, #9c2123 100%);
-  background-image: linear-gradient(#9c2123 0%, #9c2123 100%);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff9c2123', endColorstr='#ff9c2123', GradientType=0);
-  text-shadow: 1px 1px 1px #777777;
-}
-/*************************************************
-* ---- Forms ----
-*/
-.w2ui-form {
-  position: relative;
-  color: #000000;
-  background-color: #f5f6f7;
-  border: 1px solid #c0c0c0;
-  border-radius: 3px;
-  padding: 0px;
-  overflow: hidden !important;
-}
-.w2ui-form > div {
-  position: absolute;
-  overflow: hidden;
-}
-.w2ui-form .w2ui-form-header {
-  position: absolute;
-  left: 0;
-  right: 0;
-  border-bottom: 1px solid #99bbe8 !important;
-  overflow: hidden;
-  color: #444444;
-  font-size: 13px;
-  text-align: center;
-  padding: 8px;
-  background-image: -webkit-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -moz-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -ms-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -o-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: linear-gradient(#dae6f3, #c2d5ed);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffdae6f3', endColorstr='#ffc2d5ed', GradientType=0);
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-.w2ui-form .w2ui-form-toolbar {
-  position: absolute;
-  left: 0px;
-  right: 0px;
-  margin: 0px;
-  padding: 6px 3px;
-  border-bottom: 1px solid #d5d8d8;
-}
-.w2ui-form .w2ui-form-tabs {
-  margin: 0px;
-  padding: 0px;
-}
-.w2ui-form .w2ui-tabs {
-  position: absolute;
-  left: 0;
-  right: 0;
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-  padding-top: 5px !important;
-  background-color: #fafafa;
-}
-.w2ui-form .w2ui-tabs .w2ui-tab.active {
-  background-color: #f5f6f7;
-}
-.w2ui-form .w2ui-page {
-  position: absolute;
-  left: 0;
-  right: 0;
-  overflow: auto;
-  padding: 10px;
-  border-left: 1px solid inherit;
-  border-right: 1px solid inherit;
-  background-color: inherit;
-  border-radius: 3px;
-}
-.w2ui-form .w2ui-buttons {
-  position: absolute;
-  left: 0;
-  right: 0;
-  bottom: 0;
-  text-align: center;
-  border-top: 1px solid #d5d8d8;
-  border-bottom: 0px solid #d5d8d8;
-  background-color: #fafafa;
-  padding: 15px 0px !important;
-  border-bottom-left-radius: 3px;
-  border-bottom-right-radius: 3px;
-}
-.w2ui-form .w2ui-buttons input[type="button"],
-.w2ui-form .w2ui-buttons button {
-  min-width: 80px;
-  margin-right: 5px;
-}
-.w2ui-form input[type=checkbox],
-.w2ui-form input[type=radio] {
-  margin-top: 4px;
-  margin-bottom: 4px;
-}
-.w2ui-form input[type=checkbox].w2ui-toggle {
-  margin: 0px;
-}
-.w2ui-group-title {
-  padding: 5px 2px;
-  color: #8D96A2;
-  text-shadow: 1px 1px 2px #fdfdfd;
-  font-size: 120%;
-}
-.w2ui-group {
-  background-color: #ebecef;
-  margin: 5px 0px 10px 0px;
-  padding: 10px 5px;
-  border-top: 1px solid #cedcea;
-  border-bottom: 1px solid #cedcea;
-}
-.w2ui-field > label {
-  display: block;
-  float: left;
-  margin-top: 7px;
-  margin-bottom: 3px;
-  width: 120px;
-  padding: 0px;
-  white-space: nowrap;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  text-align: right;
-  min-height: 20px;
-  color: #666;
-}
-.w2ui-field > div {
-  /* do not include width */
-  margin-bottom: 3px;
-  margin-left: 128px;
-  padding: 3px;
-  min-height: 28px;
-  float: none;
-}
-.w2ui-field.w2ui-required > div {
-  position: relative;
-}
-.w2ui-field.w2ui-required > div::before {
-  content: '*';
-  position: absolute;
-  margin-top: 5px;
-  margin-left: -9px;
-  color: #ff0000;
-}
-.w2ui-field.w2ui-span1 > label {
-  width: 20px;
-}
-.w2ui-field.w2ui-span1 > div {
-  margin-left: 28px;
-}
-.w2ui-field.w2ui-span2 > label {
-  width: 40px;
-}
-.w2ui-field.w2ui-span2 > div {
-  margin-left: 48px;
-}
-.w2ui-field.w2ui-span3 > label {
-  width: 60px;
-}
-.w2ui-field.w2ui-span3 > div {
-  margin-left: 68px;
-}
-.w2ui-field.w2ui-span4 > label {
-  width: 80px;
-}
-.w2ui-field.w2ui-span4 > div {
-  margin-left: 88px;
-}
-.w2ui-field.w2ui-span5 > label {
-  width: 100px;
-}
-.w2ui-field.w2ui-span5 > div {
-  margin-left: 108px;
-}
-.w2ui-field.w2ui-span6 > label {
-  width: 120px;
-}
-.w2ui-field.w2ui-span6 > div {
-  margin-left: 128px;
-}
-.w2ui-field.w2ui-span7 > label {
-  width: 140px;
-}
-.w2ui-field.w2ui-span7 > div {
-  margin-left: 148px;
-}
-.w2ui-field.w2ui-span8 > label {
-  width: 160px;
-}
-.w2ui-field.w2ui-span8 > div {
-  margin-left: 168px;
-}
-.w2ui-field.w2ui-span9 > label {
-  width: 180px;
-}
-.w2ui-field.w2ui-span9 > div {
-  margin-left: 188px;
-}
-.w2ui-field.w2ui-span10 > label {
-  width: 200px;
-}
-.w2ui-field.w2ui-span10 > div {
-  margin-left: 208px;
-}
-.w2ui-error {
-  border: 1px solid #ffa8a8 !important;
-  background-color: #fff4eb !important;
-}
-.w2field {
-  padding: 3px;
-  border-radius: 3px;
-  border: 1px solid silver;
-}
-.w2ui-field-helper {
-  position: absolute;
-  display: inline-block;
-  line-height: 100%;
-  /* pointer-events: none; - do not use as IE does not support it */
-  user-select: none;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  -o-user-select: none;
-}
-.w2ui-field-helper .w2ui-field-up {
-  position: absolute;
-  top: 0px;
-  padding: 2px 3px;
-}
-.w2ui-field-helper .w2ui-field-down {
-  position: absolute;
-  bottom: 0px;
-  padding: 2px 3px;
-}
-.w2ui-field-helper .arrow-up:hover {
-  border-bottom-color: #81C6FF;
-}
-.w2ui-field-helper .arrow-down:hover {
-  border-top-color: #81C6FF;
-}
-/*
-*    ARROWS 
-*/
-.arrow-up {
-  background: none;
-  width: 0;
-  height: 0;
-  border-left: 4px solid transparent;
-  /* left arrow slant */
-  border-right: 4px solid transparent;
-  /* right arrow slant */
-  border-bottom: 5px solid #777;
-  /* bottom, add background color here */
-  font-size: 0;
-  line-height: 0;
-}
-.arrow-down {
-  background: none;
-  width: 0;
-  height: 0;
-  border-left: 4px solid transparent;
-  border-right: 4px solid transparent;
-  border-top: 5px solid #777;
-  font-size: 0;
-  line-height: 0;
-}
-.arrow-left {
-  background: none;
-  width: 0;
-  height: 0;
-  border-bottom: 4px solid transparent;
-  /* left arrow slant */
-  border-top: 4px solid transparent;
-  /* right arrow slant */
-  border-right: 5px solid #777;
-  /* bottom, add background color here */
-  font-size: 0;
-  line-height: 0;
-}
-.arrow-right {
-  background: none;
-  width: 0;
-  height: 0;
-  border-bottom: 4px solid transparent;
-  /* left arrow slant */
-  border-top: 4px solid transparent;
-  /* right arrow slant */
-  border-left: 5px solid #777;
-  /* bottom, add background color here */
-  font-size: 0;
-  line-height: 0;
-}
-/*
-*    COLOR overlay
-*/
-.w2ui-color {
-  padding: 5px;
-  padding-top: 8px;
-  background-color: white;
-  border-radius: 3px;
-}
-.w2ui-color > table {
-  table-layout: fixed;
-  width: 160px;
-}
-.w2ui-color > table td {
-  width: 20px;
-  height: 20px;
-  text-align: center;
-}
-.w2ui-color > table td div {
-  cursor: pointer;
-  display: inline-block;
-  width: 16px;
-  height: 17px;
-  padding: 1px 4px;
-  border: 1px solid transparent;
-  color: white;
-  text-shadow: 0px 0px 2px #000;
-}
-.w2ui-color > table td div:hover {
-  outline: 1px solid #666;
-  border: 1px solid #fff;
-}
-/* 
-*    DATE overlay
-*/
-.w2ui-calendar {
-  margin: 0px;
-  padding: 1px;
-  line-height: 108%;
-}
-.w2ui-calendar .w2ui-calendar-title {
-  margin: 0px -1px;
-  padding: 7px 2px;
-  background-image: -webkit-linear-gradient(#f6f6f6, #d9d9d9);
-  background-image: -moz-linear-gradient(#f6f6f6, #d9d9d9);
-  background-image: -ms-linear-gradient(#f6f6f6, #d9d9d9);
-  background-image: -o-linear-gradient(#f6f6f6, #d9d9d9);
-  background-image: linear-gradient(#f6f6f6, #d9d9d9);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffd9d9d9', GradientType=0);
-  border-bottom: 1px solid #bbbbbb;
-  color: #555555;
-  text-align: center;
-  text-shadow: 1px 1px 1px #eeeeee;
-  cursor: pointer;
-}
-.w2ui-calendar .w2ui-calendar-jump {
-  position: absolute;
-  top: 27px;
-  left: 0px;
-  right: 0px;
-  bottom: 0px;
-  background-color: #FaFaFa;
-}
-.w2ui-calendar .w2ui-calendar-jump > :first-child {
-  position: absolute;
-  top: 0px;
-  left: 0px;
-  bottom: 0px;
-  width: 110px;
-  overflow: hidden;
-  padding-top: 5px;
-  border-right: 1px solid #c0c0c0;
-}
-.w2ui-calendar .w2ui-calendar-jump > :last-child {
-  position: absolute;
-  top: 0px;
-  right: 0px;
-  bottom: 0px;
-  width: 88px;
-  overflow-x: hidden;
-  overflow-y: auto;
-  padding-top: 5px;
-  text-align: center;
-}
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-month,
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-year {
-  display: inline-block;
-  padding: 5px 0px;
-  text-align: center;
-  float: left;
-  margin: 2px;
-  width: 50px;
-  cursor: default;
-  border: 1px solid transparent;
-  border-radius: 2px;
-}
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-year {
-  float: none;
-  width: 95%;
-}
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-month:hover,
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-year:hover {
-  border: 1px solid #cccccc;
-  color: #000000;
-  background-color: #efefef;
-}
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-month.selected,
-.w2ui-calendar .w2ui-calendar-jump .w2ui-jump-year.selected {
-  border: 1px solid #cccccc;
-  color: #000000;
-  background-color: #dadada;
-}
-.w2ui-calendar .w2ui-calendar-previous,
-.w2ui-calendar .w2ui-calendar-next {
-  width: 24px;
-  height: 20px;
-  color: #666666;
-  border: 1px solid transparent;
-  border-radius: 3px;
-  padding: 2px 3px 1px 2px;
-  margin: -4px 0px 0px 0px;
-  cursor: default;
-}
-.w2ui-calendar .w2ui-calendar-previous:hover,
-.w2ui-calendar .w2ui-calendar-next:hover {
-  border: 1px solid #c0c0c0;
-  background-color: #efefef;
-}
-.w2ui-calendar .w2ui-calendar-previous > div,
-.w2ui-calendar .w2ui-calendar-next > div {
-  position: absolute;
-  border-left: 4px solid #888;
-  border-top: 4px solid #888;
-  border-right: 4px solid transparent;
-  border-bottom: 4px solid transparent;
-  width: 0px;
-  height: 0px;
-  padding: 0px;
-  margin: 3px 0px 0px 0px;
-}
-.w2ui-calendar .w2ui-calendar-previous {
-  float: left;
-}
-.w2ui-calendar .w2ui-calendar-previous > div {
-  -webkit-transform: rotate(-45deg);
-  -moz-transform: rotate(-45deg);
-  -ms-transform: rotate(-45deg);
-  -o-transform: rotate(-45deg);
-  transform: rotate(-45deg);
-  margin-left: 6px;
-}
-.w2ui-calendar .w2ui-calendar-next {
-  float: right;
-}
-.w2ui-calendar .w2ui-calendar-next > div {
-  -webkit-transform: rotate(135deg);
-  -moz-transform: rotate(135deg);
-  -ms-transform: rotate(135deg);
-  -o-transform: rotate(135deg);
-  transform: rotate(135deg);
-  margin-left: 2px;
-  margin-right: 2px;
-}
-.w2ui-calendar table.w2ui-calendar-days {
-  padding: 0px;
-}
-.w2ui-calendar table.w2ui-calendar-days td {
-  border: 1px solid #ffffff;
-  color: #000000;
-  background-color: #f9f9f9;
-  padding: 6px;
-  cursor: default;
-  text-align: right;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-saturday,
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-sunday {
-  border: 1px solid #ffffff;
-  color: #c8493b;
-  background-color: #f9f9f9;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-saturday:hover,
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-sunday:hover {
-  border: 1px solid #cccccc;
-  color: #000000;
-  background-color: #e9e9e9;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-saturday.w2ui-blocked,
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-sunday.w2ui-blocked {
-  text-decoration: line-through;
-  border: 1px solid #ffffff;
-  color: #cccccc;
-  background-color: #ffffff;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-today {
-  border: 1px solid #8cb067;
-  color: #000000;
-  background-color: #e2f7cd;
-}
-.w2ui-calendar table.w2ui-calendar-days td:hover {
-  border: 1px solid #cccccc;
-  color: #000000;
-  background-color: #e9e9e9;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-blocked {
-  text-decoration: line-through;
-  border: 1px solid #ffffff;
-  color: #cccccc;
-  background-color: #ffffff;
-}
-.w2ui-calendar table.w2ui-calendar-days td.w2ui-day-empty {
-  border: 1px solid #ffffff;
-  background-color: #fdfdfd;
-}
-.w2ui-calendar table.w2ui-calendar-days tr.w2ui-day-title td {
-  border: 1px solid #ffffff;
-  color: #808080;
-  background-color: #ffffff;
-  text-align: center;
-  padding: 6px;
-}
-/*
-*    Time
-*/
-.w2ui-calendar-time {
-  padding: 5px;
-  cursor: default;
-}
-.w2ui-calendar-time td div {
-  padding: 7px 10px;
-  text-align: center;
-  border: 1px solid transparent;
-  white-space: nowrap;
-}
-.w2ui-calendar-time td:nth-child(even) {
-  background-color: #f6f6f6;
-}
-.w2ui-calendar-time td div:hover {
-  border: 1px solid #cccccc;
-  color: #000000;
-  background-color: #e9e9e9;
-}
-.w2ui-calendar-time td div.w2ui-blocked {
-  text-decoration: line-through;
-  border: 1px solid #ffffff;
-  color: #cccccc;
-  background-color: #ffffff;
-}
-.w2ui-select {
-  cursor: default;
-  color: black !important;
-  background-image: -webkit-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -moz-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -ms-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -o-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-}
-/*
-*    ENUM items
-*/
-.w2ui-list {
-  color: inherit;
-  position: absolute;
-  padding: 0px;
-  margin: 0px;
-  min-height: 25px;
-  overflow: auto;
-  border: 1px solid #c0c0c0;
-  border-radius: 3px;
-  font-size: 6px;
-  line-height: 100%;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-  background-color: #ffffff;
-}
-.w2ui-list input[type=text] {
-  -webkit-box-shadow: none;
-  -moz-box-shadow: none;
-  -ms-box-shadow: none;
-  -o-box-shadow: none;
-  box-shadow: none;
-}
-.w2ui-list ul {
-  list-style-type: none;
-  background-color: black;
-  margin: 0px;
-  padding: 0px;
-}
-.w2ui-list ul li {
-  float: left;
-  margin: 2px 1px 0px 2px;
-  border-radius: 3px;
-  width: auto;
-  padding: 3px 10px 1px 7px;
-  border: 1px solid #88b0d6;
-  background-color: #eff3f5;
-  white-space: nowrap;
-  cursor: default;
-  font-family: verdana;
-  font-size: 11px;
-  line-height: 100%;
-  height: 20px;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-list ul li:hover {
-  background-color: #d0dbe1;
-}
-.w2ui-list ul li:last-child {
-  border-radius: 0px;
-  border: 1px solid transparent;
-  background-color: transparent;
-}
-.w2ui-list ul li:last-child input {
-  padding: 1px;
-  padding-top: 0px;
-  margin: 0px;
-  border: 0px;
-  outline: none;
-  height: auto;
-  line-height: 100%;
-  font-size: inherit;
-  font-family: inherit;
-  background-color: transparent;
-}
-.w2ui-list ul li .w2ui-list-remove {
-  float: right;
-  width: 15px;
-  height: 14px;
-  margin: -1px -9px 0px 3px;
-  border-radius: 15px;
-}
-.w2ui-list ul li .w2ui-list-remove:hover {
-  background-color: #D77F7F;
-  color: white;
-}
-.w2ui-list ul li .w2ui-list-remove:before {
-  position: relative;
-  top: 0px;
-  padding: 0px;
-  margin: 0px;
-  left: 5px;
-  color: inherit;
-  opacity: 0.7;
-  text-shadow: inherit;
-  font-size: inherit;
-  font-variant: small-caps;
-  content: 'x';
-  line-height: 100%;
-}
-.w2ui-list ul li > span.file-size {
-  pointer-events: none;
-  color: #777;
-}
-.w2ui-list .w2ui-enum-placeholder {
-  display: inline;
-  position: absolute;
-  pointer-events: none;
-  color: #999;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-list.w2ui-file-dragover {
-  background-color: #E4FFDA;
-  border: 1px solid #93E07D;
-}
-/*************************************************
-* ---- Layout ----
-*/
-.w2ui-layout {
-  overflow: hidden !important;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-layout * {
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-layout > div {
-  position: absolute;
-  overflow: hidden;
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  outline: 0px;
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-layout > div .w2ui-panel {
-  display: none;
-  position: absolute;
-  z-index: 120;
-}
-.w2ui-layout > div .w2ui-panel .w2ui-panel-title {
-  padding: 5px;
-  background-image: -webkit-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -moz-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -ms-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -o-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: linear-gradient(#dae6f3, #c2d5ed);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffdae6f3', endColorstr='#ffc2d5ed', GradientType=0);
-  border: 1px solid #b9cee9;
-  border-bottom: 1px solid #99bbe8;
-}
-.w2ui-layout > div .w2ui-panel .w2ui-panel-tabs {
-  position: absolute;
-  left: 0px;
-  top: 0px;
-  right: 0px;
-  z-index: 2;
-  display: none;
-  overflow: hidden;
-  background-color: #fafafa;
-  padding: 4px 0px;
-}
-.w2ui-layout > div .w2ui-panel .w2ui-panel-tabs > .w2ui-tab.active {
-  background-color: #f5f6f7;
-}
-.w2ui-layout > div .w2ui-panel .w2ui-panel-toolbar {
-  position: absolute;
-  left: 0px;
-  top: 0px;
-  right: 0px;
-  z-index: 2;
-  display: none;
-  overflow: hidden;
-  background-color: #fafafa;
-  border-bottom: 1px solid silver;
-  padding: 4px;
-}
-.w2ui-layout > div .w2ui-panel .w2ui-panel-content {
-  position: absolute;
-  left: 0px;
-  top: 0px;
-  right: 0px;
-  bottom: 0px;
-  z-index: 1;
-  color: inherit;
-  background-color: #f5f6f7;
-}
-.w2ui-layout > div .w2ui-resizer {
-  display: none;
-  position: absolute;
-  z-index: 121;
-  background-color: transparent;
-}
-.w2ui-layout > div .w2ui-resizer:hover,
-.w2ui-layout > div .w2ui-resizer.active {
-  background-color: #d7e4f2;
-}
-/*************************************************
-* ---- Grid ----
-*/
-.w2ui-grid {
-  position: relative;
-  border: 1px solid #c0c0c0;
-  border-radius: 2px;
-  overflow: hidden !important;
-}
-.w2ui-grid > div {
-  position: absolute;
-  overflow: hidden;
-}
-.w2ui-grid .w2ui-grid-header {
-  position: absolute;
-  border-bottom: 1px solid #99bbe8 !important;
-  height: 28px;
-  overflow: hidden;
-  color: #444444;
-  font-size: 13px;
-  text-align: center;
-  padding: 7px;
-  background-image: -webkit-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -moz-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -ms-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: -o-linear-gradient(#dae6f3, #c2d5ed);
-  background-image: linear-gradient(#dae6f3, #c2d5ed);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffdae6f3', endColorstr='#ffc2d5ed', GradientType=0);
-  border-top-left-radius: 2px;
-  border-top-right-radius: 2px;
-}
-.w2ui-grid .w2ui-grid-toolbar {
-  position: absolute;
-  border-bottom: 1px solid #c0c0c0;
-  background-color: #eaeaea;
-  height: 38px;
-  padding: 7px 3px 4px 3px;
-  margin: 0px;
-  box-shadow: 0px 1px 2px #dddddd;
-}
-.w2ui-grid .w2ui-toolbar-search {
-  width: 160px;
-  margin-right: 3px;
-}
-.w2ui-grid .w2ui-toolbar-search .w2ui-search-all {
-  outline: none !important;
-  width: 160px;
-  border-radius: 10px;
-  line-height: normal;
-  height: 22px;
-  border: 1px solid #b9b9b9;
-  color: #000000;
-  background-color: #ffffff;
-  padding: 3px 18px 3px 23px;
-  margin: 0px;
-}
-.w2ui-grid .w2ui-toolbar-search .w2ui-search-down {
-  position: absolute;
-  margin-top: -7px;
-  margin-left: 6px;
-}
-.w2ui-grid .w2ui-toolbar-search .w2ui-search-clear {
-  position: absolute;
-  width: 16px;
-  height: 16px;
-  margin-top: -8px;
-  margin-left: -20px;
-  border-radius: 15px;
-  cursor: default;
-}
-.w2ui-grid .w2ui-toolbar-search .w2ui-search-clear:hover {
-  background-color: #D77F7F;
-  color: white;
-}
-.w2ui-grid .w2ui-toolbar-search .w2ui-search-clear:before {
-  position: relative;
-  top: 1px;
-  left: 5px;
-  opacity: 0.6;
-  color: inherit;
-  text-shadow: inherit;
-  content: 'x';
-  cursor: default;
-}
-.w2ui-grid .w2ui-grid-body {
-  position: absolute;
-  overflow: hidden;
-  padding: 0px;
-  background-color: #ffffff;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  -o-user-select: none;
-  user-select: none;
-}
-.w2ui-grid .w2ui-grid-body input,
-.w2ui-grid .w2ui-grid-body select,
-.w2ui-grid .w2ui-grid-body textarea {
-  user-select: text;
-  -webkit-user-select: text;
-  -moz-user-select: text;
-  -ms-user-select: text;
-  -o-user-select: text;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-columns {
-  overflow: hidden;
-  position: absolute;
-  left: 0px;
-  top: 0px;
-  right: 0px;
-  box-shadow: 0px 1px 4px #dddddd;
-  height: auto;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-columns table {
-  height: auto;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-columns .w2ui-resizer {
-  position: absolute;
-  z-index: 1000;
-  display: block;
-  background-image: none;
-  background-color: rgba(0, 0, 0, 0);
-  /* needed for IE */
-  padding: 0px;
-  margin: 0px;
-  width: 6px;
-  height: 12px;
-  cursor: col-resize;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records {
-  position: absolute;
-  left: 0px;
-  right: 0px;
-  top: 0px;
-  bottom: 0px;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-odd {
-  color: inherit;
-  background-color: #ffffff;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-odd:hover {
-  color: inherit;
-  background-color: #e6f0ff;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-odd.w2ui-empty-record:hover {
-  background-color: #ffffff;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-even {
-  color: inherit;
-  background-color: #f3f6fa;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-even:hover {
-  color: inherit;
-  background-color: #e6f0ff;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-even.w2ui-empty-record:hover {
-  background-color: #f3f6fa;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr.w2ui-selected,
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records table tr td.w2ui-selected {
-  color: #000000 !important;
-  background-color: #b6d5ff !important;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-expanded {
-  background-color: #CCDCF0 !important;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-expanded1 {
-  height: 0px;
-  border-bottom: 1px solid #b2bac0;
-  background-color: #CCDCF0;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-expanded1 > div {
-  height: 100%;
-  margin: 0px;
-  padding: 0px;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-expanded2 {
-  height: 0px;
-  border-radius: 0px;
-  border-bottom: 1px solid #b2bac0;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-expanded2 > div {
-  height: 0px;
-  border: 0px;
-  transition: height .3s, opacity .3s;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-load-more {
-  border-top: 1px solid #d6d5d7;
-  cursor: pointer;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-load-more > div {
-  text-align: center;
-  color: #777777;
-  background-color: rgba(233, 237, 243, 0.5);
-  padding: 10px 0px 15px 0px;
-  border-top: 1px solid #ffffff;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-grid-records .w2ui-load-more > div:hover {
-  color: inherit;
-  background-color: #e6f0ff;
-}
-.w2ui-grid .w2ui-grid-body table {
-  border-spacing: 0px;
-  border-collapse: collapse;
-  table-layout: fixed;
-  width: 1px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head {
-  margin: 0px;
-  padding: 0px;
-  border-right: 1px solid #c5c5c5;
-  border-bottom: 1px solid #c5c5c5;
-  color: #000000;
-  background-image: -webkit-linear-gradient(#f9f9f9, #e4e4e4);
-  background-image: -moz-linear-gradient(#f9f9f9, #e4e4e4);
-  background-image: -ms-linear-gradient(#f9f9f9, #e4e4e4);
-  background-image: -o-linear-gradient(#f9f9f9, #e4e4e4);
-  background-image: linear-gradient(#f9f9f9, #e4e4e4);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#ffe4e4e4', GradientType=0);
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head > div {
-  padding: 7px 3px;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  position: relative;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head.w2ui-col-intersection {
-  border-right-color: #72b2ff;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head.w2ui-reorder-cols-head:hover {
-  cursor: move;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head .col-intersection-marker {
-  padding: 0;
-  position: absolute;
-  height: 100%;
-  top: 0;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head .col-intersection-marker.left {
-  left: 0;
-  margin-left: -5px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head .col-intersection-marker.right {
-  right: 0;
-  margin-right: -5px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head .col-intersection-marker .top-marker {
-  position: absolute;
-  top: 0;
-  height: 0;
-  width: 0;
-  border-top: 5px solid #72b2ff;
-  border-left: 5px solid transparent;
-  border-right: 5px solid transparent;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-head .col-intersection-marker .bottom-marker {
-  position: absolute;
-  bottom: 0;
-  height: 0;
-  width: 0;
-  border-bottom: 5px solid #72b2ff;
-  border-left: 5px solid transparent;
-  border-right: 5px solid transparent;
-}
-.w2ui-grid .w2ui-grid-body table td {
-  border-right: 1px solid #d6d5d7;
-  border-bottom: 0px solid #d6d5d7;
-  cursor: default;
-  overflow: hidden;
-}
-.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data {
-  margin: 0px;
-  padding: 0px;
-}
-.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data > div {
-  padding: 3px 3px 3px 3px;
-  overflow: hidden;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-}
-.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data > div.flexible-record {
-  height: auto;
-  overflow: visible;
-  white-space: normal;
-}
-.w2ui-grid .w2ui-grid-body table td:last-child {
-  border-right: 0px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-number {
-  width: 34px;
-  color: #777777;
-  background-color: rgba(233, 237, 243, 0.5);
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-number div {
-  padding: 0px 7px 0px 3px;
-  text-align: right;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-select {
-  width: 26px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-select div {
-  padding: 0px 0px;
-  text-align: center;
-  overflow: hidden;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-select div input[type=checkbox] {
-  margin-top: 2px;
-  position: relative;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-expand {
-  width: 26px;
-}
-.w2ui-grid .w2ui-grid-body table .w2ui-col-expand div {
-  padding: 0px 0px;
-  text-align: center;
-  font-weight: bold;
-}
-.w2ui-grid .w2ui-grid-body div.w2ui-col-header {
-  height: auto !important;
-  width: 100%;
-  overflow: hidden;
-  padding-right: 10px !important;
-}
-.w2ui-grid .w2ui-grid-body div.w2ui-col-header > div.w2ui-sort-up {
-  border: 4px solid transparent;
-  border-bottom: 5px solid #8D99A7;
-  margin-top: -2px;
-  margin-right: -7px;
-  float: right;
-}
-.w2ui-grid .w2ui-grid-body div.w2ui-col-header > div.w2ui-sort-down {
-  border: 4px solid transparent;
-  border-top: 5px solid #8D99A7;
-  margin-top: 2px;
-  margin-right: -7px;
-  float: right;
-}
-.w2ui-grid .w2ui-grid-body .w2ui-col-group {
-  text-align: center;
-}
-.w2ui-grid .w2ui-changed {
-  background: url(data:image/gif;base64,R0lGODlhCgAKAJEAALAABf///wAAAAAAACH5BAEAAAIALAAAAAAKAAoAAAIPlI8Hy8mbxIsSUnup3rQAADs=) no-repeat top right;
-}
-.w2ui-grid .w2ui-editable {
-  overflow: hidden;
-  height: 100% !important;
-  margin: 0px !important;
-  padding: 0px !important;
-}
-.w2ui-grid .w2ui-editable input {
-  border: 0px;
-  border-radius: 0px;
-  margin: 0px;
-  padding: 4px 3px;
-  width: 100%;
-  height: 100%;
-}
-.w2ui-grid .w2ui-editable input.w2ui-select {
-  outline: none !important;
-  background: #fff;
-}
-.w2ui-grid .w2ui-grid-summary {
-  position: absolute;
-  box-shadow: 0px -1px 4px #aaaaaa;
-}
-.w2ui-grid .w2ui-grid-summary table {
-  color: inherit;
-}
-.w2ui-grid .w2ui-grid-summary table .w2ui-odd {
-  background-color: #eef5eb;
-}
-.w2ui-grid .w2ui-grid-summary table .w2ui-even {
-  background-color: #f8fff5;
-}
-.w2ui-grid .w2ui-grid-footer {
-  position: absolute;
-  margin: 0px;
-  padding: 0px;
-  text-align: center;
-  height: 24px;
-  overflow: hidden;
-  user-select: text;
-  -webkit-user-select: text;
-  -moz-user-select: text;
-  -ms-user-select: text;
-  -o-user-select: text;
-  box-shadow: 0px -1px 4px #eeeeee;
-  color: #444444;
-  background-color: #f8f8f8;
-  border-top: 1px solid #dddddd;
-  border-bottom-left-radius: 2px;
-  border-bottom-right-radius: 2px;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-left {
-  float: left;
-  padding-top: 5px;
-  padding-left: 5px;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-right {
-  float: right;
-  padding-top: 5px;
-  padding-right: 5px;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-center {
-  padding: 2px;
-  text-align: center;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-center .w2ui-footer-nav {
-  width: 110px;
-  margin: 0 auto;
-  padding: 0px;
-  text-align: center;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-center .w2ui-footer-nav input[type=text] {
-  padding: 1px 2px 2px 2px;
-  border-radius: 3px;
-  width: 40px;
-  text-align: center;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-center .w2ui-footer-nav a.w2ui-footer-btn {
-  display: inline-block;
-  border-radius: 3px;
-  cursor: pointer;
-  font-size: 11px;
-  line-height: 16px;
-  padding: 1px 5px;
-  width: 30px;
-  height: 18px;
-  margin-top: -1px;
-  color: #000000;
-  background-color: transparent;
-}
-.w2ui-grid .w2ui-grid-footer .w2ui-footer-center .w2ui-footer-nav a.w2ui-footer-btn:hover {
-  color: #000000;
-  background-color: #aec8ff;
-}
-/* SpeadSheet */
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr.w2ui-odd,
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr.w2ui-even,
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr.w2ui-odd:hover,
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr.w2ui-even:hover {
-  background-color: inherit;
-}
-.w2ui-ss .w2ui-grid-records table td {
-  border-right-width: 1px;
-  border-bottom: 1px solid #efefef;
-}
-.w2ui-ss .w2ui-grid-records table tr:first-child td {
-  border-bottom: 0px;
-}
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr.w2ui-selected,
-.w2ui-ss .w2ui-grid-body .w2ui-grid-records table tr td.w2ui-selected {
-  background-color: #EEF4FE !important;
-}
-.w2ui-ss .w2ui-changed {
-  background: inherit;
-}
-.w2ui-ss .w2ui-grid-body .w2ui-selection {
-  position: absolute;
-  border: 2px solid #6299DA;
-  /* #457FC2; */
-  pointer-events: none;
-}
-.w2ui-ss .w2ui-grid-body .w2ui-selection .w2ui-selection-resizer {
-  cursor: crosshair;
-  position: absolute;
-  bottom: 0px;
-  right: 0px;
-  width: 6px;
-  height: 6px;
-  margin-right: -3px;
-  margin-bottom: -3px;
-  background-color: #457FC2;
-  border: 0.5px solid #fff;
-  outline: 1px solid white;
-  pointer-events: auto;
-}
-.w2ui-overlay .w2ui-select-field {
-  padding: 8px 5px;
-  cursor: default;
-}
-.w2ui-overlay .w2ui-select-field table {
-  font-size: 11px;
-  font-family: Verdana, Arial, sans-serif;
-  border-spacing: 0px;
-  border-collapse: border-collapse;
-}
-.w2ui-overlay .w2ui-select-field table tr:hover {
-  background-color: #b6d5ff;
-}
-.w2ui-overlay .w2ui-select-field table td:nth-child(1) {
-  padding: 3px 3px 3px 6px;
-}
-.w2ui-overlay .w2ui-select-field table td:nth-child(1) input {
-  margin: 3px 2px 2px 2px;
-}
-.w2ui-overlay .w2ui-select-field table td:nth-child(2) {
-  padding: 3px 15px 3px 3px;
-}
-.w2ui-overlay .w2ui-col-on-off {
-  padding: 4px 0px;
-}
-.w2ui-overlay .w2ui-col-on-off table {
-  border-spacing: 0px;
-  border-collapse: border-collapse;
-}
-.w2ui-overlay .w2ui-col-on-off table tr:hover {
-  background-color: #b6d5ff;
-}
-.w2ui-overlay .w2ui-col-on-off table td input[type=checkbox] {
-  margin: 3px 2px 2px 2px;
-}
-.w2ui-overlay .w2ui-col-on-off table td label {
-  display: block;
-  padding: 3px 0px;
-  padding-right: 10px;
-}
-.w2ui-overlay .w2ui-col-on-off table td:first-child {
-  padding: 4px 0px 4px 6px;
-}
-.w2ui-overlay .w2ui-col-on-off table td:last-child {
-  padding: 4px 6px 4px 0px;
-}
-.w2ui-overlay .w2ui-grid-searches {
-  text-align: left;
-  padding: 0px;
-  border-top: 0px;
-  background-color: #f7f6f0;
-}
-.w2ui-overlay .w2ui-grid-searches table {
-  padding: 4px;
-  padding-top: 12px;
-  border-collapse: border-collapse;
-}
-.w2ui-overlay .w2ui-grid-searches table td {
-  padding: 4px;
-  /* for IE */
-}
-.w2ui-overlay .w2ui-grid-searches table td.close-btn {
-  width: 20px;
-  padding-right: 20px;
-}
-.w2ui-overlay .w2ui-grid-searches table td.close-btn button {
-  min-width: 24px;
-  height: 24px;
-  padding-top: 6px !important;
-}
-.w2ui-overlay .w2ui-grid-searches table td.caption {
-  text-align: right;
-  padding-right: 5px;
-  border-right: 1px solid #e8e8e3;
-}
-.w2ui-overlay .w2ui-grid-searches table td.operator {
-  text-align: left;
-  padding: 0px 10px;
-  padding-right: 5px;
-  border-right: 1px solid #e8e8e3;
-}
-.w2ui-overlay .w2ui-grid-searches table td.operator select {
-  width: 100%;
-  color: black;
-  padding: 0px 15px 0px 5px;
-  -webkit-appearance: none;
-  -moz-appearance: none;
-  -ms-appearance: none;
-  -o-appearance: none;
-  background-image: -webkit-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -moz-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -ms-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: -o-linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-  background-image: linear-gradient(top,#ffffff 20%,#f6f6f6 50%,#eeeeee 52%,#f4f4f4 100%);
-}
-.w2ui-overlay .w2ui-grid-searches table td.operator select::-ms-expand {
-  display: none;
-}
-.w2ui-overlay .w2ui-grid-searches table td.value {
-  padding-right: 5px;
-  padding-left: 5px;
-}
-.w2ui-overlay .w2ui-grid-searches table td.value input[type=text] {
-  border-radius: 3px;
-  padding: 3px;
-  margin-right: 3px;
-  height: 23px;
-}
-.w2ui-overlay .w2ui-grid-searches table td.value select {
-  padding: 3px;
-  margin-right: 3px;
-  height: 23px;
-}
-.w2ui-overlay .w2ui-grid-searches table td.actions {
-  border-right: 0px;
-}
-.w2ui-overlay .w2ui-grid-searches table td.actions > div {
-  margin: -7px;
-  margin-top: 15px;
-  padding: 13px 0px;
-  text-align: center;
-  background-color: #efefe9;
-  border-top: 1px solid #e8e8e3;
-}
-/*************************************************
-* ---- Popup ----
-*/
-.w2ui-popup {
-  position: fixed;
-  z-index: 1600;
-  overflow: hidden;
-  font-family: Verdana, Arial, sans-serif;
-  border-radius: 6px;
-  padding: 0px;
-  margin: 0px;
-  border: 1px solid #777777;
-  background-color: #eeeeee;
-  box-shadow: 0px 0px 25px #555555;
-}
-.w2ui-popup,
-.w2ui-popup * {
-  -webkit-box-sizing: border-box;
-  -moz-box-sizing: border-box;
-  -ms-box-sizing: border-box;
-  -o-box-sizing: border-box;
-  box-sizing: border-box;
-}
-.w2ui-popup .w2ui-msg-title {
-  padding: 6px;
-  border-radius: 6px 6px 0px 0px;
-  background-image: -webkit-linear-gradient(#ececec, #dfdfdf);
-  background-image: -moz-linear-gradient(#ececec, #dfdfdf);
-  background-image: -ms-linear-gradient(#ececec, #dfdfdf);
-  background-image: -o-linear-gradient(#ececec, #dfdfdf);
-  background-image: linear-gradient(#ececec, #dfdfdf);
-  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffececec', endColorstr='#ffdfdfdf', GradientType=0);
-  border-bottom: 2px solid #bfbfbf;
-  position: absolute;
-  overflow: hidden;
-  height: 32px;
-  left: 0px;
-  right: 0px;
-  top: 0px;
-  text-overflow: ellipsis;
-  text-align: center;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  -o-user-select: none;
-  user-select: none;
-  cursor: move;
-  font-size: 15px;
-  color: #555555;
-  z-index: 300;
-}
-.w2ui-popup .w2ui-msg-button {
-  float: right;
-  width: 18px;
-  height: 18px;
-  cursor: pointer;
-  overflow: hidden;
-  padding: 0px;
-  margin: 0px 3px 0px 0px;

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list