diff --git a/src/main/java/org/olat/core/gui/components/form/flexible/impl/elements/richText/RichTextConfiguration.java b/src/main/java/org/olat/core/gui/components/form/flexible/impl/elements/richText/RichTextConfiguration.java
index b971199377615ce34cb4910dc081e0cca80c0c54..f39c9b051d67ae58d4b9333b7dea9ebbd5337fcc 100644
--- a/src/main/java/org/olat/core/gui/components/form/flexible/impl/elements/richText/RichTextConfiguration.java
+++ b/src/main/java/org/olat/core/gui/components/form/flexible/impl/elements/richText/RichTextConfiguration.java
@@ -465,13 +465,13 @@ public class RichTextConfiguration implements Disposable {
 	 */
 	public void setContentCSSFromTheme(Theme theme) {
 		// Always use default content css, then add the one from the theme
-		if (theme.getIdentifyer().equals("openolat")) {
-			setContentCSS(theme.getBaseURI() + "all/content.css");			
+		if (theme.getIdentifyer().equals(Theme.DEFAULTTHEME)) {
+			setContentCSS(theme.getBaseURI() + "content.css");			
 		} else {
 			StringOutput cssFiles = new StringOutput();
-			StaticMediaDispatcher.renderStaticURI(cssFiles, "themes/openolat/all/content.css");
+			StaticMediaDispatcher.renderStaticURI(cssFiles, "themes/" + Theme.DEFAULTTHEME + "/content.css");
 			cssFiles.append(",");
-			cssFiles.append(theme.getBaseURI()).append("all/content.css");
+			cssFiles.append(theme.getBaseURI()).append("content.css");
 			setContentCSS(cssFiles.toString());
 		}
 	}
diff --git a/src/main/java/org/olat/core/gui/control/generic/iframe/IFrameDeliveryMapper.java b/src/main/java/org/olat/core/gui/control/generic/iframe/IFrameDeliveryMapper.java
index bb2765e70c0b6444fdeee98de99944501b501013..81664cf41ebdc3c3f403fce63a98fc00b3a455f3 100644
--- a/src/main/java/org/olat/core/gui/control/generic/iframe/IFrameDeliveryMapper.java
+++ b/src/main/java/org/olat/core/gui/control/generic/iframe/IFrameDeliveryMapper.java
@@ -553,7 +553,7 @@ public class IFrameDeliveryMapper implements Mapper, Serializable {
 		private void appendOpenolatCss() {
 			if(ooCssLoaded) return;
 			
-			append("<link href=\"").append(themeBaseUri).append("all/content.css\" rel=\"stylesheet\" type=\"text/css\" ");
+			append("<link href=\"").append(themeBaseUri).append("content.css\" rel=\"stylesheet\" type=\"text/css\" ");
 			if (docType != null && docType.indexOf("XHTML") > 0) append("/"); // close tag only when xhtml to validate
 			append(">\n");
 			ooCssLoaded = true;
diff --git a/src/main/java/org/olat/core/gui/themes/Theme.java b/src/main/java/org/olat/core/gui/themes/Theme.java
index 1bc1de3bb8cb13ec33bb11ce712152e1073e74f6..0a8945298b122c4ba6feb8228245a61b297ee461 100644
--- a/src/main/java/org/olat/core/gui/themes/Theme.java
+++ b/src/main/java/org/olat/core/gui/themes/Theme.java
@@ -34,6 +34,8 @@ import org.olat.core.util.WebappHelper;
  * @author Florian Gnaegi, frentix GmbH, http://www.frentix.com
  */
 public class Theme {
+	public static final String DEFAULTTHEME = "light";
+	
 	private String identifyer;
 	private String baseURI;
 	private String relPathToThemesDir;
diff --git a/src/main/resources/serviceconfig/olat.properties b/src/main/resources/serviceconfig/olat.properties
index 345ea42b38f2d511d9b2734b56c247be447e9b25..afd7ed16e3903107857e55f053b90a506c365ead 100644
--- a/src/main/resources/serviceconfig/olat.properties
+++ b/src/main/resources/serviceconfig/olat.properties
@@ -321,7 +321,7 @@ instance.id=myopenolat
 # customize the OLAT application to your liking (see the example
 # theme for futher information.
 # you can also configure a theme via the admin GUI which takes precedence
-layout.theme=openolat
+layout.theme=light
 layout.coursetemplates.blacklist=
 # Absolute path to directory where custom themes are loaded from (optional)
 layout.custom.themes.dir=${userdata.dir}/customizing/themes
diff --git a/src/main/webapp/static/themes/compiletheme.sh b/src/main/webapp/static/themes/compiletheme.sh
index c6c5164f862974404e4ab5728370b2d2e3b97f1f..7f79872cbdb0ffe06b551fc20f279127caf18d23 100755
--- a/src/main/webapp/static/themes/compiletheme.sh
+++ b/src/main/webapp/static/themes/compiletheme.sh
@@ -21,7 +21,7 @@ STYLE=compressed
 searchThemes () {
 	if [ ! -z $1  ];
 	then
-	    if [ -f $1/layout.scss  ];
+	    if [ -f $1/theme.scss  ];
 	    then
 	    	doCompile $1
 	    elif [ -d $1  ];
@@ -36,9 +36,14 @@ searchThemes () {
 
 # Helper method to compile the theme
 doCompile () {
-	echo "Compiling SASS: $1 $STYLE"
+	TARGET=$1
+	if [ $1 = "."  ];
+	then
+		TARGET="light"
+	fi
+	echo "Compiling SASS: $TARGET $STYLE"
 	sass --version
-	sass --style $STYLE --update $1:$1 --load-path openolat openolat/all openolat/all/modules openolat/print openolat/mobile
+	sass --style $STYLE --update $TARGET:$TARGET --load-path light light/modules
 	echo "done"
 }
 
diff --git a/src/main/webapp/static/themes/light/_config.scss b/src/main/webapp/static/themes/light/_config.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e8d56db711930a42e4f72c44d75ec1e7227ce9d5
--- /dev/null
+++ b/src/main/webapp/static/themes/light/_config.scss
@@ -0,0 +1,103 @@
+/*
+ * =================================================
+ *   
+ * OpenOLAT theme configuration file
+ *
+ * @author gnaegi,  www.frentix.com
+ * @date April 2014
+ *
+ * To create your own theme, please read themes.README!
+ * =================================================
+ * 
+ * Configure OpenOLAT and boostrap variables in this file. 
+ * All variables with the o- prefix are OpenOLAT specific variables, 
+ * the other variabels are from bootstrap. 
+ * 
+ * When you modify any variable here, make sure you run 
+ * the scrip src/main/webapp/static/themes/compiletheme.sh
+ * 
+ * See src/main/webapp/static/bootstrap/3.1.1/stylesheets/bootstrap/_variables.scss
+ * or http://getbootstrap.com/customize/#less-variables
+ * or http://getbootstrap.com/css/#less-variables
+ */
+
+/* The max width the header/navbar/main/footer can possibly have. */
+$o-page-width-max : 1324px !default;
+
+/* Background color of the main content area. */
+$o-main-outer-bg : #fff !default;
+$o-main-inner-bg : #fff !default;
+
+$o-footer-height : 60px !default;
+$o-footer-outer-bg : #f5f5f5 !default;
+$o-footer-inner-bg : #f5f5f5 !default;
+$o-footer-default-color : #999 !default;
+$o-footer-default-link-color : #999 !default;
+$o-footer-default-link-hover-color : #000 !default;
+$o-footer-position-absolute : true !default; 
+
+$o-images-path : "../light/images/" !default;
+
+/* Override bootstrap font path */
+$icon-font-path : "../../bootstrap/3.1.1/fonts/bootstrap/" !default;
+
+
+/*
+FIXME:oo10 LEGACY VARIABLES
+
+$basecolor : #025D8C !default;
+$basecolor_light : #94bed3 !default;
+$basecolor_ultra_light : #f3feff !default;
+$selectcolor : #FF9F5B !default;				
+$selectcolor_light : #FF9F5B !default;			
+$selectcolor_ultra_light : #FFDBC1 !default;	 
+$dirtycolor : #FF9900 !default;
+$dirtycolor_bg : #FEFBF6 !default;
+$basegray: #555 !default;
+$basegray_light: #777 !default;
+$basegray_ultra_light: #eee !default;
+$glossColor1 : #5E5E5E !default;
+$glossColor2 : #444 !default;
+$glossColor3 : #222 !default;
+$glossColor4 : #3C3C3C !default;
+$okcolor : #009900 !default;
+$nokcolor : #990000 !default;
+$linkcolor : $basecolor !default;
+$linkcolor_hover: $basecolor !default;
+$menulinkcolor : $basegray !default;
+$menulinkcolor_hover : $basecolor !default;
+$menulinkcolor_selected : $basecolor !default;
+$tablecolor_header : $linkcolor !default;
+$tablecolor_links : $linkcolor !default;
+$tablecolor_links_hover : $linkcolor !default;
+$fullScreenModalMarginPercents: 2% !default;
+$navMainShowIcons : false !default;
+$top_nav_line_height : 30px !default;
+$top_nav_active_tabs_bg : #fff !default;
+$tool_bar_height : 24px !default;
+$tool_bar_bg : $top_nav_active_tabs_bg !default;
+$tool_bar_border : #DADADA !default;
+$tool_bar_color : #2D2E2D !default;
+$tool_bar_hover : #585A58 !default;
+$main_shadow_color : #D3D3D3 !default;
+$tree_level_margin : 1em !default;
+$tree_padding_steps_px : 0 !default;
+$tree_padding_opener_px : 13px !default; 
+$tree_padding_opener_left_px : 1px !default;
+$tree_padding_opener_top_px : 0px;
+$tree_show_icons : true !default; 
+$treeicon_width_px : 20px !default;
+$ico_plus : '../openolat/images/tree_parent_closed.png'  !default;
+$ico_minus : '../openolat/images/tree_parent_open.png'  !default;
+$di_border_radius:2px;
+$headerfont : Century Gothic, Apple Gothic, sans-serif !default;
+$topnavfont : $headerfont !default;
+$navmainfont : $headerfont !default;
+$treefont : $headerfont !default;
+$defaultfontsize : 80% !default;
+$page_width_max : 1324px !default;
+$page_width_min : 740px !default;
+$enablebiz : false !default;
+$showbetalogo: false !default;
+
+*/
diff --git a/src/main/webapp/static/themes/light/_license.scss b/src/main/webapp/static/themes/light/_license.scss
new file mode 100644
index 0000000000000000000000000000000000000000..f93c780bff7b578023d7ecd6a9de92ffcdb7464a
--- /dev/null
+++ b/src/main/webapp/static/themes/light/_license.scss
@@ -0,0 +1,27 @@
+@charset "UTF-8";
+
+/*!
+ * ========================================================
+ *  <a href="http://www.openolat.org">
+ *  OpenOLAT - Online Learning and Training</a><br>
+ *  <p>
+ *  Licensed under the Apache License, Version 2.0 (the "License"); <br>
+ *  you may not use this file except in compliance with the License.<br>
+ *  You may obtain a copy of the License at the
+ *  <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a>
+ *  <p>
+ *  Unless required by applicable law or agreed to in writing,<br>
+ *  software distributed under the License is distributed on an "AS IS" BASIS, <br>
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
+ *  See the License for the specific language governing permissions and <br>
+ *  limitations under the License.
+ *  <p>
+ *  Initial code contributed and copyrighted by<br>
+ *  09.04.2014 by frentix GmbH, http://www.frentix.com
+ *  <p>
+ *
+ *
+ *  @author gnaegi, www.frentix.com
+ *  @date April. 2014
+ * ========================================================
+**/
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/_modules.scss b/src/main/webapp/static/themes/light/_modules.scss
new file mode 100644
index 0000000000000000000000000000000000000000..58b07a4b9e6a096bed3d1de3e59ca3f5c669b068
--- /dev/null
+++ b/src/main/webapp/static/themes/light/_modules.scss
@@ -0,0 +1,60 @@
+@charset "UTF-8";
+
+/*
+ * =================================================
+ * Import of all submodules and includes, can be reused 
+ * by other themes. Normally you do not have to modify
+ * this file.
+ * =================================================
+ */
+
+/* Bootstrap defaults. Override those variables in your _config.scss file */
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap";
+
+/* -------- OpenOLAT modules -------- */
+@import "modules/mixins";
+@import "modules/helpers";
+@import "modules/content";
+
+@import "modules/layout";
+@import "modules/navbar";
+@import "modules/footer";
+@import "modules/im";
+@import "modules/flags";
+@import "modules/icons";
+
+//@import "modules/thirdparty";
+//@import "modules/print";
+
+
+/* TODO migrate */
+/*
+@import "../openolat/all/basemod";
+@import "../openolat/all/modules/nav";
+@import "../openolat/all/icons";
+@import "../openolat/all/modules/dd";
+@import "../openolat/all/modules/accesscontrol";
+@import "../openolat/all/modules/dialogs";
+@import "../openolat/all/modules/tabpane";
+@import "../openolat/all/modules/formsandbuttons";
+@import "../openolat/all/modules/tables";
+@import "../openolat/all/modules/develdebug";
+@import "../openolat/all/modules/briefcase";
+@import "../openolat/all/modules/repository";
+@import "../openolat/all/modules/wiki";
+@import "../openolat/all/modules/forum";
+@import "../openolat/all/modules/eportfolio";
+@import "../openolat/all/modules/imscp";
+@import "../openolat/all/modules/qpool";
+@import "../openolat/all/modules/qti";
+@import "../openolat/all/modules/translationtool";
+@import "../openolat/all/modules/course";
+@import "../openolat/all/modules/misc";
+@import "../openolat/all/modules/feedandblog";
+@import "../openolat/all/modules/im";
+@import "../openolat/all/modules/portlets_boxes";
+@import "../openolat/all/modules/library";
+@import "../openolat/all/modules/coachingtool";
+*/
+
+
diff --git a/src/main/webapp/static/themes/light/content.css b/src/main/webapp/static/themes/light/content.css
new file mode 100644
index 0000000000000000000000000000000000000000..14eaa55dbf6364d450242c54daa2ef3ca2d8c00d
--- /dev/null
+++ b/src/main/webapp/static/themes/light/content.css
@@ -0,0 +1,25 @@
+/*!
+ * ========================================================
+ *  <a href="http://www.openolat.org">
+ *  OpenOLAT - Online Learning and Training</a><br>
+ *  <p>
+ *  Licensed under the Apache License, Version 2.0 (the "License"); <br>
+ *  you may not use this file except in compliance with the License.<br>
+ *  You may obtain a copy of the License at the
+ *  <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a>
+ *  <p>
+ *  Unless required by applicable law or agreed to in writing,<br>
+ *  software distributed under the License is distributed on an "AS IS" BASIS, <br>
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
+ *  See the License for the specific language governing permissions and <br>
+ *  limitations under the License.
+ *  <p>
+ *  Initial code contributed and copyrighted by<br>
+ *  09.04.2014 by frentix GmbH, http://www.frentix.com
+ *  <p>
+ *
+ *
+ *  @author gnaegi, www.frentix.com
+ *  @date April. 2014
+ * ========================================================
+**//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}.b_info{padding:5px 5px 5px 30px;background:#e9eaef url(../../openolat/images/information-white.png) no-repeat 5px 5px;border:1px solid #C5C4C4;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_info,div.b_info{margin:1em 0}.b_note{padding:1em;background:#E2E2E2;border:2px #B5B5B5 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_note,div.b_note{margin:1em 0}.b_important{padding:1em;background:#FFF1A4;border:2px #F4D000 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_important,div.b_important{margin:1em 0}.b_warning{padding:1em;background:#FFD5AA;border:2px #FF9E3E solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_warning,div.b_warning{margin:1em 0}.b_error{padding:1em;background:#FF6A66;color:#fff;border:2px #ff0600 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}.b_error .b_error_icon{padding:9px 0 9px 41px;background:url(../../openolat/images/icon_error_32.png) no-repeat}.b_error table.b_grid td,.b_error table.b_grid th,.b_error table.b_border td,.b_error table.b_border th{border:1px solid #fff}p.b_error,div.b_error{margin:1em 0}.b_border_box{border:1px solid #999;padding:1em;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px}p.b_border_box,div.b_border_box{margin:1em 0}table.b_grid{background:transparent;border-collapse:separate}table.b_grid td,table.b_grid th{padding:2px 5px;border:1px solid #888}table.b_grid thead th{background:#ccc}table.b_grid tbody th{background:#eee}table.b_border{background:transparent;border-collapse:collapse}table.b_border td,table.b_border th{padding:2px 5px;border:1px solid #888}table.b_full{width:99.5%}table td{vertical-align:top}table.b_middle{background:transparent}table.b_middle td{vertical-align:middle}.b_selected,p.b_selected,div.b_selected{font-weight:bold}.b_dimmed,p.b_dimmed,div.b_dimmed{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4}.b_disabled,p.b_disabled,div.b_disabled{color:#999}.b_deleted,p.b_deleted,div.b_deleted{text-decoration:line-through}.b_xsmall,sup,sub,p.b_xsmall,div.b_xsmall{font-size:80%}.b_small,small,p.b_small,div.b_small{font-size:90%}.b_large,p.b_large,div.b_large{font-size:110%}.b_xlarge,big,p.b_xlarge,div.b_xlarge{font-size:120%}.b_align_normal{text-align:left}.b_align_center{text-align:center}.b_align_inverse{text-align:right}.o_ochre{color:#c8a959}.o_blue{color:#12223F}a.b_link_extern{background:transparent url("../../openolat/images/external_link_trimmed.png") no-repeat right top;padding-right:13px}a.b_link_mailto{background:transparent url("../../openolat/images/mail_small.png") no-repeat left center;padding-left:18px}a.b_link_forward{background:transparent url("../../openolat/images/arrow_right.png") no-repeat right center;padding-right:18px}img.b_float_left{float:left;margin:0 2em 2em 0}img.b_float_right{float:right;margin:0 0 2em 2em}img.b_centered{display:block;margin:0 auto 2em auto}img.b_emoticons_angel{background:url(../light/images/emoticons/smiley-angel.png);width:16px;height:16px}img.b_emoticons_angry{background:url(../light/images/emoticons/smiley-mad.png);width:16px;height:16px}img.b_emoticons_blushing{background:url(../light/images/emoticons/smiley-red.png);width:16px;height:16px}img.b_emoticons_confused{background:url(../light/images/emoticons/smiley-confuse.png);width:16px;height:16px}img.b_emoticons_cool{background:url(../light/images/emoticons/smiley-cool.png);width:16px;height:16px}img.b_emoticons_cry{background:url(../light/images/emoticons/smiley-cry.png);width:16px;height:16px}img.b_emoticons_devil{background:url(../light/images/emoticons/smiley-evil.png);width:16px;height:16px}img.b_emoticons_grin{background:url(../light/images/emoticons/smiley-grin.png);width:16px;height:16px}img.b_emoticons_kiss{background:url(../light/images/emoticons/smiley-kiss.png);width:16px;height:16px}img.b_emoticons_ohoh{background:url(../light/images/emoticons/smiley-eek.png);width:16px;height:16px}img.b_emoticons_sad{background:url(../light/images/emoticons/smiley-sad.png);width:16px;height:16px}img.b_emoticons_sick{background:url(../light/images/emoticons/smiley-sad-blue.png);width:16px;height:16px}img.b_emoticons_smile{background:url(../light/images/emoticons/smiley.png);width:16px;height:16px}img.b_emoticons_tongue{background:url(../light/images/emoticons/smiley-razz.png);width:16px;height:16px}img.b_emoticons_ugly{background:url(../light/images/emoticons/smiley-money.png);width:16px;height:16px}img.b_emoticons_weird{background:url(../light/images/emoticons/smiley-nerd.png);width:16px;height:16px}img.b_emoticons_wink{background:url(../light/images/emoticons/smiley-wink.png);width:16px;height:16px}img.b_emoticons_worried{background:url(../light/images/emoticons/smiley-roll-blue.png);width:16px;height:16px}img.b_emoticons_up{background:url(../light/images/emoticons/thumb-up.png);width:16px;height:16px}img.b_emoticons_down{background:url(../light/images/emoticons/thumb.png);width:16px;height:16px}
diff --git a/src/main/webapp/static/themes/light/content.scss b/src/main/webapp/static/themes/light/content.scss
new file mode 100644
index 0000000000000000000000000000000000000000..b2018e263f47efe82d2493e46cb6979564a274fa
--- /dev/null
+++ b/src/main/webapp/static/themes/light/content.scss
@@ -0,0 +1,25 @@
+@charset "UTF-8";
+
+/*
+ *  =================================================
+ *  
+ *   SaSS file for OpenOLAT content styles. This is 
+ *   included in iframes to nicely display content. 
+ *   
+ *   @author gnaegi, www.frentix.com
+ *   @date April 2014
+ *
+ *	 also read themes.README!
+ *  =================================================
+ */
+@import "license";
+
+@import "config";
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap/variables";
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap/mixins";
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap/normalize";
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap/scaffolding";
+@import "../../bootstrap/3.1.1/stylesheets/bootstrap/print";
+
+@import "modules/mixins"; 
+@import "modules/content";
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/favicon.ico b/src/main/webapp/static/themes/light/favicon.ico
new file mode 100644
index 0000000000000000000000000000000000000000..92b3c8891901712cdd96b8f309b0414cb1adc327
Binary files /dev/null and b/src/main/webapp/static/themes/light/favicon.ico differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/balloon-smiley.png b/src/main/webapp/static/themes/light/images/emoticons/balloon-smiley.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f90637b89e60321b3b0ca30f2c4e7ba8328ee32
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/balloon-smiley.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-angel.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-angel.png
new file mode 100644
index 0000000000000000000000000000000000000000..6586636920609a0811c033ac7b33329bf8586b90
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-angel.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-confuse.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-confuse.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf6291b639094a456d07d1a2e3cc169f2527bc4c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-confuse.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-cool.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-cool.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4153ab473b83a97b6209030a1168aaabf660b03
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-cool.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-cry.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-cry.png
new file mode 100644
index 0000000000000000000000000000000000000000..616a72a0e619e20554c43dbc810d9e4f10dcb57e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-cry.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-draw.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-draw.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0dc3f9dd1d9c749211ae797d981728848d23b68
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-draw.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-eek-blue.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-eek-blue.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2e0d53f7ff0f5da4dd32bc2e22d9cfa7539dd16
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-eek-blue.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-eek.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-eek.png
new file mode 100644
index 0000000000000000000000000000000000000000..62bae157db47ef5b8e90cb3c5b28cd1bc1f7cd4c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-eek.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-evil.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-evil.png
new file mode 100644
index 0000000000000000000000000000000000000000..881e8d001bad70e2462a1972d4372c8ba5c013f2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-evil.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-fat.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-fat.png
new file mode 100644
index 0000000000000000000000000000000000000000..47ce5ca126102c773d2758d6ec2093d7f9c58f38
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-fat.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-grin.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-grin.png
new file mode 100644
index 0000000000000000000000000000000000000000..b07ace6315b5fc8c4148efe3ae071dc635978b48
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-grin.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-kiss.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-kiss.png
new file mode 100644
index 0000000000000000000000000000000000000000..1853a6ee540ab511c613ed5bd9db4eab33650723
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-kiss.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-kitty.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-kitty.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9ad483c587d73fc035d42e11a164de19312eb81
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-kitty.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-lol.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-lol.png
new file mode 100644
index 0000000000000000000000000000000000000000..414630e0154b42e00d685e1c9a3ec2805a9a0cfe
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-lol.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-mad.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-mad.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3a8c5f09bd376e40df2b33dd2f9ecc80b94ca44
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-mad.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-money.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-money.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc8bd91e17243251ad4cef3e3810eb94a9aa8bcb
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-money.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-mr-green.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-mr-green.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d827566fae1e478b912961d03811872e77de7eb
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-mr-green.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-nerd.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-nerd.png
new file mode 100644
index 0000000000000000000000000000000000000000..4539ac9623e601d69337eb7ca04b8b43d1417f8a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-nerd.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-neutral.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-neutral.png
new file mode 100644
index 0000000000000000000000000000000000000000..16555c1f3143d7fc5aa499534d76f16bc68407d5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-neutral.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-razz.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-razz.png
new file mode 100644
index 0000000000000000000000000000000000000000..d41dfb5931987ad9be4950bd8b8dc33c159b3736
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-razz.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-red.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-red.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c7b34d29762157e64b9483be40c6fdc30db8c33
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-red.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-blue.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-blue.png
new file mode 100644
index 0000000000000000000000000000000000000000..39e325bf035e4bd945a5221aec754ef0d9001b50
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-blue.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-sweat.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-sweat.png
new file mode 100644
index 0000000000000000000000000000000000000000..443aad0cc863a4ee981c2d188fa4477bc019acf7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll-sweat.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-roll.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll.png
new file mode 100644
index 0000000000000000000000000000000000000000..fddaf7455e0fef2f2e3d962af907b0a08e4fab37
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-roll.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-sad-blue.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-sad-blue.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0524353b8f0d93e27673a95ab4d9b707c6a24ae
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-sad-blue.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-sad.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-sad.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fb91775ecda82c2062c22bb4a9a4fa9097e63f7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-sad.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-sleep.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-sleep.png
new file mode 100644
index 0000000000000000000000000000000000000000..89fb8e8d99e625ff951a2224114e8e4e70d24fb7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-sleep.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-slim.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-slim.png
new file mode 100644
index 0000000000000000000000000000000000000000..444d05964423245f9918ac97163c84560f9e980e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-slim.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-small.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-small.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d863f1712141ed09406e4f3941e2d9df838554c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-small.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-surprise.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-surprise.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a26f75f481d4616e94f9dbd605798c16793d1e2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-surprise.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-sweat.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-sweat.png
new file mode 100644
index 0000000000000000000000000000000000000000..95592419367f03dfb03e1c899e2df4929cf5c15c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-sweat.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-twist.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-twist.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6489e9fc620a5f9a0e49b82b061a02ff9526bf5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-twist.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-wink.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-wink.png
new file mode 100644
index 0000000000000000000000000000000000000000..41e56050c18fd5014a21c25c272a1abe5c2849f4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-wink.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-yell.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-yell.png
new file mode 100644
index 0000000000000000000000000000000000000000..4270eb3397c5c150484b09496c0ad006fdec604c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-yell.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley-zipper.png b/src/main/webapp/static/themes/light/images/emoticons/smiley-zipper.png
new file mode 100644
index 0000000000000000000000000000000000000000..e26869469ec71890a8933b68a6824ace9699fa72
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley-zipper.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/smiley.png b/src/main/webapp/static/themes/light/images/emoticons/smiley.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2a8fb2c8192d36ec10da53386bb729356e835be
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/smiley.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/thumb-up.png b/src/main/webapp/static/themes/light/images/emoticons/thumb-up.png
new file mode 100644
index 0000000000000000000000000000000000000000..a12a1d0597fd991f5fc99c03e9c87a67c63d60d0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/thumb-up.png differ
diff --git a/src/main/webapp/static/themes/light/images/emoticons/thumb.png b/src/main/webapp/static/themes/light/images/emoticons/thumb.png
new file mode 100644
index 0000000000000000000000000000000000000000..183e8b667d922003e8715b30feeb99b8c3366370
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/emoticons/thumb.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ad.png b/src/main/webapp/static/themes/light/images/flags/ad.png
new file mode 100644
index 0000000000000000000000000000000000000000..625ca84f9ec596848d4b967b5556fda897ca7183
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ad.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ae.png b/src/main/webapp/static/themes/light/images/flags/ae.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef3a1ecfccdfe9cf7e9fc086a2c6c010f7977ed8
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ae.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/af.png b/src/main/webapp/static/themes/light/images/flags/af.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4742e299f517aee16c248e40eccad39ac34c9e9
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/af.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ag.png b/src/main/webapp/static/themes/light/images/flags/ag.png
new file mode 100644
index 0000000000000000000000000000000000000000..556d5504dc28d89be22ec1883f12e8d8c07d5f41
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ag.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ai.png b/src/main/webapp/static/themes/light/images/flags/ai.png
new file mode 100644
index 0000000000000000000000000000000000000000..74ed29d92616c86757d3c0ec04378301c8f591b4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ai.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/al.png b/src/main/webapp/static/themes/light/images/flags/al.png
new file mode 100644
index 0000000000000000000000000000000000000000..92354cb6e257be2cade71cb825027ce8d9efc06d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/al.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/am.png b/src/main/webapp/static/themes/light/images/flags/am.png
new file mode 100644
index 0000000000000000000000000000000000000000..344a2a86c43d52f490455d0fe582da93e07175b2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/am.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/an.png b/src/main/webapp/static/themes/light/images/flags/an.png
new file mode 100644
index 0000000000000000000000000000000000000000..633e4b89fded98256a8d142dfb60a8058f7e6b67
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/an.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ao.png b/src/main/webapp/static/themes/light/images/flags/ao.png
new file mode 100644
index 0000000000000000000000000000000000000000..bcbd1d6d40d8665ed9b1001c490ce48befabb258
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ao.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ar.png b/src/main/webapp/static/themes/light/images/flags/ar.png
new file mode 100644
index 0000000000000000000000000000000000000000..e5ef8f1fcddb9fa0b89c353430e9640c122445cc
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ar.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/as.png b/src/main/webapp/static/themes/light/images/flags/as.png
new file mode 100644
index 0000000000000000000000000000000000000000..32f30e4ce4eedd22d4f09c4f3a46c52dd064f113
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/as.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/at.png b/src/main/webapp/static/themes/light/images/flags/at.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f15f34f2883c4b4360fc871d7105309f1533282
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/at.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/au.png b/src/main/webapp/static/themes/light/images/flags/au.png
new file mode 100644
index 0000000000000000000000000000000000000000..a01389a745d51e16b01a9dc0a707572564a17625
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/au.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/aw.png b/src/main/webapp/static/themes/light/images/flags/aw.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3579c2d621069c8128d7cf16440d5e45a3ab3cd
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/aw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ax.png b/src/main/webapp/static/themes/light/images/flags/ax.png
new file mode 100644
index 0000000000000000000000000000000000000000..1eea80a7b739bea4a249dd10a3457010525f60da
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ax.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/az.png b/src/main/webapp/static/themes/light/images/flags/az.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ee9fe5ced2610a60ff99e6cc4fbe80d7d53c624
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/az.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ba.png b/src/main/webapp/static/themes/light/images/flags/ba.png
new file mode 100644
index 0000000000000000000000000000000000000000..c77499249c9c54700885c84465bc9039a433a2c9
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ba.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bb.png b/src/main/webapp/static/themes/light/images/flags/bb.png
new file mode 100644
index 0000000000000000000000000000000000000000..0df19c71d20d7fdc06e1cba01028983439b2bdae
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bb.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bd.png b/src/main/webapp/static/themes/light/images/flags/bd.png
new file mode 100644
index 0000000000000000000000000000000000000000..076a8bf87c0cedcce47099c6b74b59f2c9d1dbce
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bd.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/be.png b/src/main/webapp/static/themes/light/images/flags/be.png
new file mode 100644
index 0000000000000000000000000000000000000000..d86ebc800a673e6cf357c33d00edef93e2df0787
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/be.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bf.png b/src/main/webapp/static/themes/light/images/flags/bf.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab5ce8fe1237a18d6809a5570024eb108cb14a3e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bg.png b/src/main/webapp/static/themes/light/images/flags/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..0469f0607dc76eb60327c29e04d9585f3ef25dc7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bh.png b/src/main/webapp/static/themes/light/images/flags/bh.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea8ce68761bbd8ee06f80c487c24d4493abfb52d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bi.png b/src/main/webapp/static/themes/light/images/flags/bi.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cc2e30cfc47452d5bef949628e955a522d59e50
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bi.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bj.png b/src/main/webapp/static/themes/light/images/flags/bj.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cc8b458a4ca83a29117c1ab9e6cd1e60a717db2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bj.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bm.png b/src/main/webapp/static/themes/light/images/flags/bm.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0c7aead8dfdeb942752d40cead84182c94f3c94
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bn.png b/src/main/webapp/static/themes/light/images/flags/bn.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fb09849e9b5712e9cdd8a2c25035da201535cf5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bo.png b/src/main/webapp/static/themes/light/images/flags/bo.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce7ba522aa7e948d581478432643c230eed1a658
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bo.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/br.png b/src/main/webapp/static/themes/light/images/flags/br.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b1a5538b264a295021f4f717d4299bb8ed98d98
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/br.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bs.png b/src/main/webapp/static/themes/light/images/flags/bs.png
new file mode 100644
index 0000000000000000000000000000000000000000..639fa6cfa9c4792d03fb09fa197faf7ae549bfdf
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bs.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bt.png b/src/main/webapp/static/themes/light/images/flags/bt.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d512dfff42db1ea3e7c59fa7dd69319e789ee12
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bv.png b/src/main/webapp/static/themes/light/images/flags/bv.png
new file mode 100644
index 0000000000000000000000000000000000000000..160b6b5b79db15e623fa55e5774e5d160b933180
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bw.png b/src/main/webapp/static/themes/light/images/flags/bw.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcb103941523e24b03726fbbd88ef213dd476577
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/by.png b/src/main/webapp/static/themes/light/images/flags/by.png
new file mode 100644
index 0000000000000000000000000000000000000000..504774ec10efa9fdbedf75295ac88848f23a3908
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/by.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/bz.png b/src/main/webapp/static/themes/light/images/flags/bz.png
new file mode 100644
index 0000000000000000000000000000000000000000..be63ee1c623af897a81d80c8e60506d2c9bc0a43
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/bz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ca.png b/src/main/webapp/static/themes/light/images/flags/ca.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f204193ae58c87efdd88d46700ccb48c2e1d0d8
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ca.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/catalonia.png b/src/main/webapp/static/themes/light/images/flags/catalonia.png
new file mode 100644
index 0000000000000000000000000000000000000000..5041e308e3a0f57f5ef9651b574d49d30e5dc635
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/catalonia.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cc.png b/src/main/webapp/static/themes/light/images/flags/cc.png
new file mode 100644
index 0000000000000000000000000000000000000000..aed3d3b4e4467c33717ab3e2f61596e06113f9bb
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cd.png b/src/main/webapp/static/themes/light/images/flags/cd.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e489424884d2ec9e429f70d69af00edf242a077
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cd.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cf.png b/src/main/webapp/static/themes/light/images/flags/cf.png
new file mode 100644
index 0000000000000000000000000000000000000000..da687bdce928e32e4a2bcbed2f3d2d97f42d340c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cg.png b/src/main/webapp/static/themes/light/images/flags/cg.png
new file mode 100644
index 0000000000000000000000000000000000000000..a859792ef32a02b41503b5ab5f216191af397e02
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ch.png b/src/main/webapp/static/themes/light/images/flags/ch.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3e3be10916b3e78ec4e4e56992efc8cc21e397c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ch.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ci.png b/src/main/webapp/static/themes/light/images/flags/ci.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f2c62eb4d7dc192036af889b593b782dbe8abac
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ci.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ck.png b/src/main/webapp/static/themes/light/images/flags/ck.png
new file mode 100644
index 0000000000000000000000000000000000000000..746d3d6f758858c749523ac27c05c85930d10667
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ck.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cl.png b/src/main/webapp/static/themes/light/images/flags/cl.png
new file mode 100644
index 0000000000000000000000000000000000000000..29c6d61bd4f16075228cdc6e526aafc3443029d7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cm.png b/src/main/webapp/static/themes/light/images/flags/cm.png
new file mode 100644
index 0000000000000000000000000000000000000000..f65c5bd5a79e2885060515be55f03a3ea4a15d95
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cn.png b/src/main/webapp/static/themes/light/images/flags/cn.png
new file mode 100644
index 0000000000000000000000000000000000000000..89144146219e6fbec7eaa89e1bf4b073d299569e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/co.png b/src/main/webapp/static/themes/light/images/flags/co.png
new file mode 100644
index 0000000000000000000000000000000000000000..a118ff4a146fbd40ce865ea3c93b9d20ab3f14a0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/co.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cr.png b/src/main/webapp/static/themes/light/images/flags/cr.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7a3731794031667843f05ad3897a85c7c434877
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cs.png b/src/main/webapp/static/themes/light/images/flags/cs.png
new file mode 100644
index 0000000000000000000000000000000000000000..8254790ca72f98d9e79d94bdfcb8839b1fd434ad
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cs.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cu.png b/src/main/webapp/static/themes/light/images/flags/cu.png
new file mode 100644
index 0000000000000000000000000000000000000000..083f1d611c94a535e02954711486da244ec3c5d0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cv.png b/src/main/webapp/static/themes/light/images/flags/cv.png
new file mode 100644
index 0000000000000000000000000000000000000000..a63f7eaf63c028615b2ded5878b5e14a7dbe962f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cx.png b/src/main/webapp/static/themes/light/images/flags/cx.png
new file mode 100644
index 0000000000000000000000000000000000000000..48e31adbf4cc0074f40e95f87c1f103b91fe270e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cx.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cy.png b/src/main/webapp/static/themes/light/images/flags/cy.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b1ad6c07886e6963db439afff55d7056e3c5cd4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cy.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/cz.png b/src/main/webapp/static/themes/light/images/flags/cz.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8403dd21fd15f46d501a766a7a97733462f3b22
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/cz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/de.png b/src/main/webapp/static/themes/light/images/flags/de.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac4a977362738ca7daa20784717f10f9617136b4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/de.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/dj.png b/src/main/webapp/static/themes/light/images/flags/dj.png
new file mode 100644
index 0000000000000000000000000000000000000000..582af364f8a9cb680628beae33cc9a2dbe0559f4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/dj.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/dk.png b/src/main/webapp/static/themes/light/images/flags/dk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2993d3c59ae78855f777c158a6aae6c1fb5c843
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/dk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/dm.png b/src/main/webapp/static/themes/light/images/flags/dm.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fbffcba3cb0f20016c9717614127b89db4c9664
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/dm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/do.png b/src/main/webapp/static/themes/light/images/flags/do.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a04932d87963bcb063497b1179cee12f407e18a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/do.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/dz.png b/src/main/webapp/static/themes/light/images/flags/dz.png
new file mode 100644
index 0000000000000000000000000000000000000000..335c2391d39090d6b40a409870a74326665589c2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/dz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ec.png b/src/main/webapp/static/themes/light/images/flags/ec.png
new file mode 100644
index 0000000000000000000000000000000000000000..0caa0b1e785295d003869330fc4e073dce07e7f6
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ec.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ee.png b/src/main/webapp/static/themes/light/images/flags/ee.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c82efb7dde983e6ab0f6bebb3b2eb326ce3874a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ee.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/eg.png b/src/main/webapp/static/themes/light/images/flags/eg.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a3f7a10b5757b006948ea4436fb242d02dc9a4e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/eg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/eh.png b/src/main/webapp/static/themes/light/images/flags/eh.png
new file mode 100644
index 0000000000000000000000000000000000000000..90a1195b47a6f12c70d06cb0bd0e4ea88d7bfb03
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/eh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/england.png b/src/main/webapp/static/themes/light/images/flags/england.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a7311d5617df952329b1e293fdfddc64e95ca72
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/england.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/er.png b/src/main/webapp/static/themes/light/images/flags/er.png
new file mode 100644
index 0000000000000000000000000000000000000000..13065ae99ccace42df97be8b594049f9f40dcc4f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/er.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/es.png b/src/main/webapp/static/themes/light/images/flags/es.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2de2d7111e3cb59cf6511dd2ab045e824bdb43e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/es.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/et.png b/src/main/webapp/static/themes/light/images/flags/et.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e893fa056c3d27448b6b9b6579486439ac6e490
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/et.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/europeanunion.png b/src/main/webapp/static/themes/light/images/flags/europeanunion.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6d87115808a2a43c079fb8e1b33134ffb523c79
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/europeanunion.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fam.png b/src/main/webapp/static/themes/light/images/flags/fam.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf50c759eb28b5962720aa1ce0617a29003e477d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fam.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fi.png b/src/main/webapp/static/themes/light/images/flags/fi.png
new file mode 100644
index 0000000000000000000000000000000000000000..14ec091b802cf24ebd9f8825f81cd2f6e360b46d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fi.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fj.png b/src/main/webapp/static/themes/light/images/flags/fj.png
new file mode 100644
index 0000000000000000000000000000000000000000..cee998892eb316c3293ef2d52afec9218bdbbc03
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fj.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fk.png b/src/main/webapp/static/themes/light/images/flags/fk.png
new file mode 100644
index 0000000000000000000000000000000000000000..ceaeb27decb3f138ab5b385491c092557b79da92
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fm.png b/src/main/webapp/static/themes/light/images/flags/fm.png
new file mode 100644
index 0000000000000000000000000000000000000000..066bb247389893b9ac33893fe346732ef394d8d6
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fo.png b/src/main/webapp/static/themes/light/images/flags/fo.png
new file mode 100644
index 0000000000000000000000000000000000000000..cbceb809eb9b96d5d8ae231a53c4f4a98f0fcba9
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fo.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/fr.png b/src/main/webapp/static/themes/light/images/flags/fr.png
new file mode 100644
index 0000000000000000000000000000000000000000..8332c4ec23c853944c29b02d7b32a88033f48a71
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/fr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ga.png b/src/main/webapp/static/themes/light/images/flags/ga.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e0d434363abd6766f9e8a8c8c9ad7275d23702a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ga.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/galicia.png b/src/main/webapp/static/themes/light/images/flags/galicia.png
new file mode 100644
index 0000000000000000000000000000000000000000..401320c22b69a98eb4088b486f600b28c229028c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/galicia.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gb.png b/src/main/webapp/static/themes/light/images/flags/gb.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff701e19f6d2c0658fb23b1d94124cba4ce60851
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gb.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gd.png b/src/main/webapp/static/themes/light/images/flags/gd.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ab57f5489bb9ebb6450cb27f4efe0cfb466144e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gd.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ge.png b/src/main/webapp/static/themes/light/images/flags/ge.png
new file mode 100644
index 0000000000000000000000000000000000000000..728d97078df1d07241ae605dff2f2cac463be72e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ge.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gf.png b/src/main/webapp/static/themes/light/images/flags/gf.png
new file mode 100644
index 0000000000000000000000000000000000000000..8332c4ec23c853944c29b02d7b32a88033f48a71
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gh.png b/src/main/webapp/static/themes/light/images/flags/gh.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e2f8965914ddd3bd6be97674d2e40a9a3f7d26f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gi.png b/src/main/webapp/static/themes/light/images/flags/gi.png
new file mode 100644
index 0000000000000000000000000000000000000000..e76797f62fedcbfca8c83c51951680d6a6e9081f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gi.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gl.png b/src/main/webapp/static/themes/light/images/flags/gl.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef12a73bf9628ff5a67b81bd980d9c5d2b2c0f05
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gm.png b/src/main/webapp/static/themes/light/images/flags/gm.png
new file mode 100644
index 0000000000000000000000000000000000000000..0720b667aff506d7892c5c301af04e6bbf932751
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gn.png b/src/main/webapp/static/themes/light/images/flags/gn.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea660b01faefde01ad2527a6abcf7d1a5c1b0526
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gp.png b/src/main/webapp/static/themes/light/images/flags/gp.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbb086d0012637103c0bebca861c10116ed3d527
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gp.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gq.png b/src/main/webapp/static/themes/light/images/flags/gq.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebe20a28de06f3e6e520cea360cfc57586a5bec3
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gq.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gr.png b/src/main/webapp/static/themes/light/images/flags/gr.png
new file mode 100644
index 0000000000000000000000000000000000000000..8651ade7cbe030e85efc811a844d8f366c97a50c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gs.png b/src/main/webapp/static/themes/light/images/flags/gs.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ef0bf598d9aa7c12264551d5db06f44307911d1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gs.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gt.png b/src/main/webapp/static/themes/light/images/flags/gt.png
new file mode 100644
index 0000000000000000000000000000000000000000..c43a70d36424b66f1627216ad988cd23a4be9285
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gu.png b/src/main/webapp/static/themes/light/images/flags/gu.png
new file mode 100644
index 0000000000000000000000000000000000000000..92f37c05330243ce2eae41bcd9a368c66d656875
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gw.png b/src/main/webapp/static/themes/light/images/flags/gw.png
new file mode 100644
index 0000000000000000000000000000000000000000..b37bcf06bf20520555542c58534333e92022d929
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/gy.png b/src/main/webapp/static/themes/light/images/flags/gy.png
new file mode 100644
index 0000000000000000000000000000000000000000..22cbe2f5914953f1cdea98b7b0979b327ced9582
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/gy.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/hk.png b/src/main/webapp/static/themes/light/images/flags/hk.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5c380ca9d84d30674f05b95c2f645b500626c07
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/hk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/hm.png b/src/main/webapp/static/themes/light/images/flags/hm.png
new file mode 100644
index 0000000000000000000000000000000000000000..a01389a745d51e16b01a9dc0a707572564a17625
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/hm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/hn.png b/src/main/webapp/static/themes/light/images/flags/hn.png
new file mode 100644
index 0000000000000000000000000000000000000000..96f838859fd2aed975f5f4134050fdbc0486ce1e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/hn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/hr.png b/src/main/webapp/static/themes/light/images/flags/hr.png
new file mode 100644
index 0000000000000000000000000000000000000000..696b515460ddb670acb7e9de4438aaf21fc5fb77
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/hr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ht.png b/src/main/webapp/static/themes/light/images/flags/ht.png
new file mode 100644
index 0000000000000000000000000000000000000000..416052af772d719132c152e26649635a97a63a94
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ht.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/hu.png b/src/main/webapp/static/themes/light/images/flags/hu.png
new file mode 100644
index 0000000000000000000000000000000000000000..7baafe44ddcaec29ad9f187f759a7fa3a1a5df00
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/hu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/id.png b/src/main/webapp/static/themes/light/images/flags/id.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6bc0fafac79403c97c64ba0228d35f250d05b57
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/id.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ie.png b/src/main/webapp/static/themes/light/images/flags/ie.png
new file mode 100644
index 0000000000000000000000000000000000000000..26baa31e182ddd14106e67de1ac092a7da8e4899
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ie.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/il.png b/src/main/webapp/static/themes/light/images/flags/il.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ca772d0b79b255872cde2fb29060bbbbad950f2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/il.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/in.png b/src/main/webapp/static/themes/light/images/flags/in.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4d7e81a98d705da8d7054e77e7d311805659678
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/in.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/io.png b/src/main/webapp/static/themes/light/images/flags/io.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e74b6a316477b90cce8b5f2111f911b1c640950
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/io.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/iq.png b/src/main/webapp/static/themes/light/images/flags/iq.png
new file mode 100644
index 0000000000000000000000000000000000000000..878a351403a9a33fd9ae3af1ffd54739545f364d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/iq.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ir.png b/src/main/webapp/static/themes/light/images/flags/ir.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5fd136aee534ecb59914e336cad18d18ead2a4a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ir.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/is.png b/src/main/webapp/static/themes/light/images/flags/is.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8f6d0f06675a9570c2c6e696ee51282097c3876
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/is.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/it.png b/src/main/webapp/static/themes/light/images/flags/it.png
new file mode 100644
index 0000000000000000000000000000000000000000..89692f74f051cd43503744c3dab65c8ba773b7e2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/it.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/jm.png b/src/main/webapp/static/themes/light/images/flags/jm.png
new file mode 100644
index 0000000000000000000000000000000000000000..7be119e03d203695325568174b72522124bb2f12
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/jm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/jo.png b/src/main/webapp/static/themes/light/images/flags/jo.png
new file mode 100644
index 0000000000000000000000000000000000000000..11bd4972b6d5f134045d4e8ce134601ea9b5654f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/jo.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/jp.png b/src/main/webapp/static/themes/light/images/flags/jp.png
new file mode 100644
index 0000000000000000000000000000000000000000..325fbad3ffd3075a4a84d8d898ad26ef7d3e0d56
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/jp.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ke.png b/src/main/webapp/static/themes/light/images/flags/ke.png
new file mode 100644
index 0000000000000000000000000000000000000000..51879adf17c0c29167225a81645cf1123dda84a0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ke.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kg.png b/src/main/webapp/static/themes/light/images/flags/kg.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a818f67ea37e1bf1398b3e2f92a52e331abf4e7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kh.png b/src/main/webapp/static/themes/light/images/flags/kh.png
new file mode 100644
index 0000000000000000000000000000000000000000..30f6bb1b9b6c5bf355f67a17531fa73beafa6639
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ki.png b/src/main/webapp/static/themes/light/images/flags/ki.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dcce4b33ffe1f40d490cb1a2e03efe22ea56155
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ki.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/km.png b/src/main/webapp/static/themes/light/images/flags/km.png
new file mode 100644
index 0000000000000000000000000000000000000000..812b2f56c5a2a6af805d9edd67d549952d5278ca
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/km.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kn.png b/src/main/webapp/static/themes/light/images/flags/kn.png
new file mode 100644
index 0000000000000000000000000000000000000000..febd5b486f3f90056637b23caa26d838fbadd7d0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kp.png b/src/main/webapp/static/themes/light/images/flags/kp.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3d509aa874809a323ea99f3b37ece8a02201f77
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kp.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kr.png b/src/main/webapp/static/themes/light/images/flags/kr.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c0a78eb942da568f9cdac7190c17e23cceda7ed
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kw.png b/src/main/webapp/static/themes/light/images/flags/kw.png
new file mode 100644
index 0000000000000000000000000000000000000000..96546da328ab142ab0c7370511cbdbeb9a20efaf
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ky.png b/src/main/webapp/static/themes/light/images/flags/ky.png
new file mode 100644
index 0000000000000000000000000000000000000000..15c5f8e4775b2b68e0360c1f4ff1f37e61611276
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ky.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/kz.png b/src/main/webapp/static/themes/light/images/flags/kz.png
new file mode 100644
index 0000000000000000000000000000000000000000..45a8c887424cff6eb0471f5a1535139b965e241e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/kz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/la.png b/src/main/webapp/static/themes/light/images/flags/la.png
new file mode 100644
index 0000000000000000000000000000000000000000..e28acd018a21b62d2cc4b76eec7bbe1f714dfc6c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/la.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lb.png b/src/main/webapp/static/themes/light/images/flags/lb.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0d452bf868e0cd6417f518f1dbe695f191ef392
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lb.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lc.png b/src/main/webapp/static/themes/light/images/flags/lc.png
new file mode 100644
index 0000000000000000000000000000000000000000..a47d065541b0d998da832e1981b479097a9b36aa
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/li.png b/src/main/webapp/static/themes/light/images/flags/li.png
new file mode 100644
index 0000000000000000000000000000000000000000..6469909c013eb9b752ca001694620a229f5792c7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/li.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lk.png b/src/main/webapp/static/themes/light/images/flags/lk.png
new file mode 100644
index 0000000000000000000000000000000000000000..088aad6db9515dc659152b18ffdf60c269768777
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lr.png b/src/main/webapp/static/themes/light/images/flags/lr.png
new file mode 100644
index 0000000000000000000000000000000000000000..89a5bc7e70711575c1ee3b83cc2be7f0e1fb29c5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ls.png b/src/main/webapp/static/themes/light/images/flags/ls.png
new file mode 100644
index 0000000000000000000000000000000000000000..33fdef101f74e38e2422bb85dc8a31bbf1da326b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ls.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lt.png b/src/main/webapp/static/themes/light/images/flags/lt.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8ef0da0919b1e77ca91232de0cdf0d99dc8d68f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lu.png b/src/main/webapp/static/themes/light/images/flags/lu.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cabba98ae70837922beadc41453b5f848f03854
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/lv.png b/src/main/webapp/static/themes/light/images/flags/lv.png
new file mode 100644
index 0000000000000000000000000000000000000000..49b69981085ff54568907cd51a56a1e5d8b01ada
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/lv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ly.png b/src/main/webapp/static/themes/light/images/flags/ly.png
new file mode 100644
index 0000000000000000000000000000000000000000..b163a9f8a0660fc223c2648b22ed6a074fe28b21
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ly.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ma.png b/src/main/webapp/static/themes/light/images/flags/ma.png
new file mode 100644
index 0000000000000000000000000000000000000000..f386770280b92a96a02b13032e056c3adfebfa18
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ma.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mc.png b/src/main/webapp/static/themes/light/images/flags/mc.png
new file mode 100644
index 0000000000000000000000000000000000000000..1aa830f121ab8ee0107d03251a03fee7cbcf790b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/md.png b/src/main/webapp/static/themes/light/images/flags/md.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e92c189044b7ec02a5b7a3a9460e1d01b354801
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/md.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/me.png b/src/main/webapp/static/themes/light/images/flags/me.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac7253558ab939481a85cc06dcc4d73503afb9f0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/me.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mg.png b/src/main/webapp/static/themes/light/images/flags/mg.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2715b3d0e11b3a92c4f33cfad6b4f3488d0310d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mh.png b/src/main/webapp/static/themes/light/images/flags/mh.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb523a8c39d40401b9abcfb144a73cbb2d76b286
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mk.png b/src/main/webapp/static/themes/light/images/flags/mk.png
new file mode 100644
index 0000000000000000000000000000000000000000..db173aaff21955d9aed640beb344986335a1d164
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ml.png b/src/main/webapp/static/themes/light/images/flags/ml.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cec8ba440b76ab6ebef1bba4bcb924f6ba40eaf
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ml.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mm.png b/src/main/webapp/static/themes/light/images/flags/mm.png
new file mode 100644
index 0000000000000000000000000000000000000000..f464f67ffb4c7108d217a9f526acb17786641284
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mn.png b/src/main/webapp/static/themes/light/images/flags/mn.png
new file mode 100644
index 0000000000000000000000000000000000000000..9396355db45a8ee040c790782209868acaad4b85
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mo.png b/src/main/webapp/static/themes/light/images/flags/mo.png
new file mode 100644
index 0000000000000000000000000000000000000000..deb801dda2457f619d53bc176cc889d362cfa032
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mo.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mp.png b/src/main/webapp/static/themes/light/images/flags/mp.png
new file mode 100644
index 0000000000000000000000000000000000000000..298d588b14b9b19e04c26ab36266ace317b81d59
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mp.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mq.png b/src/main/webapp/static/themes/light/images/flags/mq.png
new file mode 100644
index 0000000000000000000000000000000000000000..010143b3867f21e7791b8254e806b325c13b2895
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mq.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mr.png b/src/main/webapp/static/themes/light/images/flags/mr.png
new file mode 100644
index 0000000000000000000000000000000000000000..319546b100864f32c26f29b54b87fe1aee73af21
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ms.png b/src/main/webapp/static/themes/light/images/flags/ms.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4cbb433d8f9fe49f06585dc46ee15593e3e621c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ms.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mt.png b/src/main/webapp/static/themes/light/images/flags/mt.png
new file mode 100644
index 0000000000000000000000000000000000000000..00af94871de66cd0fbf0ca8e46dc436d66e2f713
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mu.png b/src/main/webapp/static/themes/light/images/flags/mu.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7fdce1bdd7d174a894a4a075743695301d32450
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mv.png b/src/main/webapp/static/themes/light/images/flags/mv.png
new file mode 100644
index 0000000000000000000000000000000000000000..5073d9ec47c3b98e18bd3cd8499433d463ab8e67
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mw.png b/src/main/webapp/static/themes/light/images/flags/mw.png
new file mode 100644
index 0000000000000000000000000000000000000000..13886e9f8bf65186eb96071d4399fbe077ec92a3
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mx.png b/src/main/webapp/static/themes/light/images/flags/mx.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bc58ab3e3552b74d990d28a0f500e9eb6209dfe
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mx.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/my.png b/src/main/webapp/static/themes/light/images/flags/my.png
new file mode 100644
index 0000000000000000000000000000000000000000..9034cbab2c02704b65fba6ecc4a7a1c1d053b6c5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/my.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/mz.png b/src/main/webapp/static/themes/light/images/flags/mz.png
new file mode 100644
index 0000000000000000000000000000000000000000..76405e063d43f2f3b5b9cae4f76d9f1c73cea25b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/mz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/na.png b/src/main/webapp/static/themes/light/images/flags/na.png
new file mode 100644
index 0000000000000000000000000000000000000000..63358c67df905515b49cf50cd766834dea8c18ce
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/na.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nc.png b/src/main/webapp/static/themes/light/images/flags/nc.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cad28378232e91848d9a2c8bd9d72a9e6a635f8
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ne.png b/src/main/webapp/static/themes/light/images/flags/ne.png
new file mode 100644
index 0000000000000000000000000000000000000000..d85f424f38da0678471ef4b3dc697675118bc7e0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ne.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nf.png b/src/main/webapp/static/themes/light/images/flags/nf.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9bcdda12ca7b07b3d16bd88c759db2c82c88884
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ng.png b/src/main/webapp/static/themes/light/images/flags/ng.png
new file mode 100644
index 0000000000000000000000000000000000000000..3eea2e020756c41abf81f765659a864c174f89db
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ng.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ni.png b/src/main/webapp/static/themes/light/images/flags/ni.png
new file mode 100644
index 0000000000000000000000000000000000000000..3969aaaaee470644115aa805cc344d032d2faa29
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ni.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nl.png b/src/main/webapp/static/themes/light/images/flags/nl.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe44791e32b790949b0317ab3c258864b9024ebe
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/no.png b/src/main/webapp/static/themes/light/images/flags/no.png
new file mode 100644
index 0000000000000000000000000000000000000000..160b6b5b79db15e623fa55e5774e5d160b933180
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/no.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/np.png b/src/main/webapp/static/themes/light/images/flags/np.png
new file mode 100644
index 0000000000000000000000000000000000000000..aeb058b7ea8b5d88519dadc69cfe7cdba77a587f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/np.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nr.png b/src/main/webapp/static/themes/light/images/flags/nr.png
new file mode 100644
index 0000000000000000000000000000000000000000..705fc337ccd50d4d49709597d5bd4b946c0d8a32
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nu.png b/src/main/webapp/static/themes/light/images/flags/nu.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3ce4aedda9bea0553b43c8d3d849eba6b3d2cd1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/nz.png b/src/main/webapp/static/themes/light/images/flags/nz.png
new file mode 100644
index 0000000000000000000000000000000000000000..10d6306d17429012904035e4097bf93a8d205971
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/nz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/om.png b/src/main/webapp/static/themes/light/images/flags/om.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ffba7e8c43f160bb0d9634fb9e6cb4093741340
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/om.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pa.png b/src/main/webapp/static/themes/light/images/flags/pa.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ee9a780955566cc7dc2f59ce175f32d3731a0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pa.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pe.png b/src/main/webapp/static/themes/light/images/flags/pe.png
new file mode 100644
index 0000000000000000000000000000000000000000..62a04977fb2b29b96d01ffef3b88b6bf2ff05862
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pe.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pf.png b/src/main/webapp/static/themes/light/images/flags/pf.png
new file mode 100644
index 0000000000000000000000000000000000000000..771a0f652254b4e891fc73910aab38967864da54
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pg.png b/src/main/webapp/static/themes/light/images/flags/pg.png
new file mode 100644
index 0000000000000000000000000000000000000000..10d6233496c10e52ead975c5a504459fad68ffb8
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ph.png b/src/main/webapp/static/themes/light/images/flags/ph.png
new file mode 100644
index 0000000000000000000000000000000000000000..b89e15935d9daf25173f89a36d8111824fda5db5
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ph.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pk.png b/src/main/webapp/static/themes/light/images/flags/pk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9df70ca4d63a979e6bcea2399263c081ce5eaeb
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pl.png b/src/main/webapp/static/themes/light/images/flags/pl.png
new file mode 100644
index 0000000000000000000000000000000000000000..d413d010b5b097c4e0a4604eba86dad79567ed16
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pm.png b/src/main/webapp/static/themes/light/images/flags/pm.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba91d2c7a0de26e554979f6351d42a1a4e22de3b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pn.png b/src/main/webapp/static/themes/light/images/flags/pn.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa9344f575bc92f4c1a5043e6e7d0a8b239daa64
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pr.png b/src/main/webapp/static/themes/light/images/flags/pr.png
new file mode 100644
index 0000000000000000000000000000000000000000..82d9130da452fc294baa03a349ec2e71259a80af
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ps.png b/src/main/webapp/static/themes/light/images/flags/ps.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5f547762ed3a7f556b1cb8b12fb80ed17fe1c4e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ps.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pt.png b/src/main/webapp/static/themes/light/images/flags/pt.png
new file mode 100644
index 0000000000000000000000000000000000000000..ece79801506ecf8c42397349b4fa2cfe8176b999
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/pw.png b/src/main/webapp/static/themes/light/images/flags/pw.png
new file mode 100644
index 0000000000000000000000000000000000000000..6178b254a5dd2d91eeaa2a2adf124b6dba0af27f
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/pw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/py.png b/src/main/webapp/static/themes/light/images/flags/py.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb8723c06408828ce68a932ff472daabecc64139
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/py.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/qa.png b/src/main/webapp/static/themes/light/images/flags/qa.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed4c621fa7181fb14c46325a76a16422653aafc7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/qa.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/re.png b/src/main/webapp/static/themes/light/images/flags/re.png
new file mode 100644
index 0000000000000000000000000000000000000000..8332c4ec23c853944c29b02d7b32a88033f48a71
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/re.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/readme.txt b/src/main/webapp/static/themes/light/images/flags/readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1028eec3b41131e7bfc4608fd0c7a6a0df638ab4
--- /dev/null
+++ b/src/main/webapp/static/themes/light/images/flags/readme.txt
@@ -0,0 +1,9 @@
+Flag icons - http://www.famfamfam.com
+
+These icons are public domain, and as such are free for any use (attribution appreciated but not required).
+
+Note that these flags are named using the ISO3166-1 alpha-2 country codes where appropriate. A list of codes can be found at http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
+
+If you find these icons useful, please donate via paypal to mjames@gmail.com (or click the donate button available at http://www.famfamfam.com/lab/icons/silk)
+
+Contact: mjames@gmail.com
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/images/flags/rm.png b/src/main/webapp/static/themes/light/images/flags/rm.png
new file mode 100644
index 0000000000000000000000000000000000000000..144f6285d5112c92999d07d2699f22faaf3c03fd
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/rm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ro.png b/src/main/webapp/static/themes/light/images/flags/ro.png
new file mode 100644
index 0000000000000000000000000000000000000000..57e74a6510dd6a4b29668db181cb94727d1eb4b7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ro.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/rs.png b/src/main/webapp/static/themes/light/images/flags/rs.png
new file mode 100644
index 0000000000000000000000000000000000000000..9439a5b605d82713decf23aba9c63c8d719cc200
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/rs.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ru.png b/src/main/webapp/static/themes/light/images/flags/ru.png
new file mode 100644
index 0000000000000000000000000000000000000000..47da4214fd9edb383687c1d4f84fe8b42a51ceb2
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ru.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/rw.png b/src/main/webapp/static/themes/light/images/flags/rw.png
new file mode 100644
index 0000000000000000000000000000000000000000..535649178a885355c836b5c838d096ec3ce8d365
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/rw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sa.png b/src/main/webapp/static/themes/light/images/flags/sa.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4641c7e8b0dd79aafaa73babdb525d3d2dc6a8e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sa.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sb.png b/src/main/webapp/static/themes/light/images/flags/sb.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9937ccf091a3faecacbd5101c6630ea0d0b16d8
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sb.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sc.png b/src/main/webapp/static/themes/light/images/flags/sc.png
new file mode 100644
index 0000000000000000000000000000000000000000..39ee37184e09c39dd05425db127288def220abb7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/scotland.png b/src/main/webapp/static/themes/light/images/flags/scotland.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0e57b4122acbf0beea91277639f92c010afe103
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/scotland.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sd.png b/src/main/webapp/static/themes/light/images/flags/sd.png
new file mode 100644
index 0000000000000000000000000000000000000000..eaab69eb78776f8593b41c8fdc3fd65a86119a0a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sd.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/se.png b/src/main/webapp/static/themes/light/images/flags/se.png
new file mode 100644
index 0000000000000000000000000000000000000000..1994653dac1fc1c6ee3c9fcb35c8af97f16eefc7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/se.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sg.png b/src/main/webapp/static/themes/light/images/flags/sg.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd34d6121073fffcb2fcb5b9402b3e6361cded35
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sh.png b/src/main/webapp/static/themes/light/images/flags/sh.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b1d2a29107be96413eb86e64a75ac7a3ba5793d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sh.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/si.png b/src/main/webapp/static/themes/light/images/flags/si.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb1476ff5fe8e0d3af4fc6bd11e513d95fd9cccd
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/si.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sj.png b/src/main/webapp/static/themes/light/images/flags/sj.png
new file mode 100644
index 0000000000000000000000000000000000000000..160b6b5b79db15e623fa55e5774e5d160b933180
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sj.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sk.png b/src/main/webapp/static/themes/light/images/flags/sk.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ccbc8274ad8f76f28960b83f2bba2a619029d87
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sl.png b/src/main/webapp/static/themes/light/images/flags/sl.png
new file mode 100644
index 0000000000000000000000000000000000000000..12d812d29fa6ea097743074e4a341ccfc691946a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sm.png b/src/main/webapp/static/themes/light/images/flags/sm.png
new file mode 100644
index 0000000000000000000000000000000000000000..3df2fdcf8c0b0cc9b581f704c466db1f15c0d422
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sn.png b/src/main/webapp/static/themes/light/images/flags/sn.png
new file mode 100644
index 0000000000000000000000000000000000000000..eabb71db4e8275a5bfb7b1b8f3a8374d50da95db
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/so.png b/src/main/webapp/static/themes/light/images/flags/so.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a1ea4b29b3f541f047dead7c202fd3b566575a9
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/so.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sq.png b/src/main/webapp/static/themes/light/images/flags/sq.png
new file mode 100644
index 0000000000000000000000000000000000000000..85a683d41d82822967d44eb2cece0b5a1b1b96ca
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sq.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sr.png b/src/main/webapp/static/themes/light/images/flags/sr.png
new file mode 100644
index 0000000000000000000000000000000000000000..5eff9271d28cf8bf1cb85378600c4fa4997faa33
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/st.png b/src/main/webapp/static/themes/light/images/flags/st.png
new file mode 100644
index 0000000000000000000000000000000000000000..2978557b19d7d4283aa9a00ca78dcdd2580edc7a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/st.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sv.png b/src/main/webapp/static/themes/light/images/flags/sv.png
new file mode 100644
index 0000000000000000000000000000000000000000..24987990b733244b23f8e03059f4924804662c75
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sy.png b/src/main/webapp/static/themes/light/images/flags/sy.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5ce30dcb79b443ebc1615fe4889cc26e2d762b1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sy.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/sz.png b/src/main/webapp/static/themes/light/images/flags/sz.png
new file mode 100644
index 0000000000000000000000000000000000000000..914ee861d419bc6c1e8a7ac432e96deea7504d3a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/sz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tc.png b/src/main/webapp/static/themes/light/images/flags/tc.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fc1156bec3389e54d3c5bb8339901773a881e68
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/td.png b/src/main/webapp/static/themes/light/images/flags/td.png
new file mode 100644
index 0000000000000000000000000000000000000000..667f21fd9d552df546386174e506a6b5b606a258
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/td.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tf.png b/src/main/webapp/static/themes/light/images/flags/tf.png
new file mode 100644
index 0000000000000000000000000000000000000000..80529a4361941e01d1def5d581bf2847cf99fef6
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tg.png b/src/main/webapp/static/themes/light/images/flags/tg.png
new file mode 100644
index 0000000000000000000000000000000000000000..3aa00ad4dface0a9c23744ab451cec0443f187bf
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/th.png b/src/main/webapp/static/themes/light/images/flags/th.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd8ba91719ba641502bc7ffda16c25dc71b2066c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/th.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tj.png b/src/main/webapp/static/themes/light/images/flags/tj.png
new file mode 100644
index 0000000000000000000000000000000000000000..617bf6455f69849b7f66f43ff36093bbcb07fc3d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tj.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tk.png b/src/main/webapp/static/themes/light/images/flags/tk.png
new file mode 100644
index 0000000000000000000000000000000000000000..67b8c8cb5191080a1cf33125cfd05efe0b9a76e0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tk.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tl.png b/src/main/webapp/static/themes/light/images/flags/tl.png
new file mode 100644
index 0000000000000000000000000000000000000000..77da181e9c57a490c90a99ec08a8718ea8fc0835
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tl.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tm.png b/src/main/webapp/static/themes/light/images/flags/tm.png
new file mode 100644
index 0000000000000000000000000000000000000000..828020ecd0f6fc73348373c9e7a235fdced09de7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tn.png b/src/main/webapp/static/themes/light/images/flags/tn.png
new file mode 100644
index 0000000000000000000000000000000000000000..183cdd3dc98c6957bde83f375a431e543a3ce9e4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/to.png b/src/main/webapp/static/themes/light/images/flags/to.png
new file mode 100644
index 0000000000000000000000000000000000000000..f89b8ba755f5609dc761384fe0656f73c854031e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/to.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tr.png b/src/main/webapp/static/themes/light/images/flags/tr.png
new file mode 100644
index 0000000000000000000000000000000000000000..be32f77e9910c0896c1ee8e7ed4f0edf815a517e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tr.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tt.png b/src/main/webapp/static/themes/light/images/flags/tt.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a11c1e20ac7f5a4761049adf5e326654b94069b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tv.png b/src/main/webapp/static/themes/light/images/flags/tv.png
new file mode 100644
index 0000000000000000000000000000000000000000..28274c5fb40e5d3bacd7c05d9a1b8017eeaffa6c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tv.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tw.png b/src/main/webapp/static/themes/light/images/flags/tw.png
new file mode 100644
index 0000000000000000000000000000000000000000..f31c654c99c023dbed9a7070103c4542326c4464
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tw.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/tz.png b/src/main/webapp/static/themes/light/images/flags/tz.png
new file mode 100644
index 0000000000000000000000000000000000000000..c00ff7961424da8dabee61bfb53158c537e935e1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/tz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ua.png b/src/main/webapp/static/themes/light/images/flags/ua.png
new file mode 100644
index 0000000000000000000000000000000000000000..09563a21941f2a94c937d43aceda1aa546246302
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ua.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ug.png b/src/main/webapp/static/themes/light/images/flags/ug.png
new file mode 100644
index 0000000000000000000000000000000000000000..33f4affadee432c0d4f499fd7e04736a29c48b06
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ug.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/um.png b/src/main/webapp/static/themes/light/images/flags/um.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1dd9654b0705371876d3e3d06f950be02de2a73
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/um.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/us.png b/src/main/webapp/static/themes/light/images/flags/us.png
new file mode 100644
index 0000000000000000000000000000000000000000..10f451fe85c41c6c9a06d543a57114ae2f87ecc1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/us.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/uy.png b/src/main/webapp/static/themes/light/images/flags/uy.png
new file mode 100644
index 0000000000000000000000000000000000000000..31d948a067fe02d067a8c2e69f28cca446bc7c57
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/uy.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/uz.png b/src/main/webapp/static/themes/light/images/flags/uz.png
new file mode 100644
index 0000000000000000000000000000000000000000..fef5dc1709d69d32f6535fa9694069a56097adc9
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/uz.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/va.png b/src/main/webapp/static/themes/light/images/flags/va.png
new file mode 100644
index 0000000000000000000000000000000000000000..b31eaf225d6fd770e0557c2baf8747c91ce88983
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/va.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/vc.png b/src/main/webapp/static/themes/light/images/flags/vc.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fa17b0612bd318a649571fbc4f68e4512c65c5b
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/vc.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ve.png b/src/main/webapp/static/themes/light/images/flags/ve.png
new file mode 100644
index 0000000000000000000000000000000000000000..00c90f9aff09fb1b6d697c6a5680df01f37cad60
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ve.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/vg.png b/src/main/webapp/static/themes/light/images/flags/vg.png
new file mode 100644
index 0000000000000000000000000000000000000000..415690798657a5921fd007b8ae85a5e5d414e7fa
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/vg.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/vi.png b/src/main/webapp/static/themes/light/images/flags/vi.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed26915a3238534bf8f1249b75dd9ddde10db65a
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/vi.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/vn.png b/src/main/webapp/static/themes/light/images/flags/vn.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec7cd48a3468a511e27c49a69194b0ef5564e615
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/vn.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/vu.png b/src/main/webapp/static/themes/light/images/flags/vu.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3397bc63d718b344e604266259134e653925c9d
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/vu.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/wales.png b/src/main/webapp/static/themes/light/images/flags/wales.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0d7cee1107205e017c840042272f12476ee0aa0
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/wales.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/wf.png b/src/main/webapp/static/themes/light/images/flags/wf.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f9558734f0482439b2292a01f768639a287ac25
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/wf.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ws.png b/src/main/webapp/static/themes/light/images/flags/ws.png
new file mode 100644
index 0000000000000000000000000000000000000000..c16950802ea95b40a4e024be6cce870b1991f40e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ws.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/ye.png b/src/main/webapp/static/themes/light/images/flags/ye.png
new file mode 100644
index 0000000000000000000000000000000000000000..468dfad03867903f825e82de35934f3191e5f638
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/ye.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/yt.png b/src/main/webapp/static/themes/light/images/flags/yt.png
new file mode 100644
index 0000000000000000000000000000000000000000..c298f378beee6b170a6909fd4f73ffbeb5997cff
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/yt.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/za.png b/src/main/webapp/static/themes/light/images/flags/za.png
new file mode 100644
index 0000000000000000000000000000000000000000..57c58e2119f402072640ca758657798b621f3fb1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/za.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/zm.png b/src/main/webapp/static/themes/light/images/flags/zm.png
new file mode 100644
index 0000000000000000000000000000000000000000..c25b07beef894408ae11c3be294d6e0eeb28c0bb
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/zm.png differ
diff --git a/src/main/webapp/static/themes/light/images/flags/zw.png b/src/main/webapp/static/themes/light/images/flags/zw.png
new file mode 100644
index 0000000000000000000000000000000000000000..53c97259b9b3e31c2f612e78344d035281682fa7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/flags/zw.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy.png b/src/main/webapp/static/themes/light/images/portrait/dummy.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e94655acf429c1191ed0780bd4d0e0ed048c7c7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy_female_big.png b/src/main/webapp/static/themes/light/images/portrait/dummy_female_big.png
new file mode 100644
index 0000000000000000000000000000000000000000..855f322e79a9a1ddec49a59c795d1fd7d7ef3caf
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy_female_big.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy_female_small.png b/src/main/webapp/static/themes/light/images/portrait/dummy_female_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab9857cb80e7384366399794569f0e9e553aced4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy_female_small.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy_male_big.png b/src/main/webapp/static/themes/light/images/portrait/dummy_male_big.png
new file mode 100644
index 0000000000000000000000000000000000000000..54f33798d59d0a87656ddbedf7ccb885c908c238
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy_male_big.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy_male_small.png b/src/main/webapp/static/themes/light/images/portrait/dummy_male_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..906aaf30040af5f5afced6fe088a4adb932822f4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy_male_small.png differ
diff --git a/src/main/webapp/static/themes/light/images/portrait/dummy_small.png b/src/main/webapp/static/themes/light/images/portrait/dummy_small.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd287dd32694b2726c5718f023840e405cb1248c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/portrait/dummy_small.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/delicious_16.png b/src/main/webapp/static/themes/light/images/social/delicious_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4ebb98184e4b985ebc03634fde751b7fc38db93
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/delicious_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/digg_16.png b/src/main/webapp/static/themes/light/images/social/digg_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa2efee1b611b0d4bdee591936418e2d48e1499c
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/digg_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/email_16.png b/src/main/webapp/static/themes/light/images/social/email_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cabb177d7738f49c0f2993234b458016dd6ea16
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/email_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/facebook_16.png b/src/main/webapp/static/themes/light/images/social/facebook_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0faf29a7eb7f6dd86b429a53d7bfe85a41a25b1
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/facebook_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/google_16.png b/src/main/webapp/static/themes/light/images/social/google_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..aeaca23d25fea35e0c3e2209f11587dc0a859be7
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/google_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/link_16.png b/src/main/webapp/static/themes/light/images/social/link_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..de6f73b55e7c0b5c0829db63dea935647c69d3e4
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/link_16.png differ
diff --git a/src/main/webapp/static/themes/light/images/social/twitter_16.png b/src/main/webapp/static/themes/light/images/social/twitter_16.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bcd957c4e2d0c747a9ffa1335aa782e0fb5387e
Binary files /dev/null and b/src/main/webapp/static/themes/light/images/social/twitter_16.png differ
diff --git a/src/main/webapp/static/themes/light/modules/_content.scss b/src/main/webapp/static/themes/light/modules/_content.scss
new file mode 100644
index 0000000000000000000000000000000000000000..33e2fc1e140838ef23c8f51569b46cfcf8e517b2
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_content.scss
@@ -0,0 +1,172 @@
+/*
+ * =================================================
+ *  
+ * Content styles for OpenOLAT
+ *   
+ * @author gnaegi,  www.frentix.com
+ * @date April 2014
+ *
+ * Please also read themes.README!
+ *
+ * This file is compiled to a separate CSS-file as 
+ * well as included as a module to the main style. The 
+ * separate CSS will be be included to the tinyMCE
+ * HTML editor and injected into iframes that display
+ * learning content. 
+ *  =================================================
+ */
+
+/* content boxes */
+.b_info { 
+	padding: 5px 5px 5px 30px; 
+	background: #E9EAEF url(../../openolat/images/information-white.png) no-repeat 5px 5px; 
+	border:1px solid #C5C4C4; 
+	@include o-border-radius(4px);
+}
+p.b_info, div.b_info {margin: 1em 0;} /* tiny needs something here */
+
+.b_note {
+	padding: 1em; 
+	background: #E2E2E2; 
+	border: 2px #B5B5B5 solid; 
+	@include o-border-radius(4px);
+}
+p.b_note, div.b_note {margin: 1em 0;} /* tiny needs something here */
+
+.b_important {
+	padding: 1em; 
+	background: #FFF1A4; 
+	border: 2px #F4D000 solid; 
+	@include o-border-radius(4px);
+}
+p.b_important, div.b_important {margin: 1em 0;} /* tiny needs something here */
+
+.b_warning {
+	padding: 1em; 
+	background: #FFD5AA; 
+	border: 2px #FF9E3E solid; 
+	@include o-border-radius(4px);
+}
+p.b_warning, div.b_warning {margin: 1em 0;} /* tiny needs something here */
+
+.b_error {
+	padding: 1em; 
+	background: #FF6A66; 
+	color: #fff; 
+	border: 2px #ff0600 solid; 
+	@include o-border-radius(4px);
+	.b_error_icon { 
+		padding: 9px 0 9px 41px; 
+		background: url(../../openolat/images/icon_error_32.png) no-repeat; 
+	}
+	table.b_grid td, table.b_grid th, table.b_border td, table.b_border th { border: 1px solid #fff;}
+}
+p.b_error, div.b_error {margin: 1em 0;} /* tiny needs something here */
+
+.b_border_box { 
+	border: 1px solid $gray-light; 
+	padding: 1em;
+	@include o-border-radius(2px); 
+}
+p.b_border_box, div.b_border_box {margin: 1em 0;} /* tiny needs something here */
+
+
+/* nice table formatting */
+table {
+	&.b_grid {
+		background: transparent;
+		border-collapse: separate;
+		td, th { 
+			padding: 2px 5px;
+			border: 1px solid #888;
+		}
+		thead th {
+			background: #ccc;
+		}	
+		tbody th {
+			background: #eee;
+		}
+	}
+	&.b_border {
+		background: transparent;
+		border-collapse: collapse;
+		td, th { 
+			padding: 2px 5px;
+			border: 1px solid #888;
+		}	
+	}
+	&.b_full { 
+		width: 99.5%; 
+	}
+	td {
+		vertical-align: top;	
+	}
+	&.b_middle {
+		background: transparent;
+		td {
+			vertical-align: middle;			
+		}	
+	}
+}
+
+/* font styles  */
+.b_selected, p.b_selected, div.b_selected { font-weight: bold; }	
+.b_dimmed, p.b_dimmed, div.b_dimmed { @include o-opacity(40); }
+.b_disabled, p.b_disabled, div.b_disabled { color: $gray-light; }
+.b_deleted, p.b_deleted, div.b_deleted { text-decoration: line-through; }	
+
+/* font sizes relative to parent object */
+.b_xsmall, sup, sub, p.b_xsmall, div.b_xsmall { font-size: 80% }
+.b_small, small, p.b_small, div.b_small { font-size: 90% }
+.b_large, p.b_large, div.b_large { font-size: 110% }
+.b_xlarge, big, p.b_xlarge, div.b_xlarge  { font-size: 120% }
+
+/* text alignment: normal flow in a LTR language is left, in a RTL language it is right */
+.b_align_normal { text-align: left; }
+.b_align_center { text-align: center; }
+.b_align_inverse { text-align: right; }
+
+/* colors (used in repo and else where) */
+.o_ochre { color: #c8a959; }
+.o_blue { color: #12223F; }
+
+/* special links */
+a.b_link_extern { background: transparent url('../../openolat/images/external_link_trimmed.png') no-repeat right top; padding-right:13px;}
+a.b_link_mailto { background: transparent url('../../openolat/images/mail_small.png') no-repeat left center; padding-left:18px;}
+a.b_link_forward { background: transparent url('../../openolat/images/arrow_right.png') no-repeat right center; padding-right:18px;}
+
+/* image styles */
+img.b_float_left {float: left; margin: 0 2em 2em 0;}
+img.b_float_right {float: right; margin: 0 0 2em 2em;}
+img.b_centered {display: block; margin: 0 auto 2em auto;}
+	
+/* ---------- smilies / emoticons in tinyMCE (excluded in editor styles) ------------------------ */
+/* i know, these are icons... but they must be in content.css, 'cause tinyMCE needs 'em... */
+img.o_emoticons_angel     {background : url(#{$o-images-path}emoticons/smiley-angel.png); width: 16px; height: 16px;}
+img.o_emoticons_angry     {background : url(#{$o-images-path}emoticons/smiley-mad.png); width: 16px; height: 16px;}
+img.o_emoticons_blushing  {background : url(#{$o-images-path}emoticons/smiley-red.png); width: 16px; height: 16px;}
+img.o_emoticons_confused  {background : url(#{$o-images-path}emoticons/smiley-confuse.png); width: 16px; height: 16px;}
+img.o_emoticons_cool      {background : url(#{$o-images-path}emoticons/smiley-cool.png); width: 16px; height: 16px;}
+img.o_emoticons_cry       {background : url(#{$o-images-path}emoticons/smiley-cry.png); width: 16px; height: 16px;}
+img.o_emoticons_devil     {background : url(#{$o-images-path}emoticons/smiley-evil.png); width: 16px; height: 16px;}
+img.o_emoticons_grin      {background : url(#{$o-images-path}emoticons/smiley-grin.png); width: 16px; height: 16px;}
+img.o_emoticons_kiss      {background : url(#{$o-images-path}emoticons/smiley-kiss.png); width: 16px; height: 16px;}
+img.o_emoticons_ohoh      {background : url(#{$o-images-path}emoticons/smiley-eek.png); width: 16px; height: 16px;}
+img.o_emoticons_sad       {background : url(#{$o-images-path}emoticons/smiley-sad.png); width: 16px; height: 16px;}
+img.o_emoticons_sick      {background : url(#{$o-images-path}emoticons/smiley-sad-blue.png); width: 16px; height: 16px;}
+img.o_emoticons_smile     {background : url(#{$o-images-path}emoticons/smiley.png); width: 16px; height: 16px;}
+img.o_emoticons_tongue    {background : url(#{$o-images-path}emoticons/smiley-razz.png); width: 16px; height: 16px;}
+img.o_emoticons_ugly      {background : url(#{$o-images-path}emoticons/smiley-money.png); width: 16px; height: 16px;}
+img.o_emoticons_weird     {background : url(#{$o-images-path}emoticons/smiley-nerd.png); width: 16px; height: 16px;}
+img.o_emoticons_wink      {background : url(#{$o-images-path}emoticons/smiley-wink.png); width: 16px; height: 16px;}
+img.o_emoticons_worried   {background : url(#{$o-images-path}emoticons/smiley-roll-blue.png); width: 16px; height: 16px;}
+img.o_emoticons_up   	  {background : url(#{$o-images-path}emoticons/thumb-up.png); width: 16px; height: 16px;}
+img.o_emoticons_down   	  {background : url(#{$o-images-path}emoticons/thumb.png); width: 16px; height: 16px;}
+
+/*
+FIXME:oo10
+replaced styles: search/replace in content files on disk:
+
+b_emoticons_ -> o_emoticons_
+
+*/
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_flags.scss b/src/main/webapp/static/themes/light/modules/_flags.scss
new file mode 100644
index 0000000000000000000000000000000000000000..98b237d3f3da4497da2441b8b3f9afe7aa384e52
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_flags.scss
@@ -0,0 +1,47 @@
+.o_flag {
+	position: relative;
+	top: 1px;
+	display: inline-block;
+	line-height: 1;
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	background-position: 0 100%;
+}
+
+.o_flag_en {background-image: url('#{$o-images-path}flags/gb.png');} 	
+.o_flag_de {background-image: url('#{$o-images-path}flags/de.png');} 	
+.o_flag_fr {background-image: url('#{$o-images-path}flags/fr.png');} 	
+.o_flag_it {background-image: url('#{$o-images-path}flags/it.png');} 	
+.o_flag_es {background-image: url('#{$o-images-path}flags/es.png');} 	
+.o_flag_da {background-image: url('#{$o-images-path}flags/dk.png');} 	
+.o_flag_cs {background-image: url('#{$o-images-path}flags/cz.png');} 	
+.o_flag_el {background-image: url('#{$o-images-path}flags/gr.png');} 	
+.o_flag_ee {background-image: url('#{$o-images-path}flags/ee.png');} 	
+.o_flag_ru {background-image: url('#{$o-images-path}flags/ru.png');} 	
+.o_flag_pl {background-image: url('#{$o-images-path}flags/pl.png');} 	
+.o_flag_zh_CN {background-image: url('#{$o-images-path}flags/cn.png');} 	
+.o_flag_zh_TW {background-image: url('#{$o-images-path}flags/tw.png');} 	
+.o_flag_lt {background-image: url('#{$o-images-path}flags/lt.png');} 	
+.o_flag_fa {background-image: url('#{$o-images-path}flags/ir.png');} 	
+.o_flag_pt_PT {background-image: url('#{$o-images-path}flags/pt.png');} 	
+.o_flag_pt_BR {background-image: url('#{$o-images-path}flags/br.png');} 	
+.o_flag_tr {background-image: url('#{$o-images-path}flags/tr.png');} 	
+.o_flag_hu {background-image: url('#{$o-images-path}flags/hu.png');} 	
+.o_flag_sq {background-image: url('#{$o-images-path}flags/al.png');} 	
+.o_flag_in {background-image: url('#{$o-images-path}flags/id.png');} 	
+.o_flag_ar {background-image: url('#{$o-images-path}flags/eg.png');} 	
+.o_flag_rm {background-image: url('#{$o-images-path}flags/rm.png');} 	
+.o_flag_af {background-image: url('#{$o-images-path}flags/za.png');} 	
+.o_flag_vi {background-image: url('#{$o-images-path}flags/vn.png');} 
+.o_flag_mn {background-image: url('#{$o-images-path}flags/mn.png');} 
+.o_flag_iw {background-image: url('#{$o-images-path}flags/il.png');} 
+.o_flag_ko {background-image: url('#{$o-images-path}flags/kr.png');} 
+.o_flag_nl_NL {background-image: url('#{$o-images-path}flags/nl.png');}
+.o_flag_jp {background-image: url('#{$o-images-path}flags/jp.png');}
+.o_flag_nb_NO {background-image: url('#{$o-images-path}flags/no.png');}
+.o_flag_et_EE {background-image: url('#{$o-images-path}flags/ee.png');}
+.o_flag_bg {background-image: url('#{$o-images-path}flags/bg.png');}
+.o_flag_hi_IN_ASIA {background-image: url('#{$o-images-path}flags/in.png');}
+.o_flag_ar_LB {background-image: url('#{$o-images-path}flags/lb.png');}     
+.o_flag_gl_ES {background-image: url('#{$o-images-path}flags/galicia.png');}     
diff --git a/src/main/webapp/static/themes/light/modules/_footer.scss b/src/main/webapp/static/themes/light/modules/_footer.scss
new file mode 100644
index 0000000000000000000000000000000000000000..3c433801436b23767cea3af982f2fb9563fa05ea
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_footer.scss
@@ -0,0 +1,73 @@
+#o_footer {
+	@if $o-footer-position-absolute == true {
+		position: absolute; bottom: 0;
+	}
+	width: 100%;
+	min-height: $o-footer-height;
+	background-color: $o-footer-outer-bg;
+	color: $o-footer-default-color;
+	line-height: 16px;
+	
+	a { 
+		color: $o-footer-default-link-color;
+		&:hover { color: $o-footer-default-link-hover-color;}
+	}
+
+	#o_footer_container {
+		position: relative;
+		padding-top: 10px;
+		max-width: $o-page-width-max;
+		min-height: $o-footer-height;		
+		background: $o-footer-inner-bg;
+
+		#o_footer_user { 
+			#o_counter { white-space:nowrap; }
+		 	#o_username { white-space:nowrap; margin-right: 1em;}
+		}
+
+		#o_footer_version { 
+			text-align: right;
+			/* aligh left on mobile, stacked view */
+			@media (max-width: $screen-xs-max) { 
+				padding-top: 10px;
+				text-align: left;
+			}
+		}
+
+		#o_footer_powered { 
+			text-align: center; 
+			/* make powerd-by buttons a bit less colorful to not distract user from learning */
+			img {	
+				@include o-opacity(60);
+				&:hover { @include o-opacity(100); }	
+			}		
+			/* hide images on mobile */
+			@media (max-width: $screen-xs-max) { 
+				display: none;
+			}
+		}
+	}
+}
+
+/*  social links (FB, twitter, google) from SocialModule.java */
+#o_share { 
+	margin-top: 5px;
+	width:250px; 
+	a { 
+		margin: 0 3px 0 0; 
+		background-repeat: no-repeat; 
+		width: 16px; height: 16px; 
+		float: left; display: inline; 
+		@include o-opacity(60);
+	}
+	a:hover { 
+		@include o-opacity(100); 
+	}
+	#o_facebook {background-image: url('#{$o-images-path}social/facebook_16.png');}
+	#o_twitter {background-image: url('#{$o-images-path}social/twitter_16.png');}
+	#o_google {background-image: url('#{$o-images-path}social/google_16.png');}
+	#o_delicious {background-image: url('#{$o-images-path}social/delicious_16.png');}
+	#o_digg {background-image: url('#{$o-images-path}social/digg_16.png');}
+	#o_mail {background-image: url('#{$o-images-path}social/email_16.png');}
+	#o_link {background-image: url('#{$o-images-path}social/link_16.png');}
+}
diff --git a/src/main/webapp/static/themes/light/modules/_helpers.scss b/src/main/webapp/static/themes/light/modules/_helpers.scss
new file mode 100644
index 0000000000000000000000000000000000000000..d6c59e3f94c3547697a5b3788705f66633de8c17
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_helpers.scss
@@ -0,0 +1,11 @@
+/*
+.b_with_small_icon_right {
+	padding: 0 20px 0 0;
+}
+.b_with_small_icon_left {
+	padding: 0 0 0 20px;
+}
+.b_small_icon {
+	height: $top_nav_line_height;
+}
+*/
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_icons.scss b/src/main/webapp/static/themes/light/modules/_icons.scss
new file mode 100644
index 0000000000000000000000000000000000000000..94608ef18c66ffae05cd7fbc53b9494460bb7f45
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_icons.scss
@@ -0,0 +1,20 @@
+/* portrait / avatar icons */
+/* Dummy user portrait (avatar) display - portrait sizes must match with DisplayPortraitManager.WIDTH_PORTRAIT_SMALL  DisplayPortraitManager.WIDTH_PORTRAIT_BIG */
+.o_portrait_dummy,
+.o_portrait_dummy_female_big,
+.o_portrait_dummy_male_big,
+.o_portrait_anonymous 			 {width: 100px; height: 100px;}
+.o_portrait_dummy                {background-image: url('#{$o-images-path}portrait/dummy.png');}
+.o_portrait_dummy_female_big     {background-image: url('#{$o-images-path}portrait/dummy_female_big.png');}
+.o_portrait_dummy_male_big       {background-image: url('#{$o-images-path}portrait/dummy_male_big.png');}
+.o_portrait_anonymous 			 {background-image: url('#{$o-images-path}portrait/dummy.png'); }
+
+.o_portrait_dummy_small,
+.o_portrait_dummy_female_small,
+.o_portrait_dummy_male_small,
+.o_portrait_anonymous_small 	 {width: 30px; height: 30px;}
+.o_portrait_dummy_small          {background-image: url('#{$o-images-path}portrait/dummy_small.png');}
+.o_portrait_dummy_female_small   {background-image: url('#{$o-images-path}portrait/dummy_female_small.png');}
+.o_portrait_dummy_male_small     {background-image: url('#{$o-images-path}portrait/dummy_male_small.png');}
+.o_portrait_anonymous_small 	 {background-image: url('#{$o-images-path}portrait/dummy_small.png'); } 
+
diff --git a/src/main/webapp/static/themes/light/modules/_im.scss b/src/main/webapp/static/themes/light/modules/_im.scss
new file mode 100644
index 0000000000000000000000000000000000000000..104f0eb2125bdc79b59e4255afdb6ad9e917ce82
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_im.scss
@@ -0,0 +1,44 @@
+#o_navbar_imclient {
+	#o_im_message, 	
+	#o_im_status,
+	#o_im_summary {
+		@extend .pull-left;
+		padding: floor($grid-gutter-width / 2) floor($grid-gutter-width / 8);
+	}
+	#o_im_summary {
+		padding-right: floor($grid-gutter-width / 2);
+	}
+}
+
+
+/* im icons */
+.o_im_available_icon, 
+.o_im_dnd_icon, 
+.o_im_unavailable_icon, 
+.o_im_new_msg_icon,
+.o_im_chat_icon, 
+.o_im_refresh_icon {
+	@extend .glyphicon;	
+}
+
+.o_im_available_icon span {
+	@extend .glyphicon-star;
+	color: #006633;
+}
+.o_im_dnd_icon span { 
+	@extend .glyphicon-star-empty;
+	color: #CCCC33;
+}
+.o_im_unavailable_icon span { 
+	@extend .glyphicon-remove;
+	color: #996633;
+}
+.o_im_new_msg_icon span { 
+	@extend .glyphicon-cloud-download;
+}
+.o_im_chat_icon span { 
+	@extend .glyphicon-bullhorn;
+}
+.o_im_refresh_icon span {
+	@extend .glyphicon-refresh;
+} 
diff --git a/src/main/webapp/static/themes/light/modules/_layout.scss b/src/main/webapp/static/themes/light/modules/_layout.scss
new file mode 100644
index 0000000000000000000000000000000000000000..20630e319f4d6b48886263a7ddab189389987350
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_layout.scss
@@ -0,0 +1,26 @@
+html {
+	position: relative;
+	min-height: 100%;
+}
+body {
+	/* body not relative, content must be relative to HTML! */
+	min-height: 100%;
+	
+	@if $o-footer-position-absolute == true {
+		margin-bottom: $o-footer-height;
+	}
+	
+}
+
+#o_toplink {
+	position: absolute;
+	bottom: 10px; right: 10px;
+}
+
+#o_main {
+	background: $o-main-outer-bg;
+	#o_main_container {
+		max-width: $o-page-width-max;
+		background: $o-main-inner-bg;
+	}
+}
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_mixins.scss b/src/main/webapp/static/themes/light/modules/_mixins.scss
new file mode 100644
index 0000000000000000000000000000000000000000..da5f3358d0c7441967ca72ab169ff3275e43dda5
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_mixins.scss
@@ -0,0 +1,201 @@
+/*
+*  =================================================
+*  
+*   sass mixins for OpenOLAT 8
+*   
+*   @author strentini, sergio.trentini@frentix.com,  www.frentix.com
+*   @date Nov. 2011
+*
+*   also read themes.README!
+*   
+*   this file is included in layout.scss
+*   it is not compiled to a separate css-file...  
+*
+*  =================================================
+*/
+
+// will produce a shiny-glassy gradient (ie9 will produce linear gradient with only 2 colors) */
+@mixin o-gradient-glassy($col1,$col2,$col3,$col4){
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 0%, $col2 50%, $col3 51%, $col4 100%);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$col1), color-stop(50%,$col2), color-stop(51%,$col3), color-stop(100%,$col4));
+	background: -webkit-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: -o-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: -ms-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+}
+
+// will produce a shiny-glassy gradient (ie9 will produce linear gradient with only 2 colors) */
+@mixin o-gradient-glassysimple($color){
+	$col1: desaturate(lighten($color,20%),50%);
+	$col2: lighten($color,40%);
+	$col3: $color;
+	$col4: lighten($color,50%);
+	
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 0%, $col2 50%, $col3 51%, $col4 100%);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$col1), color-stop(50%,$col2), color-stop(51%,$col3), color-stop(100%,$col4));
+	background: -webkit-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: -o-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: -ms-linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+	background: linear-gradient(top, $col1 0%,$col2 50%,$col3 51%,$col4 100%);
+}
+
+@mixin o-gradient2($col1,$col2){
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 0%, $col2 100%);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$col1), color-stop(100%,$col2));
+	background: -webkit-linear-gradient(top, $col1 0%,$col2 100%);
+	background: -o-linear-gradient(top, $col1 0%,$col2 100%);
+	background: -ms-linear-gradient(top, $col1 0%,$col2 100%);
+	background: linear-gradient(top, $col1 0%,$col2 100%);
+}
+
+/* also gradient with two colors but with custom color-stops */
+@mixin o-gradient2stops($col1,$stop1,$col2,$stop2){
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 $stop1, $col2 $stop2);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop($stop1,$col1), color-stop($stop2,$col2));
+	background: -webkit-linear-gradient(top, $col1 $stop1,$col2 $stop2);
+	background: -o-linear-gradient(top, $col1 $stop1,$col2 $stop2);
+	background: -ms-linear-gradient(top, $col1 $stop1,$col2 $stop2);
+	background: linear-gradient(top, $col1 $stop1,$col2 $stop2);
+}
+
+@mixin o-gradient-white(){
+	$col1 : #fff;
+	$col2 : #f8f8f8;
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 80%, $col2 100%);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(80%,$col1), color-stop(100%,$col2));
+	background: -webkit-linear-gradient(top, $col1 80%,$col2 100%);
+	background: -o-linear-gradient(top, $col1 80%,$col2 100%);
+	background: -ms-linear-gradient(top, $col1 80%,$col2 100%);
+	background: linear-gradient(top, $col1 80%,$col2 100%);
+}
+
+@mixin o-gradient4($col1,$col2,$col3,$col4){
+	background: $col1;
+	background: -moz-linear-gradient(top, $col1 0%, $col2 33%, $col3 66%, $col4 100%);
+	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$col1), color-stop(33%,$col2), color-stop(66%,$col3), color-stop(100%,$col4));
+	background: -webkit-linear-gradient(top, $col1 0%,$col2 33%,$col3 66%,$col4 100%);
+	background: -o-linear-gradient(top, $col1 0%,$col2 33%,$col3 66%,$col4 100%);
+	background: -ms-linear-gradient(top, $col1 0%,$col2 33%,$col3 66%,$col4 100%);
+	background: linear-gradient(top, $col1 0%,$col2 33%,$col3 66%,$col4 100%);
+}
+
+@mixin o-border-radius($rad){
+	border-radius:$rad;
+	-webkit-border-radius:$rad;
+	-moz-border-radius:$rad;
+	-o-border-radius:$rad;
+}
+@mixin o-border-radius-all($tl,$tr,$br,$bl){
+	-webkit-border-top-left-radius: $tl;
+	-webkit-border-top-right-radius: $tr;
+	-webkit-border-bottom-right-radius: $br;
+	-webkit-border-bottom-left-radius: $bl;
+	-moz-border-radius-topleft: $tl;
+	-moz-border-radius-topright: $tr;
+	-moz-border-radius-bottomright: $br;
+	-moz-border-radius-bottomleft: $bl;
+	border-top-left-radius: $tl;
+	border-top-right-radius: $tr;
+	border-bottom-right-radius: $br;
+	border-bottom-left-radius: $bl;
+}
+
+@mixin o-box-shadow($a,$b,$c,$color){
+	moz-box-shadow: $a $b $c $color;
+	-ms-box-shadow: $a $b $c $color;
+	-o-box-shadow: $a $b $c $color;
+	-webkit-box-shadow: $a $b $c $color;
+	box-shadow: $a $b $c $color;
+}
+@mixin o-box-shadow-inset($a,$b,$c,$color){
+	moz-box-shadow: inset $a $b $c $color;
+	-ms-box-shadow: inset  $a $b $c $color;
+	-o-box-shadow: inset  $a $b $c $color;
+	-webkit-box-shadow: inset  $a $b $c $color;
+	box-shadow: inset $a $b $c $color;
+}
+@mixin o-box-shadow-none(){
+	moz-box-shadow: none;
+	-ms-box-shadow: none;
+	-o-box-shadow: none;
+	-webkit-box-shadow: none;
+	box-shadow: none;
+}
+
+@mixin o-text-shadow($a,$b,$c,$color){
+	text-shadow: $a $b $c $color;
+	-moz-text-shadow: $a $b $c $color;
+}
+
+@mixin o-transition($what, $dur,$eff){
+	-moz-transition: $what  $dur $eff;
+ 	-webkit-transition: $what  $dur $eff;
+ 	-o-transition: $what  $dur $eff;
+ 	transition: $what  $dur $eff;
+}
+
+
+/**
+*  $percent is a number between 0 and 100
+*  for opacity:0.5, you would use:  @import o-opacity(50);
+*/
+@mixin o-opacity($percent){
+		$op : $percent/100;
+		
+	   	/* Required for IE 5, 6, 7 */
+        /* ...or something to trigger hasLayout, like zoom: 1; */
+       	zoom:1;
+
+        /* Theoretically for IE 8 & 9 (more valid) */
+        /* ...but not required as filter works too */
+        /* should come BEFORE filter */
+        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";
+
+        /* This works in IE 8 & 9 too */
+        /* ... but also 5, 6, 7 */
+        filter: alpha(opacity=$percent);
+
+        /* Older than Firefox 0.9 */
+        -moz-opacity:$op;
+
+        /* Safari 1.x (pre WebKit!) */
+        -khtml-opacity: $op;
+
+        /* Modern!
+        /* Firefox 0.9+, Safari 2?, Chrome any?
+        /* Opera 9+, IE 9+ */
+        opacity: $op;
+}
+
+// the OpenOLAT button style 
+@mixin btt-outer {
+		@include o-border-radius(2px);
+		white-space: nowrap; 
+		cursor:pointer; 
+		margin: 0.25em 0.5em 0.25em 0; 
+		padding: 0; 
+		color: #444; 
+		background: transparent; 
+		display: inline-block; 
+		line-height: 2.2em; 
+		vertical-align: middle; 
+		//left-align for IE
+		text-align: left;
+		border: 1px solid #ccc; // wee need that for IE8 , no rgba 
+		border: 1px solid rgba(0,0,0,0.1); 
+		@include o-gradient2( #f5f5f5,#f1f1f1);
+		@include o-transition(all,0.22s, "");
+}
+
+@mixin btt-inner { 
+		color: #444; 
+		font-size:100%;
+		display: inline-block; padding: 0 0.8em; width: auto; 
+		line-height: 1.9em; text-align: center;
+}
+
diff --git a/src/main/webapp/static/themes/light/modules/_navbar.scss b/src/main/webapp/static/themes/light/modules/_navbar.scss
new file mode 100644
index 0000000000000000000000000000000000000000..2dc5fabbb6dc398b842e1e4eeb0bb2a558495aec
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_navbar.scss
@@ -0,0 +1,75 @@
+#o_navbar {
+//	@extend .navbar-inverse;
+}
+#o_navbar_container {
+	position: relative;
+	max-width: $o-page-width-max;
+
+	#o_navbar_header {
+		a.navbar-brand {
+			font-size: 40px;
+			vertical-align: top;
+			font-weight: bold;
+			color: #31729B;
+			&:after {
+				content: "\221E";
+			}
+		
+		}
+	}
+	
+	#o_navbar_tabs {
+		li a {
+			padding-right: ($grid-gutter-width);
+		}
+		.o_navbar_tab_close {
+			position: absolute;
+			top: floor($grid-gutter-width / 2); 
+			right:0.5em;
+			padding: 0;
+			width: 1em; height: 1em;
+			span {
+				@extend .glyphicon;
+				@extend .glyphicon-minus-sign;
+				&:before { color: #A87E7E; }
+			}
+			&:hover { 
+				span:before { color: #CC0000; }
+			}
+		}
+	}
+	
+	#o_navbar_tools {
+		#o_navbar_search_opener a.dropdown-toggle span {
+			@extend .glyphicon;
+			@extend .glyphicon-search;
+		}
+		
+		#o_navbar_langchooser {
+			color: $navbar-default-color;
+			padding: floor($grid-gutter-width / 2);
+			form span + div {
+				display: inline;
+			}
+		}
+		#o_navbar_help a span {
+			@extend .glyphicon;
+			@extend .glyphicon-question-sign;
+			margin-right: 0.4em;
+		}
+		#o_navbar_my_menu {
+			.dropdown-toggle {
+				padding-left: floor($grid-gutter-width / 2) + 30px;
+			}
+			img {
+				position: absolute;
+				left: floor($grid-gutter-width / 4);
+				top: floor(30px - $line-height-computed);
+				height: 30px;
+				width: 30px;
+				@extend .img-circle;
+			}
+		}
+	}
+	
+}
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_print.scss b/src/main/webapp/static/themes/light/modules/_print.scss
new file mode 100644
index 0000000000000000000000000000000000000000..7d02c1e1a845cfa1923321bebf22d3026cb647f7
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_print.scss
@@ -0,0 +1,110 @@
+@charset "UTF-8";
+
+/*
+*  =================================================
+*  
+*   Rules for OpenOLAT print layout. Mostly to hide things in print view. 
+*   
+*   @author gnaegi,  www.frentix.com
+*   @date April 2014
+*
+*  =================================================
+*/
+
+@media print {
+	@mixin o-ghost {
+		 display:none !important; visibility: hidden !important; height:0px !important; width:0px !important;
+	}
+
+	/** with the noprint class, you can hide any element in printout **/
+	.o_noprint { @include o-ghost();} 
+	
+	.b_print_break_avoid {
+		page-break-inside : avoid;
+	}
+	.b_print_break_before {
+		page-break-before: always;
+	}
+		 
+	#o_toplink { @include o-ghost();} 
+		  
+	/* change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers  */
+	body { font-size:10pt; }
+	
+	.b_noti {@include o-ghost();}
+	
+	
+	/* login site background image */
+	#b_main.o_loginscreen { background-image: none; }
+	/* home site background image */
+	#b_main.o_home { background-image: none; }
+	/* editor background */
+	#b_main.o_editor { background-image: none; }
+	
+	/* remove box-shadow if any */
+	#b_main {@include o-box-shadow-none(); border:none;} 
+	
+	/* no borders, no margin, no padding */
+	body,#b_page_margins,#b_page,#b_main,#b_page_wrapper  {margin:0;padding:0;border:0;}
+	/* a default font for printout */
+	body * {font-family:"Times New Roman", Times, serif;}
+	/* font for code and pre */
+	code,pre{font-family:"Courier New", Courier, mono}
+	/* width to pagewidth */
+	#b_page_margins,#b_page{width:100% !important;min-width:0;max-width:none}
+	/* hide footer, hide topnav, hide main navigation */
+	#b_footer,#b_topnav,#b_nav,#search{display:none}
+	/* hide col1 and col2, make main column without margins */
+	#b_col1, #b_col2 {display:none;}
+	#b_col3 { margin:0 !important; border:none !important;}
+
+	.b_c25l,.b_c33l,.b_c38l,.b_c50l,.b_c62l,.b_c66l,.b_c75l,.b_c25r,.b_c33r,.b_c38r,.b_c50r,.b_c62r,.b_c66r,.b_c75r {width:100%;margin:0;float:none;overflow:visible;display:table}
+	.b_subc,.b_subcl,.b_subcr {margin:0;padding:0}
+	
+	h1,h2,h3,h4,h5,h6{page-break-after:avoid}
+	#b_page a[href^="http:"],#b_page a[href^="https:"]{padding-left:0;background-image:none}
+	#b_col1_content:before,#b_col2_content:before,#b_col3_content:before{content:"";color:#888;background:inherit;display:block;font-weight:700;font-size:1.5em}
+	.b_floatbox,.b_subcolumns,.b_subcolums_oldgecko{overflow:visible;display:table;}
+	
+	/* hide jsMath print warning */
+	#jsMath_PrintWarning {@include o-ghost(); }
+	
+	
+	/*  ---  nice print styles for wiki pages ---- */
+	.o_wiki_wrapper {
+		.b_c20l, .o_wikimod_nav {display:none;}
+		.b_c80r {
+			width:100%;
+			 div.b_tabbedpane_tabs {display: none;}
+		}
+	}
+	
+	
+	/* calendar */
+	.o_cal_toptoolbar.b_clearfix { display: none; } /* hide top toolbar */
+	.o_cal_wv { display: none; } /* hide grid calendar */
+	.o_cal_wv_print { display: block; } /* display the print view */
+	#o_cal_config .b_float_right { display: none; } /* hide buttons */
+	#o_cal_config_below_cal_container .b_subcolumns { display: none; } /* hide date navigation and search link */
+	.o_cal_wv_print ul { list-style-type: none; margin-left: 0; }
+	.o_cal_event { clear:left; margin: 0.2em 0; }
+	.o_cal_wv_list * { float: left; width: 100%; } /* float all elements in order to fully include floating children */
+	.o_cal_event span { padding: 0 0.4em; display:block; }
+	.o_cal_date { font-weight: bold; }
+	.o_cal_time { width: 25%; } 
+	.o_cal_subject { width: 40%; border-left-style: solid; border-left-width: thick; }
+	.o_cal_subject p { padding:0 0.4em; margin:0;  }
+	.o_cal_location { float: right; width: 34%; } /* Since subject has a 1px border, decrease the width of location by 1% */
+	.o_cal_config_scrollwrapper { width: auto; height: auto; overflow: visible; overflow-x: visible; }
+	.o_cal_config_calendar { border-width: 0; border-left-style: solid; border-left-width: thick; float: none; display: block;}
+	#o_cal_config_below_cal_container { border: none; background: none; overflow: visible; }
+	#o_cal_config_below_cal_container * { background: none; color: black; }
+	#o_cal_config_below_cal_container fieldset { border: none; }
+	#o_cal_config_below_cal_container fieldset legend { font-weight: bold; }
+	
+	/* fix padding of missing backgrond images */
+	.b_with_small_icon_left { padding-left: 0;}
+}
+
+
+
diff --git a/src/main/webapp/static/themes/light/modules/_thirdparty.scss b/src/main/webapp/static/themes/light/modules/_thirdparty.scss
new file mode 100644
index 0000000000000000000000000000000000000000..315eeae793380636948e0b4ad373608b255673db
--- /dev/null
+++ b/src/main/webapp/static/themes/light/modules/_thirdparty.scss
@@ -0,0 +1,220 @@
+@charset "UTF-8";
+
+//overwrite jquery ui
+.ui-widget {
+	font-family: $defaultfont;
+	font-size: 100%;
+}
+
+.ui-widget-header {
+	border-top: none;
+	border-left: none;
+	border-right: none;
+	border-bottom:1px solid #eee;
+	
+	background: #fff;
+	font-weight: bold;
+}
+
+.ui-dialog {
+	@include o-box-shadow(0px,0px,6px,rgba(0,0,0,0.3));
+	
+	.ui-widget-header {
+		.ui-icon-closethick {
+			background: #fff url('../openolat/images/close.png') no-repeat center center;
+		}
+		
+		.ui-button.ui-corner-all {
+			border: none !important;
+			background: #fff !important;
+		}
+	}
+
+	.ui-widget-content {
+		border-color: #fff;
+		padding: 5px;
+	}
+	
+	.ui-dialog-titlebar {
+		padding: 2px 30px 2px 5px;
+	}
+}
+
+.ui-dialog.ui-corner-all {
+	@include o-border-radius($di_border_radius);
+}
+
+.ui-dialog.ui-widget-content {
+	border-color: $basecolor;
+}
+
+.ui-dialog.o_modal-ui div.ui-dialog-buttonpane {
+	display:none;
+}
+
+/*
+ * autocomplete
+ */
+.ui-autocomplete-input {
+	line-height: 1.5em;
+	font-size: 98%;
+}
+.ui-autocomplete {
+	z-index: 10000;
+	&.ui-menu {
+		padding: 1px;
+	}
+	&.ui-corner-all {
+		border: 1px solid $basecolor;
+		border-top: none;
+		@include o-border-radius-all(0,0,$di_border_radius,$di_border_radius);
+		@include o-box-shadow(0px,3px,6px,rgba(0,0,0,0.3));
+	}
+	a.ui-corner-all {
+		border: none;
+		margin: -1px;
+		@include o-border-radius(0);
+		&.ui-state-focus {
+			background: $selectcolor_ultra_light;
+		}
+	}	
+	.b_error_icon { 
+		color: $nokcolor; 
+		font-style: italic;
+	}
+}
+
+/*
+ * datepicker
+ */
+.ui-datepicker {
+	@include o-box-shadow(0px,0px,6px,rgba(0,0,0,0.3));
+	
+	.ui-widget-header {
+		.ui-datepicker-prev.ui-corner-all, .ui-datepicker-next.ui-corner-all {
+			border: none !important;
+			background: #fff !important;
+		}
+
+		.ui-icon.ui-icon-circle-triangle-e {
+			background: #fff url('../openolat/images/arrow_right_big.png') no-repeat center center;
+		}
+		.ui-icon.ui-icon-circle-triangle-w {
+			background: #fff url('../openolat/images/arrow_left_big.png') no-repeat center center;
+		}
+	}
+	
+	.ui-state-default {
+		background: #eee;
+	}
+	
+	.ui-state-highlight, .ui-widget-content .ui-state-highlight {
+		border: 1px solid $basecolor_light;
+		background: $basecolor_ultra_light;
+	}
+}
+
+.ui-datepicker.ui-corner-all {
+	@include o-border-radius($di_border_radius);
+}
+
+.ui-datepicker.ui-widget-content {
+	border-color: $basecolor;
+}
+
+/*
+ * tooltip
+ */
+.ui-tooltip {
+	@include o-box-shadow(0px,0px,6px,rgba(0,0,0,0.3));
+}
+ 
+.ui-tooltip.ui-corner-all {
+	@include o-border-radius($di_border_radius);
+}
+
+.ui-tooltip.ui-widget-content {
+	border: 1px solid $basecolor;
+}
+
+//overwrite tagit
+ul.tagit {
+	li.tagit-choice.ui-widget-content.ui-state-default {
+		background:#DEE7F8;
+		border: 1px solid #CAD8F3;
+	}
+}
+
+ul.tagit.ui-corner-all {
+	border:none;
+	background: none;
+}
+
+//overwrite uilayout
+.ui-layout-pane {
+	border:none;
+}
+
+.ui-layout-resizer {
+	background: none;
+	border-width: 1px;
+	border-style: dotted;
+}
+
+.ui-layout-toggler-hover, .ui-layout-resizer-hover .ui-layout-toggler-hover {
+	background-color: $basecolor;
+}
+
+.ui-layout-resizer-open-hover, .ui-layout-resizer-dragging {
+	background: $basecolor_ultra_light;
+}
+
+//overwrite datatables -> see _tables.scss
+
+/* calendar */
+.fc-state-highlight {
+	background: $selectcolor_ultra_light;
+}
+
+/* image crop */
+div#image-crop-overlay {
+	background-color : #ffffff;
+	overflow : hidden;
+}
+
+div#image-crop-outline {
+	background : #ffffff url('outline.gif');
+	overflow : hidden;
+}
+
+div#image-crop-size-hint-background {
+	background-color : #000000;
+}
+
+span#image-crop-size-hint-foreground {
+	color : #ffffff;
+	font-family : 'Verdana', 'Geneva', sans-serif;
+	font-size : 12px;
+	text-shadow : 0 -1px 0 #000000;
+}
+
+div#image-crop-preview-holder {
+	-moz-box-shadow : 0 0 5px #000000;
+	-webkit-box-shadow : 0 0 5px #000000;
+	border : 3px #ef2929 solid;
+	box-shadow : 0 0 5px #000000;
+}
+
+img#image-crop-preview {
+	border : none;
+}
+
+div.image-crop-resize-handler {
+	background-color : #000000;
+	border : 1px #ffffff solid;
+	height : 7px;
+	overflow : hidden;
+	width : 7px;
+}
+
+
diff --git a/src/main/webapp/static/themes/light/theme.css b/src/main/webapp/static/themes/light/theme.css
new file mode 100644
index 0000000000000000000000000000000000000000..96685c3533199fa508121f34a5b028b2360c262d
--- /dev/null
+++ b/src/main/webapp/static/themes/light/theme.css
@@ -0,0 +1,43 @@
+/*!
+ * ========================================================
+ *  <a href="http://www.openolat.org">
+ *  OpenOLAT - Online Learning and Training</a><br>
+ *  <p>
+ *  Licensed under the Apache License, Version 2.0 (the "License"); <br>
+ *  you may not use this file except in compliance with the License.<br>
+ *  You may obtain a copy of the License at the
+ *  <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a>
+ *  <p>
+ *  Unless required by applicable law or agreed to in writing,<br>
+ *  software distributed under the License is distributed on an "AS IS" BASIS, <br>
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
+ *  See the License for the specific language governing permissions and <br>
+ *  limitations under the License.
+ *  <p>
+ *  Initial code contributed and copyrighted by<br>
+ *  09.04.2014 by frentix GmbH, http://www.frentix.com
+ *  <p>
+ *
+ *
+ *  @author gnaegi, www.frentix.com
+ *  @date April. 2014
+ * ========================================================
+**//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle,#o_navbar_container #o_navbar_tools #o_navbar_my_menu img{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width: 768px){.lead{font-size:21px}}
+small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff}.bg-primary{background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled,.list-inline{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857}dt{font-weight:bold}dd{margin-left:0}@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}
+.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:0%}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:0%}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:0%}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:0%}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:0%}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:0%}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:0%}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:0%}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width: 767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],fieldset[disabled] input[type="radio"],input[type="checkbox"][disabled],fieldset[disabled] input[type="checkbox"],.radio[disabled],fieldset[disabled] .radio,.radio-inline[disabled],fieldset[disabled] .radio-inline,.checkbox[disabled],fieldset[disabled] .checkbox,.checkbox-inline[disabled],fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width: 768px){.form-inline .form-group,.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control,.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control,.navbar-form .input-group>.form-control{width:100%}.form-inline .control-label,.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.navbar-form .radio,.form-inline .checkbox,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type="radio"],.navbar-form .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback,.navbar-form .has-feedback .form-control-feedback{top:0}}
+.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media (min-width: 768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active{color:#333;background-color:#ebebeb;border-color:#adadad}.open .btn-default.dropdown-toggle{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active{background-image:none}.open .btn-default.dropdown-toggle{background-image:none}.btn-default.disabled,.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled:active,.btn-default.disabled.active,.btn-default[disabled],.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled]:active,.btn-default[disabled].active,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active{color:#fff;background-color:#3276b1;border-color:#285e8e}.open .btn-primary.dropdown-toggle{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active{background-image:none}.open .btn-primary.dropdown-toggle{background-image:none}.btn-primary.disabled,.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled:active,.btn-primary.disabled.active,.btn-primary[disabled],.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled]:active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active{color:#fff;background-color:#47a447;border-color:#398439}.open .btn-success.dropdown-toggle{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active{background-image:none}.open .btn-success.dropdown-toggle{background-image:none}.btn-success.disabled,.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled:active,.btn-success.disabled.active,.btn-success[disabled],.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled]:active,.btn-success[disabled].active,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active{color:#fff;background-color:#39b3d7;border-color:#269abc}.open .btn-info.dropdown-toggle{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active{background-image:none}.open .btn-info.dropdown-toggle{background-image:none}.btn-info.disabled,.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled:active,.btn-info.disabled.active,.btn-info[disabled],.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled]:active,.btn-info[disabled].active,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active{color:#fff;background-color:#ed9c28;border-color:#d58512}.open .btn-warning.dropdown-toggle{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active{background-image:none}.open .btn-warning.dropdown-toggle{background-image:none}.btn-warning.disabled,.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled:active,.btn-warning.disabled.active,.btn-warning[disabled],.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled]:active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active{color:#fff;background-color:#d2322d;border-color:#ac2925}.open .btn-danger.dropdown-toggle{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active{background-image:none}.open .btn-danger.dropdown-toggle{background-image:none}.btn-danger.disabled,.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled:active,.btn-danger.disabled.active,.btn-danger[disabled],.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled]:active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@font-face{font-family:'Glyphicons Halflings';src:url("../../bootstrap/3.1.1/fonts/bootstrap/glyphicons-halflings-regular.eot");src:url("../../bootstrap/3.1.1/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../../bootstrap/3.1.1/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"),url("../../bootstrap/3.1.1/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"),url("../../bootstrap/3.1.1/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon,#o_navbar_container #o_navbar_tabs .o_navbar_tab_close span,#o_navbar_container #o_navbar_tools #o_navbar_search_opener a.dropdown-toggle span,#o_navbar_container #o_navbar_tools #o_navbar_help a span,.o_im_available_icon,.o_im_dnd_icon,.o_im_unavailable_icon,.o_im_new_msg_icon,.o_im_chat_icon,.o_im_refresh_icon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before,#o_navbar_container #o_navbar_tools #o_navbar_search_opener a.dropdown-toggle span:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before,.o_im_available_icon span:before{content:"\e006"}.glyphicon-star-empty:before,.o_im_dnd_icon span:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before,.o_im_unavailable_icon span:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before,.o_im_refresh_icon span:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before,#o_navbar_container #o_navbar_tabs .o_navbar_tab_close span:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before,#o_navbar_container #o_navbar_tools #o_navbar_help a span:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before,.o_im_chat_icon span:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before,.o_im_new_msg_icon span:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width: 768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:none}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}
+.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}
+.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{content:" ";display:table}.navbar:after{clear:both}@media (min-width: 768px){.navbar{border-radius:4px}}
+.navbar-header:before,.navbar-header:after{content:" ";display:table}.navbar-header:after{clear:both}@media (min-width: 768px){.navbar-header{float:left}}
+.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}
+.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}
+.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width: 768px){.navbar-static-top{border-radius:0}}
+.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width: 768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}
+.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width: 768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}
+.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:none}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width: 768px){.navbar-toggle{display:none}}
+.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width: 767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width: 768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}
+@media (min-width: 768px){.navbar-left{float:left !important}.navbar-right{float:right !important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (max-width: 767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width: 768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}
+.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width: 768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}
+.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#090909;color:#fff}@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width: 768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}
+.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width 0.6s ease;transition:width 0.6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left,#o_navbar_imclient .media>#o_im_message,#o_navbar_imclient .media>#o_im_status,#o_navbar_imclient .media>#o_im_summary{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:0.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:0.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width: 992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:0.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:fadein(rgba(0,0,0,0.2), 5%);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:fadein(rgba(0,0,0,0.2), 5%)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:fadein(rgba(0,0,0,0.2), 5%);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:fadein(rgba(0,0,0,0.2), 5%)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:0.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0%), color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0%), color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:none;color:#fff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left,#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}@media (max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width: 1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (max-width: 767px){.hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){.hidden-md{display:none !important}}@media (min-width: 1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}@media print{.hidden-print{display:none !important}}.b_info{padding:5px 5px 5px 30px;background:#e9eaef url(../../openolat/images/information-white.png) no-repeat 5px 5px;border:1px solid #C5C4C4;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_info,div.b_info{margin:1em 0}.b_note{padding:1em;background:#E2E2E2;border:2px #B5B5B5 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_note,div.b_note{margin:1em 0}.b_important{padding:1em;background:#FFF1A4;border:2px #F4D000 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_important,div.b_important{margin:1em 0}.b_warning{padding:1em;background:#FFD5AA;border:2px #FF9E3E solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}p.b_warning,div.b_warning{margin:1em 0}.b_error{padding:1em;background:#FF6A66;color:#fff;border:2px #ff0600 solid;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px}.b_error .b_error_icon{padding:9px 0 9px 41px;background:url(../../openolat/images/icon_error_32.png) no-repeat}.b_error table.b_grid td,.b_error table.b_grid th,.b_error table.b_border td,.b_error table.b_border th{border:1px solid #fff}p.b_error,div.b_error{margin:1em 0}.b_border_box{border:1px solid #999;padding:1em;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px}p.b_border_box,div.b_border_box{margin:1em 0}table.b_grid{background:transparent;border-collapse:separate}table.b_grid td,table.b_grid th{padding:2px 5px;border:1px solid #888}table.b_grid thead th{background:#ccc}table.b_grid tbody th{background:#eee}table.b_border{background:transparent;border-collapse:collapse}table.b_border td,table.b_border th{padding:2px 5px;border:1px solid #888}table.b_full{width:99.5%}table td{vertical-align:top}table.b_middle{background:transparent}table.b_middle td{vertical-align:middle}.b_selected,p.b_selected,div.b_selected{font-weight:bold}.b_dimmed,p.b_dimmed,div.b_dimmed{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4}.b_disabled,p.b_disabled,div.b_disabled{color:#999}.b_deleted,p.b_deleted,div.b_deleted{text-decoration:line-through}.b_xsmall,sup,sub,p.b_xsmall,div.b_xsmall{font-size:80%}.b_small,small,p.b_small,div.b_small{font-size:90%}.b_large,p.b_large,div.b_large{font-size:110%}.b_xlarge,big,p.b_xlarge,div.b_xlarge{font-size:120%}.b_align_normal{text-align:left}.b_align_center{text-align:center}.b_align_inverse{text-align:right}.o_ochre{color:#c8a959}.o_blue{color:#12223F}a.b_link_extern{background:transparent url("../../openolat/images/external_link_trimmed.png") no-repeat right top;padding-right:13px}a.b_link_mailto{background:transparent url("../../openolat/images/mail_small.png") no-repeat left center;padding-left:18px}a.b_link_forward{background:transparent url("../../openolat/images/arrow_right.png") no-repeat right center;padding-right:18px}img.b_float_left{float:left;margin:0 2em 2em 0}img.b_float_right{float:right;margin:0 0 2em 2em}img.b_centered{display:block;margin:0 auto 2em auto}img.b_emoticons_angel{background:url(../light/images/emoticons/smiley-angel.png);width:16px;height:16px}img.b_emoticons_angry{background:url(../light/images/emoticons/smiley-mad.png);width:16px;height:16px}img.b_emoticons_blushing{background:url(../light/images/emoticons/smiley-red.png);width:16px;height:16px}img.b_emoticons_confused{background:url(../light/images/emoticons/smiley-confuse.png);width:16px;height:16px}img.b_emoticons_cool{background:url(../light/images/emoticons/smiley-cool.png);width:16px;height:16px}img.b_emoticons_cry{background:url(../light/images/emoticons/smiley-cry.png);width:16px;height:16px}img.b_emoticons_devil{background:url(../light/images/emoticons/smiley-evil.png);width:16px;height:16px}img.b_emoticons_grin{background:url(../light/images/emoticons/smiley-grin.png);width:16px;height:16px}img.b_emoticons_kiss{background:url(../light/images/emoticons/smiley-kiss.png);width:16px;height:16px}img.b_emoticons_ohoh{background:url(../light/images/emoticons/smiley-eek.png);width:16px;height:16px}img.b_emoticons_sad{background:url(../light/images/emoticons/smiley-sad.png);width:16px;height:16px}img.b_emoticons_sick{background:url(../light/images/emoticons/smiley-sad-blue.png);width:16px;height:16px}img.b_emoticons_smile{background:url(../light/images/emoticons/smiley.png);width:16px;height:16px}img.b_emoticons_tongue{background:url(../light/images/emoticons/smiley-razz.png);width:16px;height:16px}img.b_emoticons_ugly{background:url(../light/images/emoticons/smiley-money.png);width:16px;height:16px}img.b_emoticons_weird{background:url(../light/images/emoticons/smiley-nerd.png);width:16px;height:16px}img.b_emoticons_wink{background:url(../light/images/emoticons/smiley-wink.png);width:16px;height:16px}img.b_emoticons_worried{background:url(../light/images/emoticons/smiley-roll-blue.png);width:16px;height:16px}img.b_emoticons_up{background:url(../light/images/emoticons/thumb-up.png);width:16px;height:16px}img.b_emoticons_down{background:url(../light/images/emoticons/thumb.png);width:16px;height:16px}html{position:relative;min-height:100%}body{min-height:100%;margin-bottom:60px}#o_toplink{position:absolute;bottom:10px;right:10px}#o_main{background:#fff}#o_main #o_main_container{max-width:1324px;background:#fff}#o_navbar_container{position:relative;max-width:1324px}#o_navbar_container #o_navbar_header a.navbar-brand{font-size:40px;vertical-align:top;font-weight:bold;color:#31729B}#o_navbar_container #o_navbar_header a.navbar-brand:after{content:"\221E"}#o_navbar_container #o_navbar_tabs li a{padding-right:30px}#o_navbar_container #o_navbar_tabs .o_navbar_tab_close{position:absolute;top:15px;right:0.5em;padding:0;width:1em;height:1em}#o_navbar_container #o_navbar_tabs .o_navbar_tab_close span:before{color:#A87E7E}#o_navbar_container #o_navbar_tabs .o_navbar_tab_close:hover span:before{color:#CC0000}#o_navbar_container #o_navbar_tools #o_navbar_langchooser{color:#777;padding:15px}#o_navbar_container #o_navbar_tools #o_navbar_langchooser form span+div{display:inline}#o_navbar_container #o_navbar_tools #o_navbar_help a span{margin-right:0.4em}#o_navbar_container #o_navbar_tools #o_navbar_my_menu .dropdown-toggle{padding-left:45px}#o_navbar_container #o_navbar_tools #o_navbar_my_menu img{position:absolute;left:7px;top:10px;height:30px;width:30px}#o_footer{position:absolute;bottom:0;width:100%;min-height:60px;background-color:#f5f5f5;color:#999;line-height:16px}#o_footer a{color:#999}#o_footer a:hover{color:#000}#o_footer #o_footer_container{position:relative;padding-top:10px;max-width:1324px;min-height:60px;background:#f5f5f5}#o_footer #o_footer_container #o_footer_user #o_counter{white-space:nowrap}#o_footer #o_footer_container #o_footer_user #o_username{white-space:nowrap;margin-right:1em}#o_footer #o_footer_container #o_footer_version{text-align:right}@media (max-width: 767px){#o_footer #o_footer_container #o_footer_version{padding-top:10px;text-align:left}}#o_footer #o_footer_container #o_footer_powered{text-align:center}#o_footer #o_footer_container #o_footer_powered img{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=60);-moz-opacity:0.6;-khtml-opacity:0.6;opacity:0.6}#o_footer #o_footer_container #o_footer_powered img:hover{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1}@media (max-width: 767px){#o_footer #o_footer_container #o_footer_powered{display:none}}
+#o_share{margin-top:5px;width:250px}#o_share a{margin:0 3px 0 0;background-repeat:no-repeat;width:16px;height:16px;float:left;display:inline;zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=60);-moz-opacity:0.6;-khtml-opacity:0.6;opacity:0.6}#o_share a:hover{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1}#o_share #o_facebook{background-image:url("../light/images/social/facebook_16.png")}#o_share #o_twitter{background-image:url("../light/images/social/twitter_16.png")}#o_share #o_google{background-image:url("../light/images/social/google_16.png")}#o_share #o_delicious{background-image:url("../light/images/social/delicious_16.png")}#o_share #o_digg{background-image:url("../light/images/social/digg_16.png")}#o_share #o_mail{background-image:url("../light/images/social/email_16.png")}#o_share #o_link{background-image:url("../light/images/social/link_16.png")}#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary{padding:15px 3px}#o_navbar_imclient #o_im_summary{padding-right:15px}.o_im_available_icon span{color:#006633}.o_im_dnd_icon span{color:#CCCC33}.o_im_unavailable_icon span{color:#996633}.o_flag{position:relative;top:1px;display:inline-block;line-height:1;width:16px;height:16px;background-repeat:no-repeat;background-position:0 100%}.o_flag_en{background-image:url("../light/images/flags/gb.png")}.o_flag_de{background-image:url("../light/images/flags/de.png")}.o_flag_fr{background-image:url("../light/images/flags/fr.png")}.o_flag_it{background-image:url("../light/images/flags/it.png")}.o_flag_es{background-image:url("../light/images/flags/es.png")}.o_flag_da{background-image:url("../light/images/flags/dk.png")}.o_flag_cs{background-image:url("../light/images/flags/cz.png")}.o_flag_el{background-image:url("../light/images/flags/gr.png")}.o_flag_ee{background-image:url("../light/images/flags/ee.png")}.o_flag_ru{background-image:url("../light/images/flags/ru.png")}.o_flag_pl{background-image:url("../light/images/flags/pl.png")}.o_flag_zh_CN{background-image:url("../light/images/flags/cn.png")}.o_flag_zh_TW{background-image:url("../light/images/flags/tw.png")}.o_flag_lt{background-image:url("../light/images/flags/lt.png")}.o_flag_fa{background-image:url("../light/images/flags/ir.png")}.o_flag_pt_PT{background-image:url("../light/images/flags/pt.png")}.o_flag_pt_BR{background-image:url("../light/images/flags/br.png")}.o_flag_tr{background-image:url("../light/images/flags/tr.png")}.o_flag_hu{background-image:url("../light/images/flags/hu.png")}.o_flag_sq{background-image:url("../light/images/flags/al.png")}.o_flag_in{background-image:url("../light/images/flags/id.png")}.o_flag_ar{background-image:url("../light/images/flags/eg.png")}.o_flag_rm{background-image:url("../light/images/flags/rm.png")}.o_flag_af{background-image:url("../light/images/flags/za.png")}.o_flag_vi{background-image:url("../light/images/flags/vn.png")}.o_flag_mn{background-image:url("../light/images/flags/mn.png")}.o_flag_iw{background-image:url("../light/images/flags/il.png")}.o_flag_ko{background-image:url("../light/images/flags/kr.png")}.o_flag_nl_NL{background-image:url("../light/images/flags/nl.png")}.o_flag_jp{background-image:url("../light/images/flags/jp.png")}.o_flag_nb_NO{background-image:url("../light/images/flags/no.png")}.o_flag_et_EE{background-image:url("../light/images/flags/ee.png")}.o_flag_bg{background-image:url("../light/images/flags/bg.png")}.o_flag_hi_IN_ASIA{background-image:url("../light/images/flags/in.png")}.o_flag_ar_LB{background-image:url("../light/images/flags/lb.png")}.o_flag_gl_ES{background-image:url("../light/images/flags/galicia.png")}.o_portrait_dummy,.o_portrait_dummy_female_big,.o_portrait_dummy_male_big,.o_portrait_anonymous{width:100px;height:100px}.o_portrait_dummy{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_female_big{background-image:url("../light/images/portrait/dummy_female_big.png")}.o_portrait_dummy_male_big{background-image:url("../light/images/portrait/dummy_male_big.png")}.o_portrait_anonymous{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_small,.o_portrait_dummy_female_small,.o_portrait_dummy_male_small,.o_portrait_anonymous_small{width:30px;height:30px}.o_portrait_dummy_small{background-image:url("../light/images/portrait/dummy_small.png")}.o_portrait_dummy_female_small{background-image:url("../light/images/portrait/dummy_female_small.png")}.o_portrait_dummy_male_small{background-image:url("../light/images/portrait/dummy_male_small.png")}.o_portrait_anonymous_small{background-image:url("../light/images/portrait/dummy_small.png")}
diff --git a/src/main/webapp/static/themes/light/theme.scss b/src/main/webapp/static/themes/light/theme.scss
new file mode 100644
index 0000000000000000000000000000000000000000..0575c5b26c3eaa8a7801e45e8c92f85eb9ae37b4
--- /dev/null
+++ b/src/main/webapp/static/themes/light/theme.scss
@@ -0,0 +1,18 @@
+@charset "UTF-8";
+
+/*
+ * =================================================
+ *  
+ * Main SASS file for the OpenOLAT default theme
+ *   
+ * @author gnaegi,  www.frentix.com
+ * @date April 2014
+ *
+ * please read themes.README to create your own themes!
+ *
+ *  =================================================
+ */
+@import "license";
+
+@import "config";
+@import "modules";
\ No newline at end of file