http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/embed.js
----------------------------------------------------------------------
diff --git a/semantic/dist/components/embed.js 
b/semantic/dist/components/embed.js
deleted file mode 100644
index aa1a8f1..0000000
--- a/semantic/dist/components/embed.js
+++ /dev/null
@@ -1,696 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Embed
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-;(function ($, window, document, undefined) {
-
-"use strict";
-
-window = (typeof window != 'undefined' && window.Math == Math)
-  ? window
-  : (typeof self != 'undefined' && self.Math == Math)
-    ? self
-    : Function('return this')()
-;
-
-$.fn.embed = function(parameters) {
-
-  var
-    $allModules     = $(this),
-
-    moduleSelector  = $allModules.selector || '',
-
-    time            = new Date().getTime(),
-    performance     = [],
-
-    query           = arguments[0],
-    methodInvoked   = (typeof query == 'string'),
-    queryArguments  = [].slice.call(arguments, 1),
-
-    returnedValue
-  ;
-
-  $allModules
-    .each(function() {
-      var
-        settings        = ( $.isPlainObject(parameters) )
-          ? $.extend(true, {}, $.fn.embed.settings, parameters)
-          : $.extend({}, $.fn.embed.settings),
-
-        selector        = settings.selector,
-        className       = settings.className,
-        sources         = settings.sources,
-        error           = settings.error,
-        metadata        = settings.metadata,
-        namespace       = settings.namespace,
-        templates       = settings.templates,
-
-        eventNamespace  = '.' + namespace,
-        moduleNamespace = 'module-' + namespace,
-
-        $window         = $(window),
-        $module         = $(this),
-        $placeholder    = $module.find(selector.placeholder),
-        $icon           = $module.find(selector.icon),
-        $embed          = $module.find(selector.embed),
-
-        element         = this,
-        instance        = $module.data(moduleNamespace),
-        module
-      ;
-
-      module = {
-
-        initialize: function() {
-          module.debug('Initializing embed');
-          module.determine.autoplay();
-          module.create();
-          module.bind.events();
-          module.instantiate();
-        },
-
-        instantiate: function() {
-          module.verbose('Storing instance of module', module);
-          instance = module;
-          $module
-            .data(moduleNamespace, module)
-          ;
-        },
-
-        destroy: function() {
-          module.verbose('Destroying previous instance of embed');
-          module.reset();
-          $module
-            .removeData(moduleNamespace)
-            .off(eventNamespace)
-          ;
-        },
-
-        refresh: function() {
-          module.verbose('Refreshing selector cache');
-          $placeholder = $module.find(selector.placeholder);
-          $icon        = $module.find(selector.icon);
-          $embed       = $module.find(selector.embed);
-        },
-
-        bind: {
-          events: function() {
-            if( module.has.placeholder() ) {
-              module.debug('Adding placeholder events');
-              $module
-                .on('click' + eventNamespace, selector.placeholder, 
module.createAndShow)
-                .on('click' + eventNamespace, selector.icon, 
module.createAndShow)
-              ;
-            }
-          }
-        },
-
-        create: function() {
-          var
-            placeholder = module.get.placeholder()
-          ;
-          if(placeholder) {
-            module.createPlaceholder();
-          }
-          else {
-            module.createAndShow();
-          }
-        },
-
-        createPlaceholder: function(placeholder) {
-          var
-            icon  = module.get.icon(),
-            url   = module.get.url(),
-            embed = module.generate.embed(url)
-          ;
-          placeholder = placeholder || module.get.placeholder();
-          $module.html( templates.placeholder(placeholder, icon) );
-          module.debug('Creating placeholder for embed', placeholder, icon);
-        },
-
-        createEmbed: function(url) {
-          module.refresh();
-          url = url || module.get.url();
-          $embed = $('<div/>')
-            .addClass(className.embed)
-            .html( module.generate.embed(url) )
-            .appendTo($module)
-          ;
-          settings.onCreate.call(element, url);
-          module.debug('Creating embed object', $embed);
-        },
-
-        changeEmbed: function(url) {
-          $embed
-            .html( module.generate.embed(url) )
-          ;
-        },
-
-        createAndShow: function() {
-          module.createEmbed();
-          module.show();
-        },
-
-        // sets new embed
-        change: function(source, id, url) {
-          module.debug('Changing video to ', source, id, url);
-          $module
-            .data(metadata.source, source)
-            .data(metadata.id, id)
-          ;
-          if(url) {
-            $module.data(metadata.url, url);
-          }
-          else {
-            $module.removeData(metadata.url);
-          }
-          if(module.has.embed()) {
-            module.changeEmbed();
-          }
-          else {
-            module.create();
-          }
-        },
-
-        // clears embed
-        reset: function() {
-          module.debug('Clearing embed and showing placeholder');
-          module.remove.active();
-          module.remove.embed();
-          module.showPlaceholder();
-          settings.onReset.call(element);
-        },
-
-        // shows current embed
-        show: function() {
-          module.debug('Showing embed');
-          module.set.active();
-          settings.onDisplay.call(element);
-        },
-
-        hide: function() {
-          module.debug('Hiding embed');
-          module.showPlaceholder();
-        },
-
-        showPlaceholder: function() {
-          module.debug('Showing placeholder image');
-          module.remove.active();
-          settings.onPlaceholderDisplay.call(element);
-        },
-
-        get: {
-          id: function() {
-            return settings.id || $module.data(metadata.id);
-          },
-          placeholder: function() {
-            return settings.placeholder || $module.data(metadata.placeholder);
-          },
-          icon: function() {
-            return (settings.icon)
-              ? settings.icon
-              : ($module.data(metadata.icon) !== undefined)
-                ? $module.data(metadata.icon)
-                : module.determine.icon()
-            ;
-          },
-          source: function(url) {
-            return (settings.source)
-              ? settings.source
-              : ($module.data(metadata.source) !== undefined)
-                ? $module.data(metadata.source)
-                : module.determine.source()
-            ;
-          },
-          type: function() {
-            var source = module.get.source();
-            return (sources[source] !== undefined)
-              ? sources[source].type
-              : false
-            ;
-          },
-          url: function() {
-            return (settings.url)
-              ? settings.url
-              : ($module.data(metadata.url) !== undefined)
-                ? $module.data(metadata.url)
-                : module.determine.url()
-            ;
-          }
-        },
-
-        determine: {
-          autoplay: function() {
-            if(module.should.autoplay()) {
-              settings.autoplay = true;
-            }
-          },
-          source: function(url) {
-            var
-              matchedSource = false
-            ;
-            url = url || module.get.url();
-            if(url) {
-              $.each(sources, function(name, source) {
-                if(url.search(source.domain) !== -1) {
-                  matchedSource = name;
-                  return false;
-                }
-              });
-            }
-            return matchedSource;
-          },
-          icon: function() {
-            var
-              source = module.get.source()
-            ;
-            return (sources[source] !== undefined)
-              ? sources[source].icon
-              : false
-            ;
-          },
-          url: function() {
-            var
-              id     = settings.id     || $module.data(metadata.id),
-              source = settings.source || $module.data(metadata.source),
-              url
-            ;
-            url = (sources[source] !== undefined)
-              ? sources[source].url.replace('{id}', id)
-              : false
-            ;
-            if(url) {
-              $module.data(metadata.url, url);
-            }
-            return url;
-          }
-        },
-
-
-        set: {
-          active: function() {
-            $module.addClass(className.active);
-          }
-        },
-
-        remove: {
-          active: function() {
-            $module.removeClass(className.active);
-          },
-          embed: function() {
-            $embed.empty();
-          }
-        },
-
-        encode: {
-          parameters: function(parameters) {
-            var
-              urlString = [],
-              index
-            ;
-            for (index in parameters) {
-              urlString.push( encodeURIComponent(index) + '=' + 
encodeURIComponent( parameters[index] ) );
-            }
-            return urlString.join('&amp;');
-          }
-        },
-
-        generate: {
-          embed: function(url) {
-            module.debug('Generating embed html');
-            var
-              source = module.get.source(),
-              html,
-              parameters
-            ;
-            url = module.get.url(url);
-            if(url) {
-              parameters = module.generate.parameters(source);
-              html       = templates.iframe(url, parameters);
-            }
-            else {
-              module.error(error.noURL, $module);
-            }
-            return html;
-          },
-          parameters: function(source, extraParameters) {
-            var
-              parameters = (sources[source] && sources[source].parameters !== 
undefined)
-                ? sources[source].parameters(settings)
-                : {}
-            ;
-            extraParameters = extraParameters || settings.parameters;
-            if(extraParameters) {
-              parameters = $.extend({}, parameters, extraParameters);
-            }
-            parameters = settings.onEmbed(parameters);
-            return module.encode.parameters(parameters);
-          }
-        },
-
-        has: {
-          embed: function() {
-            return ($embed.length > 0);
-          },
-          placeholder: function() {
-            return settings.placeholder || $module.data(metadata.placeholder);
-          }
-        },
-
-        should: {
-          autoplay: function() {
-            return (settings.autoplay === 'auto')
-              ? (settings.placeholder || $module.data(metadata.placeholder) 
!== undefined)
-              : settings.autoplay
-            ;
-          }
-        },
-
-        is: {
-          video: function() {
-            return module.get.type() == 'video';
-          }
-        },
-
-        setting: function(name, value) {
-          module.debug('Changing setting', name, value);
-          if( $.isPlainObject(name) ) {
-            $.extend(true, settings, name);
-          }
-          else if(value !== undefined) {
-            if($.isPlainObject(settings[name])) {
-              $.extend(true, settings[name], value);
-            }
-            else {
-              settings[name] = value;
-            }
-          }
-          else {
-            return settings[name];
-          }
-        },
-        internal: function(name, value) {
-          if( $.isPlainObject(name) ) {
-            $.extend(true, module, name);
-          }
-          else if(value !== undefined) {
-            module[name] = value;
-          }
-          else {
-            return module[name];
-          }
-        },
-        debug: function() {
-          if(!settings.silent && settings.debug) {
-            if(settings.performance) {
-              module.performance.log(arguments);
-            }
-            else {
-              module.debug = Function.prototype.bind.call(console.info, 
console, settings.name + ':');
-              module.debug.apply(console, arguments);
-            }
-          }
-        },
-        verbose: function() {
-          if(!settings.silent && settings.verbose && settings.debug) {
-            if(settings.performance) {
-              module.performance.log(arguments);
-            }
-            else {
-              module.verbose = Function.prototype.bind.call(console.info, 
console, settings.name + ':');
-              module.verbose.apply(console, arguments);
-            }
-          }
-        },
-        error: function() {
-          if(!settings.silent) {
-            module.error = Function.prototype.bind.call(console.error, 
console, settings.name + ':');
-            module.error.apply(console, arguments);
-          }
-        },
-        performance: {
-          log: function(message) {
-            var
-              currentTime,
-              executionTime,
-              previousTime
-            ;
-            if(settings.performance) {
-              currentTime   = new Date().getTime();
-              previousTime  = time || currentTime;
-              executionTime = currentTime - previousTime;
-              time          = currentTime;
-              performance.push({
-                'Name'           : message[0],
-                'Arguments'      : [].slice.call(message, 1) || '',
-                'Element'        : element,
-                'Execution Time' : executionTime
-              });
-            }
-            clearTimeout(module.performance.timer);
-            module.performance.timer = setTimeout(module.performance.display, 
500);
-          },
-          display: function() {
-            var
-              title = settings.name + ':',
-              totalTime = 0
-            ;
-            time = false;
-            clearTimeout(module.performance.timer);
-            $.each(performance, function(index, data) {
-              totalTime += data['Execution Time'];
-            });
-            title += ' ' + totalTime + 'ms';
-            if(moduleSelector) {
-              title += ' \'' + moduleSelector + '\'';
-            }
-            if($allModules.length > 1) {
-              title += ' ' + '(' + $allModules.length + ')';
-            }
-            if( (console.group !== undefined || console.table !== undefined) 
&& performance.length > 0) {
-              console.groupCollapsed(title);
-              if(console.table) {
-                console.table(performance);
-              }
-              else {
-                $.each(performance, function(index, data) {
-                  console.log(data['Name'] + ': ' + data['Execution 
Time']+'ms');
-                });
-              }
-              console.groupEnd();
-            }
-            performance = [];
-          }
-        },
-        invoke: function(query, passedArguments, context) {
-          var
-            object = instance,
-            maxDepth,
-            found,
-            response
-          ;
-          passedArguments = passedArguments || queryArguments;
-          context         = element         || context;
-          if(typeof query == 'string' && object !== undefined) {
-            query    = query.split(/[\. ]/);
-            maxDepth = query.length - 1;
-            $.each(query, function(depth, value) {
-              var camelCaseValue = (depth != maxDepth)
-                ? value + query[depth + 1].charAt(0).toUpperCase() + 
query[depth + 1].slice(1)
-                : query
-              ;
-              if( $.isPlainObject( object[camelCaseValue] ) && (depth != 
maxDepth) ) {
-                object = object[camelCaseValue];
-              }
-              else if( object[camelCaseValue] !== undefined ) {
-                found = object[camelCaseValue];
-                return false;
-              }
-              else if( $.isPlainObject( object[value] ) && (depth != maxDepth) 
) {
-                object = object[value];
-              }
-              else if( object[value] !== undefined ) {
-                found = object[value];
-                return false;
-              }
-              else {
-                module.error(error.method, query);
-                return false;
-              }
-            });
-          }
-          if ( $.isFunction( found ) ) {
-            response = found.apply(context, passedArguments);
-          }
-          else if(found !== undefined) {
-            response = found;
-          }
-          if($.isArray(returnedValue)) {
-            returnedValue.push(response);
-          }
-          else if(returnedValue !== undefined) {
-            returnedValue = [returnedValue, response];
-          }
-          else if(response !== undefined) {
-            returnedValue = response;
-          }
-          return found;
-        }
-      };
-
-      if(methodInvoked) {
-        if(instance === undefined) {
-          module.initialize();
-        }
-        module.invoke(query);
-      }
-      else {
-        if(instance !== undefined) {
-          instance.invoke('destroy');
-        }
-        module.initialize();
-      }
-    })
-  ;
-  return (returnedValue !== undefined)
-    ? returnedValue
-    : this
-  ;
-};
-
-$.fn.embed.settings = {
-
-  name        : 'Embed',
-  namespace   : 'embed',
-
-  silent      : false,
-  debug       : false,
-  verbose     : false,
-  performance : true,
-
-  icon     : false,
-  source   : false,
-  url      : false,
-  id       : false,
-
-  // standard video settings
-  autoplay  : 'auto',
-  color     : '#444444',
-  hd        : true,
-  brandedUI : false,
-
-  // additional parameters to include with the embed
-  parameters: false,
-
-  onDisplay            : function() {},
-  onPlaceholderDisplay : function() {},
-  onReset              : function() {},
-  onCreate             : function(url) {},
-  onEmbed              : function(parameters) {
-    return parameters;
-  },
-
-  metadata    : {
-    id          : 'id',
-    icon        : 'icon',
-    placeholder : 'placeholder',
-    source      : 'source',
-    url         : 'url'
-  },
-
-  error : {
-    noURL  : 'No URL specified',
-    method : 'The method you called is not defined'
-  },
-
-  className : {
-    active : 'active',
-    embed  : 'embed'
-  },
-
-  selector : {
-    embed       : '.embed',
-    placeholder : '.placeholder',
-    icon        : '.icon'
-  },
-
-  sources: {
-    youtube: {
-      name   : 'youtube',
-      type   : 'video',
-      icon   : 'video play',
-      domain : 'youtube.com',
-      url    : '//www.youtube.com/embed/{id}',
-      parameters: function(settings) {
-        return {
-          autohide       : !settings.brandedUI,
-          autoplay       : settings.autoplay,
-          color          : settings.color || undefined,
-          hq             : settings.hd,
-          jsapi          : settings.api,
-          modestbranding : !settings.brandedUI
-        };
-      }
-    },
-    vimeo: {
-      name   : 'vimeo',
-      type   : 'video',
-      icon   : 'video play',
-      domain : 'vimeo.com',
-      url    : '//player.vimeo.com/video/{id}',
-      parameters: function(settings) {
-        return {
-          api      : settings.api,
-          autoplay : settings.autoplay,
-          byline   : settings.brandedUI,
-          color    : settings.color || undefined,
-          portrait : settings.brandedUI,
-          title    : settings.brandedUI
-        };
-      }
-    }
-  },
-
-  templates: {
-    iframe : function(url, parameters) {
-      var src = url;
-      if (parameters) {
-          src += '?' + parameters;
-      }
-      return ''
-        + '<iframe src="' + src + '"'
-        + ' width="100%" height="100%"'
-        + ' frameborder="0" scrolling="no" webkitAllowFullScreen 
mozallowfullscreen allowFullScreen></iframe>'
-      ;
-    },
-    placeholder : function(image, icon) {
-      var
-        html = ''
-      ;
-      if(icon) {
-        html += '<i class="' + icon + ' icon"></i>';
-      }
-      if(image) {
-        html += '<img class="placeholder" src="' + image + '">';
-      }
-      return html;
-    }
-  },
-
-  // NOT YET IMPLEMENTED
-  api     : false,
-  onPause : function() {},
-  onPlay  : function() {},
-  onStop  : function() {}
-
-};
-
-
-
-})( jQuery, window, document );

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/embed.min.css
----------------------------------------------------------------------
diff --git a/semantic/dist/components/embed.min.css 
b/semantic/dist/components/embed.min.css
deleted file mode 100644
index 2f1aaae..0000000
--- a/semantic/dist/components/embed.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Video
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- 
*/.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#DCDDDE;padding-bottom:56.25%}.ui.embed
 embed,.ui.embed iframe,.ui.embed 
object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent
 
45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:-webkit-radial-gradient(transparent
 45%,rgba(0,0,0,.3));background:radial-gradient(transparent 
45%,rgba(0,0,0,.3));opacity:.5;-webkit-transition:opacity .5s 
ease;transition:opacity .5s 
ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%)
 translateY(-50%);transform:translateX(-50%) translateY(-50%);co
 lor:#EBEBEB;font-size:6rem;text-shadow:0 2px 10px 
rgba(34,36,38,.2);-webkit-transition:opacity .5s ease,color .5s 
ease;transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed 
.icon:hover:after{background:-webkit-radial-gradient(transparent 
45%,rgba(0,0,0,.3));background:radial-gradient(transparent 
45%,rgba(0,0,0,.3));opacity:1}.ui.embed 
.icon:hover:before{color:#EBEBEB}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/embed.min.js
----------------------------------------------------------------------
diff --git a/semantic/dist/components/embed.min.js 
b/semantic/dist/components/embed.min.js
deleted file mode 100644
index 21e8da8..0000000
--- a/semantic/dist/components/embed.min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Embed
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-!function(e,n,o,t){"use strict";n="undefined"!=typeof 
n&&n.Math==Math?n:"undefined"!=typeof 
self&&self.Math==Math?self:Function("return this")(),e.fn.embed=function(o){var 
r,a=e(this),i=a.selector||"",c=(new 
Date).getTime(),l=[],d=arguments[0],u="string"==typeof 
d,s=[].slice.call(arguments,1);return a.each(function(){var 
m,p=e.isPlainObject(o)?e.extend(!0,{},e.fn.embed.settings,o):e.extend({},e.fn.embed.settings),f=p.selector,h=p.className,b=p.sources,g=p.error,v=p.metadata,y=p.namespace,w=p.templates,P="."+y,C="module-"+y,E=(e(n),e(this)),U=E.find(f.placeholder),j=E.find(f.icon),S=E.find(f.embed),T=this,x=E.data(C);m={initialize:function(){m.debug("Initializing
 
embed"),m.determine.autoplay(),m.create(),m.bind.events(),m.instantiate()},instantiate:function(){m.verbose("Storing
 instance of 
module",m),x=m,E.data(C,m)},destroy:function(){m.verbose("Destroying previous 
instance of 
embed"),m.reset(),E.removeData(C).off(P)},refresh:function(){m.verbose("Refreshing
 selector cache"),U=E.fin
 
d(f.placeholder),j=E.find(f.icon),S=E.find(f.embed)},bind:{events:function(){m.has.placeholder()&&(m.debug("Adding
 placeholder 
events"),E.on("click"+P,f.placeholder,m.createAndShow).on("click"+P,f.icon,m.createAndShow))}},create:function(){var
 
e=m.get.placeholder();e?m.createPlaceholder():m.createAndShow()},createPlaceholder:function(e){var
 
n=m.get.icon(),o=m.get.url();m.generate.embed(o);e=e||m.get.placeholder(),E.html(w.placeholder(e,n)),m.debug("Creating
 placeholder for 
embed",e,n)},createEmbed:function(n){m.refresh(),n=n||m.get.url(),S=e("<div/>").addClass(h.embed).html(m.generate.embed(n)).appendTo(E),p.onCreate.call(T,n),m.debug("Creating
 embed 
object",S)},changeEmbed:function(e){S.html(m.generate.embed(e))},createAndShow:function(){m.createEmbed(),m.show()},change:function(e,n,o){m.debug("Changing
 video to 
",e,n,o),E.data(v.source,e).data(v.id,n),o?E.data(v.url,o):E.removeData(v.url),m.has.embed()?m.changeEmbed():m.create()},reset:function(){m.debug("Clearing
 embed and showin
 g 
placeholder"),m.remove.active(),m.remove.embed(),m.showPlaceholder(),p.onReset.call(T)},show:function(){m.debug("Showing
 embed"),m.set.active(),p.onDisplay.call(T)},hide:function(){m.debug("Hiding 
embed"),m.showPlaceholder()},showPlaceholder:function(){m.debug("Showing 
placeholder 
image"),m.remove.active(),p.onPlaceholderDisplay.call(T)},get:{id:function(){return
 p.id||E.data(v.id)},placeholder:function(){return 
p.placeholder||E.data(v.placeholder)},icon:function(){return 
p.icon?p.icon:E.data(v.icon)!==t?E.data(v.icon):m.determine.icon()},source:function(e){return
 
p.source?p.source:E.data(v.source)!==t?E.data(v.source):m.determine.source()},type:function(){var
 e=m.get.source();return b[e]!==t&&b[e].type},url:function(){return 
p.url?p.url:E.data(v.url)!==t?E.data(v.url):m.determine.url()}},determine:{autoplay:function(){m.should.autoplay()&&(p.autoplay=!0)},source:function(n){var
 o=!1;return 
n=n||m.get.url(),n&&e.each(b,function(e,t){if(n.search(t.domain)!==-1)return 
o=e,!1}),o},ic
 on:function(){var e=m.get.source();return 
b[e]!==t&&b[e].icon},url:function(){var 
e,n=p.id||E.data(v.id),o=p.source||E.data(v.source);return 
e=b[o]!==t&&b[o].url.replace("{id}",n),e&&E.data(v.url,e),e}},set:{active:function(){E.addClass(h.active)}},remove:{active:function(){E.removeClass(h.active)},embed:function(){S.empty()}},encode:{parameters:function(e){var
 n,o=[];for(n in 
e)o.push(encodeURIComponent(n)+"="+encodeURIComponent(e[n]));return 
o.join("&amp;")}},generate:{embed:function(e){m.debug("Generating embed 
html");var n,o,t=m.get.source();return 
e=m.get.url(e),e?(o=m.generate.parameters(t),n=w.iframe(e,o)):m.error(g.noURL,E),n},parameters:function(n,o){var
 r=b[n]&&b[n].parameters!==t?b[n].parameters(p):{};return 
o=o||p.parameters,o&&(r=e.extend({},r,o)),r=p.onEmbed(r),m.encode.parameters(r)}},has:{embed:function(){return
 S.length>0},placeholder:function(){return 
p.placeholder||E.data(v.placeholder)}},should:{autoplay:function(){return"auto"===p.autoplay?p.placeholder||E.data(
 
v.placeholder)!==t:p.autoplay}},is:{video:function(){return"video"==m.get.type()}},setting:function(n,o){if(m.debug("Changing
 setting",n,o),e.isPlainObject(n))e.extend(!0,p,n);else{if(o===t)return 
p[n];e.isPlainObject(p[n])?e.extend(!0,p[n],o):p[n]=o}},internal:function(n,o){if(e.isPlainObject(n))e.extend(!0,m,n);else{if(o===t)return
 
m[n];m[n]=o}},debug:function(){!p.silent&&p.debug&&(p.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,p.name+":"),m.debug.apply(console,arguments)))},verbose:function(){!p.silent&&p.verbose&&p.debug&&(p.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),m.verbose.apply(console,arguments)))},error:function(){p.silent||(m.error=Function.prototype.bind.call(console.error,console,p.name+":"),m.error.apply(console,arguments))},performance:{log:function(e){var
 n,o,t;p.performance&&(n=(new 
Date).getTime(),t=c||n,o=n-t,c=n,l.push({Name:e[0],Argumen
 ts:[].slice.call(e,1)||"",Element:T,"Execution 
Time":o})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,500)},display:function(){var
 
n=p.name+":",o=0;c=!1,clearTimeout(m.performance.timer),e.each(l,function(e,n){o+=n["Execution
 Time"]}),n+=" "+o+"ms",i&&(n+=" '"+i+"'"),a.length>1&&(n+=" 
("+a.length+")"),(console.group!==t||console.table!==t)&&l.length>0&&(console.groupCollapsed(n),console.table?console.table(l):e.each(l,function(e,n){console.log(n.Name+":
 "+n["Execution 
Time"]+"ms")}),console.groupEnd()),l=[]}},invoke:function(n,o,a){var 
i,c,l,d=x;return o=o||s,a=T||a,"string"==typeof n&&d!==t&&(n=n.split(/[\. 
]/),i=n.length-1,e.each(n,function(o,r){var 
a=o!=i?r+n[o+1].charAt(0).toUpperCase()+n[o+1].slice(1):n;if(e.isPlainObject(d[a])&&o!=i)d=d[a];else{if(d[a]!==t)return
 c=d[a],!1;if(!e.isPlainObject(d[r])||o==i)return 
d[r]!==t?(c=d[r],!1):(m.error(g.method,n),!1);d=d[r]}})),e.isFunction(c)?l=c.apply(a,o):c!==t&&(l=c),e.isArray(r)?r.push(l):r
 
!==t?r=[r,l]:l!==t&&(r=l),c}},u?(x===t&&m.initialize(),m.invoke(d)):(x!==t&&x.invoke("destroy"),m.initialize())}),r!==t?r:this},e.fn.embed.settings={name:"Embed",namespace:"embed",silent:!1,debug:!1,verbose:!1,performance:!0,icon:!1,source:!1,url:!1,id:!1,autoplay:"auto",color:"#444444",hd:!0,brandedUI:!1,parameters:!1,onDisplay:function(){},onPlaceholderDisplay:function(){},onReset:function(){},onCreate:function(e){},onEmbed:function(e){return
 
e},metadata:{id:"id",icon:"icon",placeholder:"placeholder",source:"source",url:"url"},error:{noURL:"No
 URL specified",method:"The method you called is not 
defined"},className:{active:"active",embed:"embed"},selector:{embed:".embed",placeholder:".placeholder",icon:".icon"},sources:{youtube:{name:"youtube",type:"video",icon:"video
 
play",domain:"youtube.com",url:"//www.youtube.com/embed/{id}",parameters:function(e){return{autohide:!e.brandedUI,autoplay:e.autoplay,color:e.color||t,hq:e.hd,jsapi:e.api,modestbranding:!e.brandedUI}}},vimeo:{name:"vi
 meo",type:"video",icon:"video 
play",domain:"vimeo.com",url:"//player.vimeo.com/video/{id}",parameters:function(e){return{api:e.api,autoplay:e.autoplay,byline:e.brandedUI,color:e.color||t,portrait:e.brandedUI,title:e.brandedUI}}}},templates:{iframe:function(e,n){var
 o=e;return n&&(o+="?"+n),'<iframe src="'+o+'" width="100%" height="100%" 
frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen 
allowFullScreen></iframe>'},placeholder:function(e,n){var o="";return 
n&&(o+='<i class="'+n+' icon"></i>'),e&&(o+='<img class="placeholder" 
src="'+e+'">'),o}},api:!1,onPause:function(){},onPlay:function(){},onStop:function(){}}}(jQuery,window,document);
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/feed.css
----------------------------------------------------------------------
diff --git a/semantic/dist/components/feed.css 
b/semantic/dist/components/feed.css
deleted file mode 100755
index c181bc8..0000000
--- a/semantic/dist/components/feed.css
+++ /dev/null
@@ -1,296 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Feed
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
-         Activity Feed
-*******************************/
-
-.ui.feed {
-  margin: 1em 0em;
-}
-.ui.feed:first-child {
-  margin-top: 0em;
-}
-.ui.feed:last-child {
-  margin-bottom: 0em;
-}
-
-
-/*******************************
-            Content
-*******************************/
-
-
-/* Event */
-.ui.feed > .event {
-  display: -webkit-box;
-  display: -ms-flexbox;
-  display: flex;
-  -webkit-box-orient: horizontal;
-  -webkit-box-direction: normal;
-      -ms-flex-direction: row;
-          flex-direction: row;
-  width: 100%;
-  padding: 0.21428571rem 0em;
-  margin: 0em;
-  background: none;
-  border-top: none;
-}
-.ui.feed > .event:first-child {
-  border-top: 0px;
-  padding-top: 0em;
-}
-.ui.feed > .event:last-child {
-  padding-bottom: 0em;
-}
-
-/* Event Label */
-.ui.feed > .event > .label {
-  display: block;
-  -webkit-box-flex: 0;
-      -ms-flex: 0 0 auto;
-          flex: 0 0 auto;
-  width: 2.5em;
-  height: auto;
-  -ms-flex-item-align: stretch;
-      -ms-grid-row-align: stretch;
-      align-self: stretch;
-  text-align: left;
-}
-.ui.feed > .event > .label .icon {
-  opacity: 1;
-  font-size: 1.5em;
-  width: 100%;
-  padding: 0.25em;
-  background: none;
-  border: none;
-  border-radius: none;
-  color: rgba(0, 0, 0, 0.6);
-}
-.ui.feed > .event > .label img {
-  width: 100%;
-  height: auto;
-  border-radius: 500rem;
-}
-.ui.feed > .event > .label + .content {
-  margin: 0.5em 0em 0.35714286em 1.14285714em;
-}
-
-/*--------------
-     Content
----------------*/
-
-
-/* Content */
-.ui.feed > .event > .content {
-  display: block;
-  -webkit-box-flex: 1;
-      -ms-flex: 1 1 auto;
-          flex: 1 1 auto;
-  -ms-flex-item-align: stretch;
-      -ms-grid-row-align: stretch;
-      align-self: stretch;
-  text-align: left;
-  word-wrap: break-word;
-}
-.ui.feed > .event:last-child > .content {
-  padding-bottom: 0em;
-}
-
-/* Link */
-.ui.feed > .event > .content a {
-  cursor: pointer;
-}
-
-/*--------------
-      Date
----------------*/
-
-.ui.feed > .event > .content .date {
-  margin: -0.5rem 0em 0em;
-  padding: 0em;
-  font-weight: normal;
-  font-size: 1em;
-  font-style: normal;
-  color: rgba(0, 0, 0, 0.4);
-}
-
-/*--------------
-     Summary
----------------*/
-
-.ui.feed > .event > .content .summary {
-  margin: 0em;
-  font-size: 1em;
-  font-weight: bold;
-  color: #262626;
-}
-
-/* Summary Image */
-.ui.feed > .event > .content .summary img {
-  display: inline-block;
-  width: auto;
-  height: 10em;
-  margin: -0.25em 0.25em 0em 0em;
-  border-radius: 0.25em;
-  vertical-align: middle;
-}
-
-/*--------------
-      User
----------------*/
-
-.ui.feed > .event > .content .user {
-  display: inline-block;
-  font-weight: bold;
-  margin-right: 0em;
-  vertical-align: baseline;
-}
-.ui.feed > .event > .content .user img {
-  margin: -0.25em 0.25em 0em 0em;
-  width: auto;
-  height: 10em;
-  vertical-align: middle;
-}
-
-/*--------------
-   Inline Date
----------------*/
-
-
-/* Date inside Summary */
-.ui.feed > .event > .content .summary > .date {
-  display: inline-block;
-  float: none;
-  font-weight: normal;
-  font-size: 0.85714286em;
-  font-style: normal;
-  margin: 0em 0em 0em 0.5em;
-  padding: 0em;
-  color: rgba(0, 0, 0, 0.4);
-}
-
-/*--------------
-  Extra Summary
----------------*/
-
-.ui.feed > .event > .content .extra {
-  margin: 0.5em 0em 0em;
-  background: none;
-  padding: 0em;
-  color: #262626;
-}
-
-/* Images */
-.ui.feed > .event > .content .extra.images img {
-  display: inline-block;
-  margin: 0em 0.25em 0em 0em;
-  width: 6em;
-}
-
-/* Text */
-.ui.feed > .event > .content .extra.text {
-  padding: 0em;
-  border-left: none;
-  font-size: 1em;
-  max-width: 500px;
-  line-height: 1.4285em;
-}
-
-/*--------------
-      Meta
----------------*/
-
-.ui.feed > .event > .content .meta {
-  display: inline-block;
-  font-size: 0.85714286em;
-  margin: 0.5em 0em 0em;
-  background: none;
-  border: none;
-  border-radius: 0;
-  box-shadow: none;
-  padding: 0em;
-  color: rgba(0, 0, 0, 0.6);
-}
-.ui.feed > .event > .content .meta > * {
-  position: relative;
-  margin-left: 0.75em;
-}
-.ui.feed > .event > .content .meta > *:after {
-  content: '';
-  color: rgba(0, 0, 0, 0.2);
-  top: 0em;
-  left: -1em;
-  opacity: 1;
-  position: absolute;
-  vertical-align: top;
-}
-.ui.feed > .event > .content .meta .like {
-  color: '';
-  -webkit-transition: 0.2s color ease;
-  transition: 0.2s color ease;
-}
-.ui.feed > .event > .content .meta .like:hover .icon {
-  color: #FF2733;
-}
-.ui.feed > .event > .content .meta .active.like .icon {
-  color: #EF404A;
-}
-
-/* First element */
-.ui.feed > .event > .content .meta > :first-child {
-  margin-left: 0em;
-}
-.ui.feed > .event > .content .meta > :first-child::after {
-  display: none;
-}
-
-/* Action */
-.ui.feed > .event > .content .meta a,
-.ui.feed > .event > .content .meta > .icon {
-  cursor: pointer;
-  opacity: 1;
-  color: rgba(0, 0, 0, 0.5);
-  -webkit-transition: color 0.1s ease;
-  transition: color 0.1s ease;
-}
-.ui.feed > .event > .content .meta a:hover,
-.ui.feed > .event > .content .meta a:hover .icon,
-.ui.feed > .event > .content .meta > .icon:hover {
-  color: rgba(0, 0, 0, 0.95);
-}
-
-
-/*******************************
-            Variations
-*******************************/
-
-.ui.small.feed {
-  font-size: 0.92857143rem;
-}
-.ui.feed {
-  font-size: 1rem;
-}
-.ui.large.feed {
-  font-size: 1.14285714rem;
-}
-
-
-/*******************************
-         Theme Overrides
-*******************************/
-
-
-
-/*******************************
-    User Variable Overrides
-*******************************/
-

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/feed.min.css
----------------------------------------------------------------------
diff --git a/semantic/dist/components/feed.min.css 
b/semantic/dist/components/feed.min.css
deleted file mode 100755
index 3dae0c2..0000000
--- a/semantic/dist/components/feed.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Feed
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */.ui.feed{margin:1em 
0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%;padding:.21428571rem
 0;margin:0;background:0 
0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;-webkit-box-flex:0;-ms-flex:0
 0 auto;flex:0 0 
auto;width:2.5em;height:auto;-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch;text-align:left}.ui.feed>.event>.label
 .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 
0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label 
img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em
 0 .35714286em 
1.14285714em}.ui.feed>.event>.content{display:block;-webkit-box-flex:1;-ms-flex:1
  1 auto;flex:1 1 
auto;-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content
 a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 
0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(0,0,0,.4)}.ui.feed>.event>.content
 
.summary{margin:0;font-size:1em;font-weight:700;color:#262626}.ui.feed>.event>.content
 .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 
0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content 
.user{display:inline-block;font-weight:700;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content
 .user img{margin:-.25em .25em 0 
0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content 
.summary>.date{display:inline-block;float:none;font-weight:400;font-size:.85714286em;font-style:normal;margin:0
 0 0 .5em;padding:0;color:rgba(0,0,0,.4)}.ui.feed>.event>.c
 ontent .extra{margin:.5em 0 0;background:0 
0;padding:0;color:#262626}.ui.feed>.event>.content .extra.images 
img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content 
.extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content
 .meta{display:inline-block;font-size:.85714286em;margin:.5em 0 0;background:0 
0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content
 .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content 
.meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content
 .meta .like{color:'';-webkit-transition:.2s color ease;transition:.2s color 
ease}.ui.feed>.event>.content .meta .like:hover 
.icon{color:#FF2733}.ui.feed>.event>.content .meta .active.like 
.icon{color:#EF404A}.ui.feed>.event>.content 
.meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::af
 ter{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content 
.meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);-webkit-transition:color
 .1s ease;transition:color .1s ease}.ui.feed>.event>.content .meta 
a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content 
.meta>.icon:hover{color:rgba(0,0,0,.95)}.ui.small.feed{font-size:.92857143rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.14285714rem}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/flag.css
----------------------------------------------------------------------
diff --git a/semantic/dist/components/flag.css 
b/semantic/dist/components/flag.css
deleted file mode 100755
index a4fd717..0000000
--- a/semantic/dist/components/flag.css
+++ /dev/null
@@ -1,1031 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Flag
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- */
-
-
-/*******************************
-             Flag
-*******************************/
-
-i.flag:not(.icon) {
-  display: inline-block;
-  width: 16px;
-  height: 11px;
-  line-height: 11px;
-  vertical-align: baseline;
-  margin: 0em 0.5em 0em 0em;
-  text-decoration: inherit;
-  speak: none;
-  font-smoothing: antialiased;
-  -webkit-backface-visibility: hidden;
-          backface-visibility: hidden;
-}
-
-/* Sprite */
-i.flag:not(.icon):before {
-  display: inline-block;
-  content: '';
-  background: url("./../themes/default/assets/images/flags.png") no-repeat 
-108px -1976px;
-  width: 16px;
-  height: 11px;
-}
-
-/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
-
-
-/*******************************
-         Theme Overrides
-*******************************/
-
-i.flag.ad:before,
-i.flag.andorra:before {
-  background-position: 0px 0px;
-}
-i.flag.ae:before,
-i.flag.united.arab.emirates:before,
-i.flag.uae:before {
-  background-position: 0px -26px;
-}
-i.flag.af:before,
-i.flag.afghanistan:before {
-  background-position: 0px -52px;
-}
-i.flag.ag:before,
-i.flag.antigua:before {
-  background-position: 0px -78px;
-}
-i.flag.ai:before,
-i.flag.anguilla:before {
-  background-position: 0px -104px;
-}
-i.flag.al:before,
-i.flag.albania:before {
-  background-position: 0px -130px;
-}
-i.flag.am:before,
-i.flag.armenia:before {
-  background-position: 0px -156px;
-}
-i.flag.an:before,
-i.flag.netherlands.antilles:before {
-  background-position: 0px -182px;
-}
-i.flag.ao:before,
-i.flag.angola:before {
-  background-position: 0px -208px;
-}
-i.flag.ar:before,
-i.flag.argentina:before {
-  background-position: 0px -234px;
-}
-i.flag.as:before,
-i.flag.american.samoa:before {
-  background-position: 0px -260px;
-}
-i.flag.at:before,
-i.flag.austria:before {
-  background-position: 0px -286px;
-}
-i.flag.au:before,
-i.flag.australia:before {
-  background-position: 0px -312px;
-}
-i.flag.aw:before,
-i.flag.aruba:before {
-  background-position: 0px -338px;
-}
-i.flag.ax:before,
-i.flag.aland.islands:before {
-  background-position: 0px -364px;
-}
-i.flag.az:before,
-i.flag.azerbaijan:before {
-  background-position: 0px -390px;
-}
-i.flag.ba:before,
-i.flag.bosnia:before {
-  background-position: 0px -416px;
-}
-i.flag.bb:before,
-i.flag.barbados:before {
-  background-position: 0px -442px;
-}
-i.flag.bd:before,
-i.flag.bangladesh:before {
-  background-position: 0px -468px;
-}
-i.flag.be:before,
-i.flag.belgium:before {
-  background-position: 0px -494px;
-}
-i.flag.bf:before,
-i.flag.burkina.faso:before {
-  background-position: 0px -520px;
-}
-i.flag.bg:before,
-i.flag.bulgaria:before {
-  background-position: 0px -546px;
-}
-i.flag.bh:before,
-i.flag.bahrain:before {
-  background-position: 0px -572px;
-}
-i.flag.bi:before,
-i.flag.burundi:before {
-  background-position: 0px -598px;
-}
-i.flag.bj:before,
-i.flag.benin:before {
-  background-position: 0px -624px;
-}
-i.flag.bm:before,
-i.flag.bermuda:before {
-  background-position: 0px -650px;
-}
-i.flag.bn:before,
-i.flag.brunei:before {
-  background-position: 0px -676px;
-}
-i.flag.bo:before,
-i.flag.bolivia:before {
-  background-position: 0px -702px;
-}
-i.flag.br:before,
-i.flag.brazil:before {
-  background-position: 0px -728px;
-}
-i.flag.bs:before,
-i.flag.bahamas:before {
-  background-position: 0px -754px;
-}
-i.flag.bt:before,
-i.flag.bhutan:before {
-  background-position: 0px -780px;
-}
-i.flag.bv:before,
-i.flag.bouvet.island:before {
-  background-position: 0px -806px;
-}
-i.flag.bw:before,
-i.flag.botswana:before {
-  background-position: 0px -832px;
-}
-i.flag.by:before,
-i.flag.belarus:before {
-  background-position: 0px -858px;
-}
-i.flag.bz:before,
-i.flag.belize:before {
-  background-position: 0px -884px;
-}
-i.flag.ca:before,
-i.flag.canada:before {
-  background-position: 0px -910px;
-}
-i.flag.cc:before,
-i.flag.cocos.islands:before {
-  background-position: 0px -962px;
-}
-i.flag.cd:before,
-i.flag.congo:before {
-  background-position: 0px -988px;
-}
-i.flag.cf:before,
-i.flag.central.african.republic:before {
-  background-position: 0px -1014px;
-}
-i.flag.cg:before,
-i.flag.congo.brazzaville:before {
-  background-position: 0px -1040px;
-}
-i.flag.ch:before,
-i.flag.switzerland:before {
-  background-position: 0px -1066px;
-}
-i.flag.ci:before,
-i.flag.cote.divoire:before {
-  background-position: 0px -1092px;
-}
-i.flag.ck:before,
-i.flag.cook.islands:before {
-  background-position: 0px -1118px;
-}
-i.flag.cl:before,
-i.flag.chile:before {
-  background-position: 0px -1144px;
-}
-i.flag.cm:before,
-i.flag.cameroon:before {
-  background-position: 0px -1170px;
-}
-i.flag.cn:before,
-i.flag.china:before {
-  background-position: 0px -1196px;
-}
-i.flag.co:before,
-i.flag.colombia:before {
-  background-position: 0px -1222px;
-}
-i.flag.cr:before,
-i.flag.costa.rica:before {
-  background-position: 0px -1248px;
-}
-i.flag.cs:before,
-i.flag.serbia:before {
-  background-position: 0px -1274px;
-}
-i.flag.cu:before,
-i.flag.cuba:before {
-  background-position: 0px -1300px;
-}
-i.flag.cv:before,
-i.flag.cape.verde:before {
-  background-position: 0px -1326px;
-}
-i.flag.cx:before,
-i.flag.christmas.island:before {
-  background-position: 0px -1352px;
-}
-i.flag.cy:before,
-i.flag.cyprus:before {
-  background-position: 0px -1378px;
-}
-i.flag.cz:before,
-i.flag.czech.republic:before {
-  background-position: 0px -1404px;
-}
-i.flag.de:before,
-i.flag.germany:before {
-  background-position: 0px -1430px;
-}
-i.flag.dj:before,
-i.flag.djibouti:before {
-  background-position: 0px -1456px;
-}
-i.flag.dk:before,
-i.flag.denmark:before {
-  background-position: 0px -1482px;
-}
-i.flag.dm:before,
-i.flag.dominica:before {
-  background-position: 0px -1508px;
-}
-i.flag.do:before,
-i.flag.dominican.republic:before {
-  background-position: 0px -1534px;
-}
-i.flag.dz:before,
-i.flag.algeria:before {
-  background-position: 0px -1560px;
-}
-i.flag.ec:before,
-i.flag.ecuador:before {
-  background-position: 0px -1586px;
-}
-i.flag.ee:before,
-i.flag.estonia:before {
-  background-position: 0px -1612px;
-}
-i.flag.eg:before,
-i.flag.egypt:before {
-  background-position: 0px -1638px;
-}
-i.flag.eh:before,
-i.flag.western.sahara:before {
-  background-position: 0px -1664px;
-}
-i.flag.er:before,
-i.flag.eritrea:before {
-  background-position: 0px -1716px;
-}
-i.flag.es:before,
-i.flag.spain:before {
-  background-position: 0px -1742px;
-}
-i.flag.et:before,
-i.flag.ethiopia:before {
-  background-position: 0px -1768px;
-}
-i.flag.eu:before,
-i.flag.european.union:before {
-  background-position: 0px -1794px;
-}
-i.flag.fi:before,
-i.flag.finland:before {
-  background-position: 0px -1846px;
-}
-i.flag.fj:before,
-i.flag.fiji:before {
-  background-position: 0px -1872px;
-}
-i.flag.fk:before,
-i.flag.falkland.islands:before {
-  background-position: 0px -1898px;
-}
-i.flag.fm:before,
-i.flag.micronesia:before {
-  background-position: 0px -1924px;
-}
-i.flag.fo:before,
-i.flag.faroe.islands:before {
-  background-position: 0px -1950px;
-}
-i.flag.fr:before,
-i.flag.france:before {
-  background-position: 0px -1976px;
-}
-i.flag.ga:before,
-i.flag.gabon:before {
-  background-position: -36px 0px;
-}
-i.flag.gb:before,
-i.flag.united.kingdom:before {
-  background-position: -36px -26px;
-}
-i.flag.gd:before,
-i.flag.grenada:before {
-  background-position: -36px -52px;
-}
-i.flag.ge:before,
-i.flag.georgia:before {
-  background-position: -36px -78px;
-}
-i.flag.gf:before,
-i.flag.french.guiana:before {
-  background-position: -36px -104px;
-}
-i.flag.gh:before,
-i.flag.ghana:before {
-  background-position: -36px -130px;
-}
-i.flag.gi:before,
-i.flag.gibraltar:before {
-  background-position: -36px -156px;
-}
-i.flag.gl:before,
-i.flag.greenland:before {
-  background-position: -36px -182px;
-}
-i.flag.gm:before,
-i.flag.gambia:before {
-  background-position: -36px -208px;
-}
-i.flag.gn:before,
-i.flag.guinea:before {
-  background-position: -36px -234px;
-}
-i.flag.gp:before,
-i.flag.guadeloupe:before {
-  background-position: -36px -260px;
-}
-i.flag.gq:before,
-i.flag.equatorial.guinea:before {
-  background-position: -36px -286px;
-}
-i.flag.gr:before,
-i.flag.greece:before {
-  background-position: -36px -312px;
-}
-i.flag.gs:before,
-i.flag.sandwich.islands:before {
-  background-position: -36px -338px;
-}
-i.flag.gt:before,
-i.flag.guatemala:before {
-  background-position: -36px -364px;
-}
-i.flag.gu:before,
-i.flag.guam:before {
-  background-position: -36px -390px;
-}
-i.flag.gw:before,
-i.flag.guinea-bissau:before {
-  background-position: -36px -416px;
-}
-i.flag.gy:before,
-i.flag.guyana:before {
-  background-position: -36px -442px;
-}
-i.flag.hk:before,
-i.flag.hong.kong:before {
-  background-position: -36px -468px;
-}
-i.flag.hm:before,
-i.flag.heard.island:before {
-  background-position: -36px -494px;
-}
-i.flag.hn:before,
-i.flag.honduras:before {
-  background-position: -36px -520px;
-}
-i.flag.hr:before,
-i.flag.croatia:before {
-  background-position: -36px -546px;
-}
-i.flag.ht:before,
-i.flag.haiti:before {
-  background-position: -36px -572px;
-}
-i.flag.hu:before,
-i.flag.hungary:before {
-  background-position: -36px -598px;
-}
-i.flag.id:before,
-i.flag.indonesia:before {
-  background-position: -36px -624px;
-}
-i.flag.ie:before,
-i.flag.ireland:before {
-  background-position: -36px -650px;
-}
-i.flag.il:before,
-i.flag.israel:before {
-  background-position: -36px -676px;
-}
-i.flag.in:before,
-i.flag.india:before {
-  background-position: -36px -702px;
-}
-i.flag.io:before,
-i.flag.indian.ocean.territory:before {
-  background-position: -36px -728px;
-}
-i.flag.iq:before,
-i.flag.iraq:before {
-  background-position: -36px -754px;
-}
-i.flag.ir:before,
-i.flag.iran:before {
-  background-position: -36px -780px;
-}
-i.flag.is:before,
-i.flag.iceland:before {
-  background-position: -36px -806px;
-}
-i.flag.it:before,
-i.flag.italy:before {
-  background-position: -36px -832px;
-}
-i.flag.jm:before,
-i.flag.jamaica:before {
-  background-position: -36px -858px;
-}
-i.flag.jo:before,
-i.flag.jordan:before {
-  background-position: -36px -884px;
-}
-i.flag.jp:before,
-i.flag.japan:before {
-  background-position: -36px -910px;
-}
-i.flag.ke:before,
-i.flag.kenya:before {
-  background-position: -36px -936px;
-}
-i.flag.kg:before,
-i.flag.kyrgyzstan:before {
-  background-position: -36px -962px;
-}
-i.flag.kh:before,
-i.flag.cambodia:before {
-  background-position: -36px -988px;
-}
-i.flag.ki:before,
-i.flag.kiribati:before {
-  background-position: -36px -1014px;
-}
-i.flag.km:before,
-i.flag.comoros:before {
-  background-position: -36px -1040px;
-}
-i.flag.kn:before,
-i.flag.saint.kitts.and.nevis:before {
-  background-position: -36px -1066px;
-}
-i.flag.kp:before,
-i.flag.north.korea:before {
-  background-position: -36px -1092px;
-}
-i.flag.kr:before,
-i.flag.south.korea:before {
-  background-position: -36px -1118px;
-}
-i.flag.kw:before,
-i.flag.kuwait:before {
-  background-position: -36px -1144px;
-}
-i.flag.ky:before,
-i.flag.cayman.islands:before {
-  background-position: -36px -1170px;
-}
-i.flag.kz:before,
-i.flag.kazakhstan:before {
-  background-position: -36px -1196px;
-}
-i.flag.la:before,
-i.flag.laos:before {
-  background-position: -36px -1222px;
-}
-i.flag.lb:before,
-i.flag.lebanon:before {
-  background-position: -36px -1248px;
-}
-i.flag.lc:before,
-i.flag.saint.lucia:before {
-  background-position: -36px -1274px;
-}
-i.flag.li:before,
-i.flag.liechtenstein:before {
-  background-position: -36px -1300px;
-}
-i.flag.lk:before,
-i.flag.sri.lanka:before {
-  background-position: -36px -1326px;
-}
-i.flag.lr:before,
-i.flag.liberia:before {
-  background-position: -36px -1352px;
-}
-i.flag.ls:before,
-i.flag.lesotho:before {
-  background-position: -36px -1378px;
-}
-i.flag.lt:before,
-i.flag.lithuania:before {
-  background-position: -36px -1404px;
-}
-i.flag.lu:before,
-i.flag.luxembourg:before {
-  background-position: -36px -1430px;
-}
-i.flag.lv:before,
-i.flag.latvia:before {
-  background-position: -36px -1456px;
-}
-i.flag.ly:before,
-i.flag.libya:before {
-  background-position: -36px -1482px;
-}
-i.flag.ma:before,
-i.flag.morocco:before {
-  background-position: -36px -1508px;
-}
-i.flag.mc:before,
-i.flag.monaco:before {
-  background-position: -36px -1534px;
-}
-i.flag.md:before,
-i.flag.moldova:before {
-  background-position: -36px -1560px;
-}
-i.flag.me:before,
-i.flag.montenegro:before {
-  background-position: -36px -1586px;
-}
-i.flag.mg:before,
-i.flag.madagascar:before {
-  background-position: -36px -1613px;
-}
-i.flag.mh:before,
-i.flag.marshall.islands:before {
-  background-position: -36px -1639px;
-}
-i.flag.mk:before,
-i.flag.macedonia:before {
-  background-position: -36px -1665px;
-}
-i.flag.ml:before,
-i.flag.mali:before {
-  background-position: -36px -1691px;
-}
-i.flag.mm:before,
-i.flag.myanmar:before,
-i.flag.burma:before {
-  background-position: -36px -1717px;
-}
-i.flag.mn:before,
-i.flag.mongolia:before {
-  background-position: -36px -1743px;
-}
-i.flag.mo:before,
-i.flag.macau:before {
-  background-position: -36px -1769px;
-}
-i.flag.mp:before,
-i.flag.northern.mariana.islands:before {
-  background-position: -36px -1795px;
-}
-i.flag.mq:before,
-i.flag.martinique:before {
-  background-position: -36px -1821px;
-}
-i.flag.mr:before,
-i.flag.mauritania:before {
-  background-position: -36px -1847px;
-}
-i.flag.ms:before,
-i.flag.montserrat:before {
-  background-position: -36px -1873px;
-}
-i.flag.mt:before,
-i.flag.malta:before {
-  background-position: -36px -1899px;
-}
-i.flag.mu:before,
-i.flag.mauritius:before {
-  background-position: -36px -1925px;
-}
-i.flag.mv:before,
-i.flag.maldives:before {
-  background-position: -36px -1951px;
-}
-i.flag.mw:before,
-i.flag.malawi:before {
-  background-position: -36px -1977px;
-}
-i.flag.mx:before,
-i.flag.mexico:before {
-  background-position: -72px 0px;
-}
-i.flag.my:before,
-i.flag.malaysia:before {
-  background-position: -72px -26px;
-}
-i.flag.mz:before,
-i.flag.mozambique:before {
-  background-position: -72px -52px;
-}
-i.flag.na:before,
-i.flag.namibia:before {
-  background-position: -72px -78px;
-}
-i.flag.nc:before,
-i.flag.new.caledonia:before {
-  background-position: -72px -104px;
-}
-i.flag.ne:before,
-i.flag.niger:before {
-  background-position: -72px -130px;
-}
-i.flag.nf:before,
-i.flag.norfolk.island:before {
-  background-position: -72px -156px;
-}
-i.flag.ng:before,
-i.flag.nigeria:before {
-  background-position: -72px -182px;
-}
-i.flag.ni:before,
-i.flag.nicaragua:before {
-  background-position: -72px -208px;
-}
-i.flag.nl:before,
-i.flag.netherlands:before {
-  background-position: -72px -234px;
-}
-i.flag.no:before,
-i.flag.norway:before {
-  background-position: -72px -260px;
-}
-i.flag.np:before,
-i.flag.nepal:before {
-  background-position: -72px -286px;
-}
-i.flag.nr:before,
-i.flag.nauru:before {
-  background-position: -72px -312px;
-}
-i.flag.nu:before,
-i.flag.niue:before {
-  background-position: -72px -338px;
-}
-i.flag.nz:before,
-i.flag.new.zealand:before {
-  background-position: -72px -364px;
-}
-i.flag.om:before,
-i.flag.oman:before {
-  background-position: -72px -390px;
-}
-i.flag.pa:before,
-i.flag.panama:before {
-  background-position: -72px -416px;
-}
-i.flag.pe:before,
-i.flag.peru:before {
-  background-position: -72px -442px;
-}
-i.flag.pf:before,
-i.flag.french.polynesia:before {
-  background-position: -72px -468px;
-}
-i.flag.pg:before,
-i.flag.new.guinea:before {
-  background-position: -72px -494px;
-}
-i.flag.ph:before,
-i.flag.philippines:before {
-  background-position: -72px -520px;
-}
-i.flag.pk:before,
-i.flag.pakistan:before {
-  background-position: -72px -546px;
-}
-i.flag.pl:before,
-i.flag.poland:before {
-  background-position: -72px -572px;
-}
-i.flag.pm:before,
-i.flag.saint.pierre:before {
-  background-position: -72px -598px;
-}
-i.flag.pn:before,
-i.flag.pitcairn.islands:before {
-  background-position: -72px -624px;
-}
-i.flag.pr:before,
-i.flag.puerto.rico:before {
-  background-position: -72px -650px;
-}
-i.flag.ps:before,
-i.flag.palestine:before {
-  background-position: -72px -676px;
-}
-i.flag.pt:before,
-i.flag.portugal:before {
-  background-position: -72px -702px;
-}
-i.flag.pw:before,
-i.flag.palau:before {
-  background-position: -72px -728px;
-}
-i.flag.py:before,
-i.flag.paraguay:before {
-  background-position: -72px -754px;
-}
-i.flag.qa:before,
-i.flag.qatar:before {
-  background-position: -72px -780px;
-}
-i.flag.re:before,
-i.flag.reunion:before {
-  background-position: -72px -806px;
-}
-i.flag.ro:before,
-i.flag.romania:before {
-  background-position: -72px -832px;
-}
-i.flag.rs:before,
-i.flag.serbia:before {
-  background-position: -72px -858px;
-}
-i.flag.ru:before,
-i.flag.russia:before {
-  background-position: -72px -884px;
-}
-i.flag.rw:before,
-i.flag.rwanda:before {
-  background-position: -72px -910px;
-}
-i.flag.sa:before,
-i.flag.saudi.arabia:before {
-  background-position: -72px -936px;
-}
-i.flag.sb:before,
-i.flag.solomon.islands:before {
-  background-position: -72px -962px;
-}
-i.flag.sc:before,
-i.flag.seychelles:before {
-  background-position: -72px -988px;
-}
-i.flag.gb.sct:before,
-i.flag.scotland:before {
-  background-position: -72px -1014px;
-}
-i.flag.sd:before,
-i.flag.sudan:before {
-  background-position: -72px -1040px;
-}
-i.flag.se:before,
-i.flag.sweden:before {
-  background-position: -72px -1066px;
-}
-i.flag.sg:before,
-i.flag.singapore:before {
-  background-position: -72px -1092px;
-}
-i.flag.sh:before,
-i.flag.saint.helena:before {
-  background-position: -72px -1118px;
-}
-i.flag.si:before,
-i.flag.slovenia:before {
-  background-position: -72px -1144px;
-}
-i.flag.sj:before,
-i.flag.svalbard:before,
-i.flag.jan.mayen:before {
-  background-position: -72px -1170px;
-}
-i.flag.sk:before,
-i.flag.slovakia:before {
-  background-position: -72px -1196px;
-}
-i.flag.sl:before,
-i.flag.sierra.leone:before {
-  background-position: -72px -1222px;
-}
-i.flag.sm:before,
-i.flag.san.marino:before {
-  background-position: -72px -1248px;
-}
-i.flag.sn:before,
-i.flag.senegal:before {
-  background-position: -72px -1274px;
-}
-i.flag.so:before,
-i.flag.somalia:before {
-  background-position: -72px -1300px;
-}
-i.flag.sr:before,
-i.flag.suriname:before {
-  background-position: -72px -1326px;
-}
-i.flag.st:before,
-i.flag.sao.tome:before {
-  background-position: -72px -1352px;
-}
-i.flag.sv:before,
-i.flag.el.salvador:before {
-  background-position: -72px -1378px;
-}
-i.flag.sy:before,
-i.flag.syria:before {
-  background-position: -72px -1404px;
-}
-i.flag.sz:before,
-i.flag.swaziland:before {
-  background-position: -72px -1430px;
-}
-i.flag.tc:before,
-i.flag.caicos.islands:before {
-  background-position: -72px -1456px;
-}
-i.flag.td:before,
-i.flag.chad:before {
-  background-position: -72px -1482px;
-}
-i.flag.tf:before,
-i.flag.french.territories:before {
-  background-position: -72px -1508px;
-}
-i.flag.tg:before,
-i.flag.togo:before {
-  background-position: -72px -1534px;
-}
-i.flag.th:before,
-i.flag.thailand:before {
-  background-position: -72px -1560px;
-}
-i.flag.tj:before,
-i.flag.tajikistan:before {
-  background-position: -72px -1586px;
-}
-i.flag.tk:before,
-i.flag.tokelau:before {
-  background-position: -72px -1612px;
-}
-i.flag.tl:before,
-i.flag.timorleste:before {
-  background-position: -72px -1638px;
-}
-i.flag.tm:before,
-i.flag.turkmenistan:before {
-  background-position: -72px -1664px;
-}
-i.flag.tn:before,
-i.flag.tunisia:before {
-  background-position: -72px -1690px;
-}
-i.flag.to:before,
-i.flag.tonga:before {
-  background-position: -72px -1716px;
-}
-i.flag.tr:before,
-i.flag.turkey:before {
-  background-position: -72px -1742px;
-}
-i.flag.tt:before,
-i.flag.trinidad:before {
-  background-position: -72px -1768px;
-}
-i.flag.tv:before,
-i.flag.tuvalu:before {
-  background-position: -72px -1794px;
-}
-i.flag.tw:before,
-i.flag.taiwan:before {
-  background-position: -72px -1820px;
-}
-i.flag.tz:before,
-i.flag.tanzania:before {
-  background-position: -72px -1846px;
-}
-i.flag.ua:before,
-i.flag.ukraine:before {
-  background-position: -72px -1872px;
-}
-i.flag.ug:before,
-i.flag.uganda:before {
-  background-position: -72px -1898px;
-}
-i.flag.um:before,
-i.flag.us.minor.islands:before {
-  background-position: -72px -1924px;
-}
-i.flag.us:before,
-i.flag.america:before,
-i.flag.united.states:before {
-  background-position: -72px -1950px;
-}
-i.flag.uy:before,
-i.flag.uruguay:before {
-  background-position: -72px -1976px;
-}
-i.flag.uz:before,
-i.flag.uzbekistan:before {
-  background-position: -108px 0px;
-}
-i.flag.va:before,
-i.flag.vatican.city:before {
-  background-position: -108px -26px;
-}
-i.flag.vc:before,
-i.flag.saint.vincent:before {
-  background-position: -108px -52px;
-}
-i.flag.ve:before,
-i.flag.venezuela:before {
-  background-position: -108px -78px;
-}
-i.flag.vg:before,
-i.flag.british.virgin.islands:before {
-  background-position: -108px -104px;
-}
-i.flag.vi:before,
-i.flag.us.virgin.islands:before {
-  background-position: -108px -130px;
-}
-i.flag.vn:before,
-i.flag.vietnam:before {
-  background-position: -108px -156px;
-}
-i.flag.vu:before,
-i.flag.vanuatu:before {
-  background-position: -108px -182px;
-}
-i.flag.gb.wls:before,
-i.flag.wales:before {
-  background-position: -108px -208px;
-}
-i.flag.wf:before,
-i.flag.wallis.and.futuna:before {
-  background-position: -108px -234px;
-}
-i.flag.ws:before,
-i.flag.samoa:before {
-  background-position: -108px -260px;
-}
-i.flag.ye:before,
-i.flag.yemen:before {
-  background-position: -108px -286px;
-}
-i.flag.yt:before,
-i.flag.mayotte:before {
-  background-position: -108px -312px;
-}
-i.flag.za:before,
-i.flag.south.africa:before {
-  background-position: -108px -338px;
-}
-i.flag.zm:before,
-i.flag.zambia:before {
-  background-position: -108px -364px;
-}
-i.flag.zw:before,
-i.flag.zimbabwe:before {
-  background-position: -108px -390px;
-}
-
-
-/*******************************
-         Site Overrides
-*******************************/
-

http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/6a2b3459/semantic/dist/components/flag.min.css
----------------------------------------------------------------------
diff --git a/semantic/dist/components/flag.min.css 
b/semantic/dist/components/flag.min.css
deleted file mode 100755
index 27d93a8..0000000
--- a/semantic/dist/components/flag.min.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/*!
- * # Semantic UI 2.2.6 - Flag
- * http://github.com/semantic-org/semantic-ui/
- *
- *
- * Released under the MIT license
- * http://opensource.org/licenses/MIT
- *
- 
*/i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0
 .5em 0 
0;text-decoration:inherit;speak:none;font-smoothing:antialiased;-webkit-backface-visibility:hidden;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(../themes/default/assets/images/flags.png)
 -108px -1976px 
no-repeat;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0
 
0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0
 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 
-52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 
-78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 
-104px}i.flag.al:before,i.flag.albania:before{background-position:0 
-130px}i.flag.am:before,i.flag.armenia:before{background-position:0 
-156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0
 -182px}i
 .flag.angola:before,i.flag.ao:before{background-position:0 
-208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 
-234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 
-260px}i.flag.at:before,i.flag.austria:before{background-position:0 
-286px}i.flag.au:before,i.flag.australia:before{background-position:0 
-312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 
-338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 
-364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 
-390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 
-416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 
-442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 
-468px}i.flag.be:before,i.flag.belgium:before{background-position:0 
-494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 
-520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 
-546px}i.flag.bahrain:befor
 e,i.flag.bh:before{background-position:0 
-572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 
-598px}i.flag.benin:before,i.flag.bj:before{background-position:0 
-624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 
-650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 
-676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 
-702px}i.flag.br:before,i.flag.brazil:before{background-position:0 
-728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 
-754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 
-780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 
-806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 
-832px}i.flag.belarus:before,i.flag.by:before{background-position:0 
-858px}i.flag.belize:before,i.flag.bz:before{background-position:0 
-884px}i.flag.ca:before,i.flag.canada:before{background-position:0 
-910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:
 0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 
-988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0
 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 
-1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 
-1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 
-1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 
-1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 
-1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 
-1170px}i.flag.china:before,i.flag.cn:before{background-position:0 
-1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 
-1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 
-1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 
-1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 
-1300px}i.flag.cape.verde:before,i.flag.cv:before{background-pos
 ition:0 
-1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 
-1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 
-1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 
-1404px}i.flag.de:before,i.flag.germany:before{background-position:0 
-1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 
-1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 
-1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 
-1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 
-1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 
-1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 
-1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 
-1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 
-1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 
-1664px}i.flag.er:before,i.flag.eritrea:before{background-p
 osition:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 
-1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 
-1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 
-1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 
-1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 
-1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 
-1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 
-1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 
-1950px}i.flag.fr:before,i.flag.france:before{background-position:0 
-1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 
0}i.flag.gb:before,i.flag.united.kingdom:before{background-position:-36px 
-26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px 
-52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px 
-78px}i.flag.french.guiana:before,i.flag.gf:before{backgrou
 nd-position:-36px 
-104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px 
-130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px 
-156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px 
-182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px 
-208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px 
-234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px 
-260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px
 -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px 
-312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px
 -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px 
-364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px 
-390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px 
-416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px 
-442px}i.flag.hk:b
 efore,i.flag.hong.kong:before{background-position:-36px 
-468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px 
-494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px 
-520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px 
-546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px 
-572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px 
-598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px 
-624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px 
-650px}i.flag.il:before,i.flag.israel:before{background-position:-36px 
-676px}i.flag.in:before,i.flag.india:before{background-position:-36px 
-702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px
 -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px 
-754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px 
-780px}i.flag.iceland:before,i.flag.is:before{background-position
 :-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px 
-832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px 
-858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px 
-884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px 
-910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px 
-936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px 
-962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px 
-988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px 
-1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px 
-1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px
 -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px 
-1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px 
-1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px 
-1144px}i.flag.cayman.islands:
 before,i.flag.ky:before{background-position:-36px 
-1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px 
-1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px 
-1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px 
-1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px 
-1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px 
-1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px 
-1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px 
-1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px 
-1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px 
-1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px 
-1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px 
-1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px 
-1482px}i.flag.ma:before,i.flag.morocco:before{background
 -position:-36px 
-1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px 
-1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px 
-1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px 
-1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px 
-1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px
 -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px 
-1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px 
-1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-36px
 -1717px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px 
-1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px 
-1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px
 -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px 
-1821px}i.flag.mauritania:before,i.flag.mr:before{bac
 kground-position:-36px 
-1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px 
-1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px 
-1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px 
-1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px 
-1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px 
-1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 
0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px 
-26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px 
-52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px 
-78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px 
-104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px 
-130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px 
-156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px 
-182px}i.flag.ni:before
 ,i.flag.nicaragua:before{background-position:-72px 
-208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px 
-234px}i.flag.no:before,i.flag.norway:before{background-position:-72px 
-260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px 
-286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px 
-312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px 
-338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px 
-364px}i.flag.om:before,i.flag.oman:before{background-position:-72px 
-390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px 
-416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px 
-442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px
 -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px 
-494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px 
-520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px 
 -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px 
-572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px 
-598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px
 -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px 
-650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px 
-676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px 
-702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px 
-728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px 
-754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px 
-780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px 
-806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px 
-832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px 
-858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px 
-884px}i.flag.rw:before,i.flag.rwanda:before{b
 ackground-position:-72px 
-910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px 
-936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px 
-962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px 
-988px}i.flag.gb.sct:before,i.flag.scotland:before{background-position:-72px 
-1014px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px 
-1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px 
-1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px 
-1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px 
-1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px 
-1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px
 -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px 
-1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px 
-1222px}i.flag.san.marino:before,i.flag.sm:
 before{background-position:-72px 
-1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px 
-1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px 
-1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px 
-1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px 
-1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px 
-1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px 
-1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px 
-1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px 
-1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px 
-1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px
 -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px 
-1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px 
-1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position
 :-72px 
-1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px 
-1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px 
-1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px 
-1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px 
-1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px 
-1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px 
-1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px 
-1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px 
-1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px 
-1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px 
-1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px 
-1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px 
-1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px
 -1924px}i.flag.america:befor
 e,i.flag.united.states:before,i.flag.us:before{background-position:-72px 
-1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px 
-1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 
0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px 
-26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px 
-52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px 
-78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px
 
-104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px
 -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px 
-156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px 
-182px}i.flag.gb.wls:before,i.flag.wales:before{background-position:-108px 
-208px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px
 -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260
 px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px 
-286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px 
-312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px 
-338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px 
-364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px 
-390px}
\ No newline at end of file

Reply via email to