From 6bde70d60a02e9e461bc8cb6dcb475778c435fec Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 16 Dec 2016 16:14:01 +0100 Subject: move the sticky-kit^Cquery plugin to /lib and see if we want this for the whole app --- library/sticky-kit/sticky-kit.js | 265 +++++++++++++++++++++++++++++++++++ library/sticky-kit/sticky-kit.min.js | 10 ++ 2 files changed, 275 insertions(+) create mode 100644 library/sticky-kit/sticky-kit.js create mode 100644 library/sticky-kit/sticky-kit.min.js (limited to 'library') diff --git a/library/sticky-kit/sticky-kit.js b/library/sticky-kit/sticky-kit.js new file mode 100644 index 000000000..00b1ea2ff --- /dev/null +++ b/library/sticky-kit/sticky-kit.js @@ -0,0 +1,265 @@ +// Generated by CoffeeScript 1.10.0 + +/** +@license Sticky-kit v1.1.3 | MIT | Leaf Corcoran 2015 | http://leafo.net + */ + +(function() { + var $, win; + + $ = window.jQuery; + + win = $(window); + + $.fn.stick_in_parent = function(opts) { + var doc, elm, enable_bottoming, fn, i, inner_scrolling, len, manual_spacer, offset_top, outer_width, parent_selector, recalc_every, sticky_class; + if (opts == null) { + opts = {}; + } + sticky_class = opts.sticky_class, inner_scrolling = opts.inner_scrolling, recalc_every = opts.recalc_every, parent_selector = opts.parent, offset_top = opts.offset_top, manual_spacer = opts.spacer, enable_bottoming = opts.bottoming; + if (offset_top == null) { + offset_top = 0; + } + if (parent_selector == null) { + parent_selector = void 0; + } + if (inner_scrolling == null) { + inner_scrolling = true; + } + if (sticky_class == null) { + sticky_class = "is_stuck"; + } + doc = $(document); + if (enable_bottoming == null) { + enable_bottoming = true; + } + outer_width = function(el) { + var _el, computed, w; + if (window.getComputedStyle) { + _el = el[0]; + computed = window.getComputedStyle(el[0]); + w = parseFloat(computed.getPropertyValue("width")) + parseFloat(computed.getPropertyValue("margin-left")) + parseFloat(computed.getPropertyValue("margin-right")); + if (computed.getPropertyValue("box-sizing") !== "border-box") { + w += parseFloat(computed.getPropertyValue("border-left-width")) + parseFloat(computed.getPropertyValue("border-right-width")) + parseFloat(computed.getPropertyValue("padding-left")) + parseFloat(computed.getPropertyValue("padding-right")); + } + return w; + } else { + return el.outerWidth(true); + } + }; + fn = function(elm, padding_bottom, parent_top, parent_height, top, height, el_float, detached) { + var bottomed, detach, fixed, last_pos, last_scroll_height, offset, parent, recalc, recalc_and_tick, recalc_counter, spacer, tick; + if (elm.data("sticky_kit")) { + return; + } + elm.data("sticky_kit", true); + last_scroll_height = doc.height(); + parent = elm.parent(); + if (parent_selector != null) { + parent = parent.closest(parent_selector); + } + if (!parent.length) { + throw "failed to find stick parent"; + } + fixed = false; + bottomed = false; + spacer = manual_spacer != null ? manual_spacer && elm.closest(manual_spacer) : $("
"); + if (spacer) { + spacer.css('position', elm.css('position')); + } + recalc = function() { + var border_top, padding_top, restore; + if (detached) { + return; + } + last_scroll_height = doc.height(); + border_top = parseInt(parent.css("border-top-width"), 10); + padding_top = parseInt(parent.css("padding-top"), 10); + padding_bottom = parseInt(parent.css("padding-bottom"), 10); + parent_top = parent.offset().top + border_top + padding_top; + parent_height = parent.height(); + if (fixed) { + fixed = false; + bottomed = false; + if (manual_spacer == null) { + elm.insertAfter(spacer); + spacer.detach(); + } + elm.css({ + position: "", + top: "", + width: "", + bottom: "" + }).removeClass(sticky_class); + restore = true; + } + top = elm.offset().top - (parseInt(elm.css("margin-top"), 10) || 0) - offset_top; + height = elm.outerHeight(true); + el_float = elm.css("float"); + if (spacer) { + spacer.css({ + width: outer_width(elm), + height: height, + display: elm.css("display"), + "vertical-align": elm.css("vertical-align"), + "float": el_float + }); + } + if (restore) { + return tick(); + } + }; + recalc(); + if (height === parent_height) { + return; + } + last_pos = void 0; + offset = offset_top; + recalc_counter = recalc_every; + tick = function() { + var css, delta, recalced, scroll, will_bottom, win_height; + if (detached) { + return; + } + recalced = false; + if (recalc_counter != null) { + recalc_counter -= 1; + if (recalc_counter <= 0) { + recalc_counter = recalc_every; + recalc(); + recalced = true; + } + } + if (!recalced && doc.height() !== last_scroll_height) { + recalc(); + recalced = true; + } + scroll = win.scrollTop(); + if (last_pos != null) { + delta = scroll - last_pos; + } + last_pos = scroll; + if (fixed) { + if (enable_bottoming) { + will_bottom = scroll + height + offset > parent_height + parent_top; + if (bottomed && !will_bottom) { + bottomed = false; + elm.css({ + position: "fixed", + bottom: "", + top: offset + }).trigger("sticky_kit:unbottom"); + } + } + if (scroll < top) { + fixed = false; + offset = offset_top; + if (manual_spacer == null) { + if (el_float === "left" || el_float === "right") { + elm.insertAfter(spacer); + } + spacer.detach(); + } + css = { + position: "", + width: "", + top: "" + }; + elm.css(css).removeClass(sticky_class).trigger("sticky_kit:unstick"); + } + if (inner_scrolling) { + win_height = win.height(); + if (height + offset_top > win_height) { + if (!bottomed) { + offset -= delta; + offset = Math.max(win_height - height, offset); + offset = Math.min(offset_top, offset); + if (fixed) { + elm.css({ + top: offset + "px" + }); + } + } + } + } + } else { + if (scroll > top) { + fixed = true; + css = { + position: "fixed", + top: offset + }; + css.width = elm.css("box-sizing") === "border-box" ? elm.outerWidth() + "px" : elm.width() + "px"; + elm.css(css).addClass(sticky_class); + if (manual_spacer == null) { + elm.after(spacer); + if (el_float === "left" || el_float === "right") { + spacer.append(elm); + } + } + elm.trigger("sticky_kit:stick"); + } + } + if (fixed && enable_bottoming) { + if (will_bottom == null) { + will_bottom = scroll + height + offset > parent_height + parent_top; + } + if (!bottomed && will_bottom) { + bottomed = true; + if (parent.css("position") === "static") { + parent.css({ + position: "relative" + }); + } + return elm.css({ + position: "absolute", + bottom: padding_bottom, + top: "auto" + }).trigger("sticky_kit:bottom"); + } + } + }; + recalc_and_tick = function() { + recalc(); + return tick(); + }; + detach = function() { + detached = true; + win.off("touchmove", tick); + win.off("scroll", tick); + win.off("resize", recalc_and_tick); + $(document.body).off("sticky_kit:recalc", recalc_and_tick); + elm.off("sticky_kit:detach", detach); + elm.removeData("sticky_kit"); + elm.css({ + position: "", + bottom: "", + top: "", + width: "" + }); + parent.position("position", ""); + if (fixed) { + if (manual_spacer == null) { + if (el_float === "left" || el_float === "right") { + elm.insertAfter(spacer); + } + spacer.remove(); + } + return elm.removeClass(sticky_class); + } + }; + win.on("touchmove", tick); + win.on("scroll", tick); + win.on("resize", recalc_and_tick); + $(document.body).on("sticky_kit:recalc", recalc_and_tick); + elm.on("sticky_kit:detach", detach); + return setTimeout(tick, 0); + }; + for (i = 0, len = this.length; i < len; i++) { + elm = this[i]; + fn($(elm)); + } + return this; + }; + +}).call(this); diff --git a/library/sticky-kit/sticky-kit.min.js b/library/sticky-kit/sticky-kit.min.js new file mode 100644 index 000000000..c4d7f2e3b --- /dev/null +++ b/library/sticky-kit/sticky-kit.min.js @@ -0,0 +1,10 @@ +/* + Sticky-kit v1.1.3 | MIT | Leaf Corcoran 2015 | http://leafo.net +*/ +(function(){var c,f;c=window.jQuery;f=c(window);c.fn.stick_in_parent=function(b){var A,w,J,n,B,K,p,q,L,k,E,t;null==b&&(b={});t=b.sticky_class;B=b.inner_scrolling;E=b.recalc_every;k=b.parent;q=b.offset_top;p=b.spacer;w=b.bottoming;null==q&&(q=0);null==k&&(k=void 0);null==B&&(B=!0);null==t&&(t="is_stuck");A=c(document);null==w&&(w=!0);L=function(a){var b;return window.getComputedStyle?(a=window.getComputedStyle(a[0]),b=parseFloat(a.getPropertyValue("width"))+parseFloat(a.getPropertyValue("margin-left"))+ +parseFloat(a.getPropertyValue("margin-right")),"border-box"!==a.getPropertyValue("box-sizing")&&(b+=parseFloat(a.getPropertyValue("border-left-width"))+parseFloat(a.getPropertyValue("border-right-width"))+parseFloat(a.getPropertyValue("padding-left"))+parseFloat(a.getPropertyValue("padding-right"))),b):a.outerWidth(!0)};J=function(a,b,n,C,F,u,r,G){var v,H,m,D,I,d,g,x,y,z,h,l;if(!a.data("sticky_kit")){a.data("sticky_kit",!0);I=A.height();g=a.parent();null!=k&&(g=g.closest(k));if(!g.length)throw"failed to find stick parent"; +v=m=!1;(h=null!=p?p&&a.closest(p):c("
"))&&h.css("position",a.css("position"));x=function(){var d,f,e;if(!G&&(I=A.height(),d=parseInt(g.css("border-top-width"),10),f=parseInt(g.css("padding-top"),10),b=parseInt(g.css("padding-bottom"),10),n=g.offset().top+d+f,C=g.height(),m&&(v=m=!1,null==p&&(a.insertAfter(h),h.detach()),a.css({position:"",top:"",width:"",bottom:""}).removeClass(t),e=!0),F=a.offset().top-(parseInt(a.css("margin-top"),10)||0)-q,u=a.outerHeight(!0),r=a.css("float"),h&&h.css({width:L(a), +height:u,display:a.css("display"),"vertical-align":a.css("vertical-align"),"float":r}),e))return l()};x();if(u!==C)return D=void 0,d=q,z=E,l=function(){var c,l,e,k;if(!G&&(e=!1,null!=z&&(--z,0>=z&&(z=E,x(),e=!0)),e||A.height()===I||x(),e=f.scrollTop(),null!=D&&(l=e-D),D=e,m?(w&&(k=e+u+d>C+n,v&&!k&&(v=!1,a.css({position:"fixed",bottom:"",top:d}).trigger("sticky_kit:unbottom"))),ec&&!v&&(d-=l,d=Math.max(c-u,d),d=Math.min(q,d),m&&a.css({top:d+"px"})))):e>F&&(m=!0,c={position:"fixed",top:d},c.width="border-box"===a.css("box-sizing")?a.outerWidth()+"px":a.width()+"px",a.css(c).addClass(t),null==p&&(a.after(h),"left"!==r&&"right"!==r||h.append(a)),a.trigger("sticky_kit:stick")),m&&w&&(null==k&&(k=e+u+d>C+n),!v&&k)))return v=!0,"static"===g.css("position")&&g.css({position:"relative"}),a.css({position:"absolute",bottom:b,top:"auto"}).trigger("sticky_kit:bottom")}, +y=function(){x();return l()},H=function(){G=!0;f.off("touchmove",l);f.off("scroll",l);f.off("resize",y);c(document.body).off("sticky_kit:recalc",y);a.off("sticky_kit:detach",H);a.removeData("sticky_kit");a.css({position:"",bottom:"",top:"",width:""});g.position("position","");if(m)return null==p&&("left"!==r&&"right"!==r||a.insertAfter(h),h.remove()),a.removeClass(t)},f.on("touchmove",l),f.on("scroll",l),f.on("resize",y),c(document.body).on("sticky_kit:recalc",y),a.on("sticky_kit:detach",H),setTimeout(l, +0)}};n=0;for(K=this.length;n Date: Wed, 21 Dec 2016 11:51:24 +0100 Subject: fix a glitch in sticky-kit and comment out alt_pager() in widget_conversations since it will not work there --- library/sticky-kit/sticky-kit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'library') diff --git a/library/sticky-kit/sticky-kit.js b/library/sticky-kit/sticky-kit.js index 00b1ea2ff..eb2ea8a26 100644 --- a/library/sticky-kit/sticky-kit.js +++ b/library/sticky-kit/sticky-kit.js @@ -77,7 +77,7 @@ padding_top = parseInt(parent.css("padding-top"), 10); padding_bottom = parseInt(parent.css("padding-bottom"), 10); parent_top = parent.offset().top + border_top + padding_top; - parent_height = parent.height(); + parent_height = parent.outerHeight(true); if (fixed) { fixed = false; bottomed = false; -- cgit v1.2.3 From c9cbd2f4f6cb432c6558bd88d783b356f0311a09 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 30 Dec 2016 10:18:05 +0100 Subject: update fullcalendar to version 3.1 --- library/fullcalendar/CHANGELOG.txt | 23 + library/fullcalendar/fullcalendar.css | 11 +- library/fullcalendar/fullcalendar.js | 2645 ++++++++++++++--------- library/fullcalendar/fullcalendar.min.css | 4 +- library/fullcalendar/fullcalendar.min.js | 11 +- library/fullcalendar/fullcalendar.print.css | 2 +- library/fullcalendar/fullcalendar.print.min.css | 5 + library/fullcalendar/gcal.js | 2 +- library/fullcalendar/gcal.min.js | 6 + library/fullcalendar/locale-all.js | 10 +- 10 files changed, 1728 insertions(+), 991 deletions(-) create mode 100644 library/fullcalendar/fullcalendar.print.min.css create mode 100644 library/fullcalendar/gcal.min.js (limited to 'library') diff --git a/library/fullcalendar/CHANGELOG.txt b/library/fullcalendar/CHANGELOG.txt index e91ce3bd6..ed2eddb8a 100644 --- a/library/fullcalendar/CHANGELOG.txt +++ b/library/fullcalendar/CHANGELOG.txt @@ -1,4 +1,27 @@ +v3.1.0 (2016-12-05) +------------------- + +- experimental support for implicitly batched ("debounced") event rendering (#2938) + - `eventRenderWait` (off by default) +- new `footer` option, similar to header toolbar (#654, #3299) +- event rendering batch methods (#3351): + - `renderEvents` + - `updateEvents` +- more granular touch settings (#3377): + - `eventLongPressDelay` + - `selectLongPressDelay` +- eventDestroy not called when removing the popover (#3416, #3419) +- print stylesheet and gcal extension now offered as minified (#3415) +- fc-today in agenda header cells (#3361, #3365) +- height-related options in tandem with other options (#3327, #3384) +- Kazakh locale (#3394) +- Afrikaans locale (#3390) +- internal refactor related to timing of rendering and firing handlers. + calls to rerender the current date-range and events from within handlers + might not execute immediately. instead, will execute after handler finishes. + + v3.0.1 (2016-09-26) ------------------- diff --git a/library/fullcalendar/fullcalendar.css b/library/fullcalendar/fullcalendar.css index 7a3f39923..5620e0bd6 100644 --- a/library/fullcalendar/fullcalendar.css +++ b/library/fullcalendar/fullcalendar.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v3.0.1 Stylesheet + * FullCalendar v3.1.0 Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ @@ -49,7 +49,7 @@ body .fc { /* extra precedence to overcome jqui */ color: #666; } -.fc-unthemed .fc-today { +.fc-unthemed td.fc-today { background: #fcf8e3; } @@ -811,9 +811,16 @@ a.fc-more:hover { .fc-toolbar { text-align: center; +} + +.fc-toolbar.fc-header-toolbar { margin-bottom: 1em; } +.fc-toolbar.fc-footer-toolbar { + margin-top: 1em; +} + .fc-toolbar .fc-left { float: left; } diff --git a/library/fullcalendar/fullcalendar.js b/library/fullcalendar/fullcalendar.js index 3c2c380bc..b7371e25f 100644 --- a/library/fullcalendar/fullcalendar.js +++ b/library/fullcalendar/fullcalendar.js @@ -1,5 +1,5 @@ /*! - * FullCalendar v3.0.1 + * FullCalendar v3.1.0 * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ @@ -19,8 +19,8 @@ ;; var FC = $.fullCalendar = { - version: "3.0.1", - internalApiVersion: 6 + version: "3.1.0", + internalApiVersion: 7 }; var fcViews = FC.views = {}; @@ -53,13 +53,14 @@ $.fn.fullCalendar = function(options) { calendar.render(); } }); - + return res; }; var complexOptions = [ // names of options that are objects whose properties should be combined 'header', + 'footer', 'buttonText', 'buttonIcons', 'themeButtonIcons' @@ -848,6 +849,7 @@ function createObject(proto) { f.prototype = proto; return new f(); } +FC.createObject = createObject; function copyOwnProps(src, dest) { @@ -1004,20 +1006,6 @@ function debounce(func, wait, immediate) { }; } - -// HACK around jQuery's now A+ promises: execute callback synchronously if already resolved. -// thenFunc shouldn't accept args. -// similar to whenResources in Scheduler plugin. -function syncThen(promise, thenFunc) { - // not a promise, or an already-resolved promise? - if (!promise || !promise.then || promise.state() === 'resolved') { - return $.when(thenFunc()); // resolve immediately - } - else if (thenFunc) { - return promise.then(thenFunc); - } -} - ;; /* @@ -1681,6 +1669,201 @@ function mixIntoClass(theClass, members) { } ;; +/* +Wrap jQuery's Deferred Promise object to be slightly more Promise/A+ compliant. +With the added non-standard feature of synchronously executing handlers on resolved promises, +which doesn't always happen otherwise (esp with nested .then handlers!?), +so, this makes things a lot easier, esp because jQuery 3 changed the synchronicity for Deferred objects. + +TODO: write tests and more comments +*/ + +function Promise(executor) { + var deferred = $.Deferred(); + var promise = deferred.promise(); + + if (typeof executor === 'function') { + executor( + function(value) { // resolve + if (Promise.immediate) { + promise._value = value; + } + deferred.resolve(value); + }, + function() { // reject + deferred.reject(); + } + ); + } + + if (Promise.immediate) { + var origThen = promise.then; + + promise.then = function(onFulfilled, onRejected) { + var state = promise.state(); + + if (state === 'resolved') { + if (typeof onFulfilled === 'function') { + return Promise.resolve(onFulfilled(promise._value)); + } + } + else if (state === 'rejected') { + if (typeof onRejected === 'function') { + onRejected(); + return promise; // already rejected + } + } + + return origThen.call(promise, onFulfilled, onRejected); + }; + } + + return promise; // instanceof Promise will break :( TODO: make Promise a real class +} + +FC.Promise = Promise; + +Promise.immediate = true; + + +Promise.resolve = function(value) { + if (value && typeof value.resolve === 'function') { + return value.promise(); + } + if (value && typeof value.then === 'function') { + return value; + } + else { + var deferred = $.Deferred().resolve(value); + var promise = deferred.promise(); + + if (Promise.immediate) { + var origThen = promise.then; + + promise._value = value; + + promise.then = function(onFulfilled, onRejected) { + if (typeof onFulfilled === 'function') { + return Promise.resolve(onFulfilled(value)); + } + return origThen.call(promise, onFulfilled, onRejected); + }; + } + + return promise; + } +}; + + +Promise.reject = function() { + return $.Deferred().reject().promise(); +}; + + +Promise.all = function(inputs) { + var hasAllValues = false; + var values; + var i, input; + + if (Promise.immediate) { + hasAllValues = true; + values = []; + + for (i = 0; i < inputs.length; i++) { + input = inputs[i]; + + if (input && typeof input.state === 'function' && input.state() === 'resolved' && ('_value' in input)) { + values.push(input._value); + } + else if (input && typeof input.then === 'function') { + hasAllValues = false; + break; + } + else { + values.push(input); + } + } + } + + if (hasAllValues) { + return Promise.resolve(values); + } + else { + return $.when.apply($.when, inputs).then(function() { + return $.when($.makeArray(arguments)); + }); + } +}; + +;; + +// TODO: write tests and clean up code + +function TaskQueue(debounceWait) { + var q = []; // array of runFuncs + + function addTask(taskFunc) { + return new Promise(function(resolve) { + + // should run this function when it's taskFunc's turn to run. + // responsible for popping itself off the queue. + var runFunc = function() { + Promise.resolve(taskFunc()) // result might be async, coerce to promise + .then(resolve) // resolve TaskQueue::push's promise, for the caller. will receive result of taskFunc. + .then(function() { + q.shift(); // pop itself off + + // run the next task, if any + if (q.length) { + q[0](); + } + }); + }; + + // always put the task at the end of the queue, BEFORE running the task + q.push(runFunc); + + // if it's the only task in the queue, run immediately + if (q.length === 1) { + runFunc(); + } + }); + } + + this.add = // potentially debounce, for the public method + typeof debounceWait === 'number' ? + debounce(addTask, debounceWait) : + addTask; // if not a number (null/undefined/false), no debounce at all + + this.addQuickly = addTask; // guaranteed no debounce +} + +FC.TaskQueue = TaskQueue; + +/* +q = new TaskQueue(); + +function work(i) { + return q.push(function() { + trigger(); + console.log('work' + i); + }); +} + +var cnt = 0; + +function trigger() { + if (cnt < 5) { + cnt++; + work(cnt); + } +} + +work(9); +*/ + +;; + var EmitterMixin = FC.EmitterMixin = { // jQuery-ification via $(this) allows a non-DOM object to have @@ -1688,7 +1871,18 @@ var EmitterMixin = FC.EmitterMixin = { on: function(types, handler) { + $(this).on(types, this._prepareIntercept(handler)); + return this; // for chaining + }, + + + one: function(types, handler) { + $(this).one(types, this._prepareIntercept(handler)); + return this; // for chaining + }, + + _prepareIntercept: function(handler) { // handlers are always called with an "event" object as their first param. // sneak the `this` context and arguments into the extra parameter object // and forward them on to the original handler. @@ -1708,9 +1902,7 @@ var EmitterMixin = FC.EmitterMixin = { } intercept.guid = handler.guid; - $(this).on(types, intercept); - - return this; // for chaining + return intercept; }, @@ -2039,9 +2231,15 @@ var CoordCache = FC.CoordCache = Class.extend({ // Queries the els for coordinates and stores them. // Call this method before using and of the get* methods below. build: function() { - var offsetParentEl = this.forcedOffsetParentEl || this.els.eq(0).offsetParent(); + var offsetParentEl = this.forcedOffsetParentEl; + if (!offsetParentEl && this.els.length > 0) { + offsetParentEl = this.els.eq(0).offsetParent(); + } + + this.origin = offsetParentEl ? + offsetParentEl.offset() : + null; - this.origin = offsetParentEl.offset(); this.boundingRect = this.queryBoundingRect(); if (this.isHorizontal) { @@ -2224,12 +2422,19 @@ var CoordCache = FC.CoordCache = Class.extend({ // Compute and return what the elements' bounding rectangle is, from the user's perspective. // Right now, only returns a rectangle if constrained by an overflow:scroll element. + // Returns null if there are no elements queryBoundingRect: function() { - var scrollParentEl = getScrollParent(this.els.eq(0)); + var scrollParentEl; + + if (this.els.length > 0) { + scrollParentEl = getScrollParent(this.els.eq(0)); - if (!scrollParentEl.is(document)) { - return getClientRect(scrollParentEl); + if (!scrollParentEl.is(document)) { + return getClientRect(scrollParentEl); + } } + + return null; }, isPointInBounds: function(leftOffset, topOffset) { @@ -3448,6 +3653,7 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { dayTouchStart: function(ev) { var view = this.view; + var selectLongPressDelay = view.opt('selectLongPressDelay'); // HACK to prevent a user's clickaway for unselecting a range or an event // from causing a dayClick. @@ -3455,8 +3661,12 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { this.tempIgnoreMouse(); } + if (selectLongPressDelay == null) { + selectLongPressDelay = view.opt('longPressDelay'); // fallback + } + this.dayDragListener.startInteraction(ev, { - delay: this.view.opt('longPressDelay') + delay: selectLongPressDelay }); }, @@ -3793,7 +4003,7 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { // Computes HTML classNames for a single-day element - getDayClasses: function(date) { + getDayClasses: function(date, noThemeHighlight) { var view = this.view; var today = view.calendar.getNow(); var classes = [ 'fc-' + dayIDs[date.day()] ]; @@ -3806,10 +4016,11 @@ var Grid = FC.Grid = Class.extend(ListenerMixin, MouseIgnorerMixin, { } if (date.isSame(today, 'day')) { - classes.push( - 'fc-today', - view.highlightStateClass - ); + classes.push('fc-today'); + + if (noThemeHighlight !== true) { + classes.push(view.highlightStateClass); + } } else if (date < today) { classes.push('fc-past'); @@ -4005,16 +4216,33 @@ Grid.mixin({ // Compute business hour segs for the grid's current date range. // Caller must ask if whole-day business hours are needed. - buildBusinessHourSegs: function(wholeDay) { - var events = this.view.calendar.getCurrentBusinessHourEvents(wholeDay); + // If no `businessHours` configuration value is specified, assumes the calendar default. + buildBusinessHourSegs: function(wholeDay, businessHours) { + return this.eventsToSegs( + this.buildBusinessHourEvents(wholeDay, businessHours) + ); + }, + + + // Compute business hour *events* for the grid's current date range. + // Caller must ask if whole-day business hours are needed. + // If no `businessHours` configuration value is specified, assumes the calendar default. + buildBusinessHourEvents: function(wholeDay, businessHours) { + var calendar = this.view.calendar; + var events; + + if (businessHours == null) { + // fallback + // access from calendawr. don't access from view. doesn't update with dynamic options. + businessHours = calendar.options.businessHours; + } + + events = calendar.computeBusinessHourEvents(wholeDay, businessHours); // HACK. Eventually refactor business hours "events" system. // If no events are given, but businessHours is activated, this means the entire visible range should be // marked as *not* business-hours, via inverse-background rendering. - if ( - !events.length && - this.view.calendar.options.businessHours // don't access view option. doesn't update with dynamic options - ) { + if (!events.length && businessHours) { events = [ $.extend({}, BUSINESS_HOUR_EVENT_DEFAULTS, { start: this.view.end, // guaranteed out-of-range @@ -4024,7 +4252,7 @@ Grid.mixin({ ]; } - return this.eventsToSegs(events); + return events; }, @@ -4066,7 +4294,7 @@ Grid.mixin({ handleSegClick: function(seg, ev) { - var res = this.view.trigger('eventClick', seg.el[0], seg.event, ev); // can return `false` to cancel + var res = this.view.publiclyTrigger('eventClick', seg.el[0], seg.event, ev); // can return `false` to cancel if (res === false) { ev.preventDefault(); } @@ -4083,7 +4311,7 @@ Grid.mixin({ if (this.view.isEventResizable(seg.event)) { seg.el.addClass('fc-allow-mouse-resize'); } - this.view.trigger('eventMouseover', seg.el[0], seg.event, ev); + this.view.publiclyTrigger('eventMouseover', seg.el[0], seg.event, ev); } }, @@ -4099,7 +4327,7 @@ Grid.mixin({ if (this.view.isEventResizable(seg.event)) { seg.el.removeClass('fc-allow-mouse-resize'); } - this.view.trigger('eventMouseout', seg.el[0], seg.event, ev); + this.view.publiclyTrigger('eventMouseout', seg.el[0], seg.event, ev); } }, @@ -4124,6 +4352,7 @@ Grid.mixin({ var isResizable = view.isEventResizable(event); var isResizing = false; var dragListener; + var eventLongPressDelay; if (isSelected && isResizable) { // only allow resizing of the event is selected @@ -4132,12 +4361,17 @@ Grid.mixin({ if (!isResizing && (isDraggable || isResizable)) { // allowed to be selected? + eventLongPressDelay = view.opt('eventLongPressDelay'); + if (eventLongPressDelay == null) { + eventLongPressDelay = view.opt('longPressDelay'); // fallback + } + dragListener = isDraggable ? this.buildSegDragListener(seg) : this.buildSegSelectListener(seg); // seg isn't draggable, but still needs to be selected dragListener.startInteraction(ev, { // won't start if already started - delay: isSelected ? 0 : this.view.opt('longPressDelay') // do delay if not already selected + delay: isSelected ? 0 : eventLongPressDelay // do delay if not already selected }); } @@ -4270,11 +4504,15 @@ Grid.mixin({ mouseFollower.stop(!dropLocation, function() { if (isDragging) { view.unrenderDrag(); - view.showEvent(event); _this.segDragStop(seg, ev); } + if (dropLocation) { - view.reportEventDrop(event, dropLocation, this.largeUnit, el, ev); + // no need to re-show original, will rerender all anyways. esp important if eventRenderWait + view.reportEventDrop(event, dropLocation, _this.largeUnit, el, ev); + } + else { + view.showEvent(event); } }); _this.segDragListener = null; @@ -4316,14 +4554,14 @@ Grid.mixin({ // Called before event segment dragging starts segDragStart: function(seg, ev) { this.isDraggingSeg = true; - this.view.trigger('eventDragStart', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy + this.view.publiclyTrigger('eventDragStart', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy }, // Called after event segment dragging stops segDragStop: function(seg, ev) { this.isDraggingSeg = false; - this.view.trigger('eventDragStop', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy + this.view.publiclyTrigger('eventDragStop', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy }, @@ -4561,18 +4799,23 @@ Grid.mixin({ }, hitOut: function() { // called before mouse moves to a different hit OR moved out of all hits resizeLocation = null; + view.showEvent(event); // for when out-of-bounds. show original }, hitDone: function() { // resets the rendering to show the original event _this.unrenderEventResize(); - view.showEvent(event); enableCursor(); }, interactionEnd: function(ev) { if (isDragging) { _this.segResizeStop(seg, ev); } + if (resizeLocation) { // valid date to resize to? - view.reportEventResize(event, resizeLocation, this.largeUnit, el, ev); + // no need to re-show original, will rerender all anyways. esp important if eventRenderWait + view.reportEventResize(event, resizeLocation, _this.largeUnit, el, ev); + } + else { + view.showEvent(event); } _this.segResizeListener = null; } @@ -4585,14 +4828,14 @@ Grid.mixin({ // Called before event segment resizing starts segResizeStart: function(seg, ev) { this.isResizingSeg = true; - this.view.trigger('eventResizeStart', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy + this.view.publiclyTrigger('eventResizeStart', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy }, // Called after event segment resizing stops segResizeStop: function(seg, ev) { this.isResizingSeg = false; - this.view.trigger('eventResizeStop', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy + this.view.publiclyTrigger('eventResizeStop', seg.el[0], seg.event, ev, {}); // last argument is jqui dummy }, @@ -5143,7 +5386,7 @@ var DayTableMixin = FC.DayTableMixin = { this.dayIndices = dayIndices; this.daysPerRow = daysPerRow; this.rowCnt = rowCnt; - + this.updateDayTableCols(); }, @@ -5381,9 +5624,25 @@ var DayTableMixin = FC.DayTableMixin = { // (colspan should be no different) renderHeadDateCellHtml: function(date, colspan, otherAttrs) { var view = this.view; + var classNames = [ + 'fc-day-header', + view.widgetHeaderClass + ]; + + // if only one row of days, the classNames on the header can represent the specific days beneath + if (this.rowCnt === 1) { + classNames = classNames.concat( + // includes the day-of-week class + // noThemeHighlight=true (don't highlight the header) + this.getDayClasses(date, true) + ); + } + else { + classNames.push('fc-' + dayIDs[date.day()]); // only add the day-of-week class + } return '' + - '"); + } + else { + el.empty(); + } + el.append(renderSection('left')) + .append(renderSection('right')) + .append(renderSection('center')) + .append('
'); + } + else { + removeElement(); + } + } - return cache[viewType] || (cache[viewType] = this.buildViewSpec(viewType)); - }, + function removeElement() { + if (el) { + el.remove(); + el = t.el = null; + } + } - // Given a duration singular unit, like "week" or "day", finds a matching view spec. - // Preference is given to views that have corresponding buttons. - getUnitViewSpec: function(unit) { - var viewTypes; - var i; - var spec; - if ($.inArray(unit, intervalUnits) != -1) { + function renderSection(position) { + var sectionEl = $('
'); + var buttonStr = toolbarOptions.layout[position]; - // put views that have buttons first. there will be duplicates, but oh well - viewTypes = this.header.getViewsWithButtons(); - $.each(FC.views, function(viewType) { // all views - viewTypes.push(viewType); - }); + if (buttonStr) { + $.each(buttonStr.split(' '), function(i) { + var groupChildren = $(); + var isOnlyButtons = true; + var groupEl; - for (i = 0; i < viewTypes.length; i++) { - spec = this.getViewSpec(viewTypes[i]); - if (spec) { - if (spec.singleUnit == unit) { - return spec; + $.each(this.split(','), function(j, buttonName) { + var customButtonProps; + var viewSpec; + var buttonClick; + var overrideText; // text explicitly set by calendar's constructor options. overcomes icons + var defaultText; + var themeIcon; + var normalIcon; + var innerHtml; + var classes; + var button; // the element + + if (buttonName == 'title') { + groupChildren = groupChildren.add($('

 

')); // we always want it to take up height + isOnlyButtons = false; } - } - } - } - }, + else { + if ((customButtonProps = (calendar.options.customButtons || {})[buttonName])) { + buttonClick = function(ev) { + if (customButtonProps.click) { + customButtonProps.click.call(button[0], ev); + } + }; + overrideText = ''; // icons will override text + defaultText = customButtonProps.text; + } + else if ((viewSpec = calendar.getViewSpec(buttonName))) { + buttonClick = function() { + calendar.changeView(buttonName); + }; + viewsWithButtons.push(buttonName); + overrideText = viewSpec.buttonTextOverride; + defaultText = viewSpec.buttonTextDefault; + } + else if (calendar[buttonName]) { // a calendar method + buttonClick = function() { + calendar[buttonName](); + }; + overrideText = (calendar.overrides.buttonText || {})[buttonName]; + defaultText = calendar.options.buttonText[buttonName]; // everything else is considered default + } + if (buttonClick) { - // Builds an object with information on how to create a given view - buildViewSpec: function(requestedViewType) { - var viewOverrides = this.overrides.views || {}; - var specChain = []; // for the view. lowest to highest priority - var defaultsChain = []; // for the view. lowest to highest priority - var overridesChain = []; // for the view. lowest to highest priority - var viewType = requestedViewType; - var spec; // for the view - var overrides; // for the view - var duration; - var unit; + themeIcon = + customButtonProps ? + customButtonProps.themeIcon : + calendar.options.themeButtonIcons[buttonName]; - // iterate from the specific view definition to a more general one until we hit an actual View class - while (viewType) { - spec = fcViews[viewType]; - overrides = viewOverrides[viewType]; - viewType = null; // clear. might repopulate for another iteration + normalIcon = + customButtonProps ? + customButtonProps.icon : + calendar.options.buttonIcons[buttonName]; - if (typeof spec === 'function') { // TODO: deprecate - spec = { 'class': spec }; - } + if (overrideText) { + innerHtml = htmlEscape(overrideText); + } + else if (themeIcon && calendar.options.theme) { + innerHtml = ""; + } + else if (normalIcon && !calendar.options.theme) { + innerHtml = ""; + } + else { + innerHtml = htmlEscape(defaultText); + } - if (spec) { - specChain.unshift(spec); - defaultsChain.unshift(spec.defaults || {}); - duration = duration || spec.duration; - viewType = viewType || spec.type; - } + classes = [ + 'fc-' + buttonName + '-button', + tm + '-button', + tm + '-state-default' + ]; - if (overrides) { - overridesChain.unshift(overrides); // view-specific option hashes have options at zero-level - duration = duration || overrides.duration; - viewType = viewType || overrides.type; - } - } + button = $( // type="button" so that it doesn't submit a form + '' + ) + .click(function(ev) { + // don't process clicks for disabled buttons + if (!button.hasClass(tm + '-state-disabled')) { - spec = mergeProps(specChain); - spec.type = requestedViewType; - if (!spec['class']) { - return false; - } + buttonClick(ev); - if (duration) { - duration = moment.duration(duration); - if (duration.valueOf()) { // valid? - spec.duration = duration; - unit = computeIntervalUnit(duration); + // after the click action, if the button becomes the "active" tab, or disabled, + // it should never have a hover class, so remove it now. + if ( + button.hasClass(tm + '-state-active') || + button.hasClass(tm + '-state-disabled') + ) { + button.removeClass(tm + '-state-hover'); + } + } + }) + .mousedown(function() { + // the *down* effect (mouse pressed in). + // only on buttons that are not the "active" tab, or disabled + button + .not('.' + tm + '-state-active') + .not('.' + tm + '-state-disabled') + .addClass(tm + '-state-down'); + }) + .mouseup(function() { + // undo the *down* effect + button.removeClass(tm + '-state-down'); + }) + .hover( + function() { + // the *hover* effect. + // only on buttons that are not the "active" tab, or disabled + button + .not('.' + tm + '-state-active') + .not('.' + tm + '-state-disabled') + .addClass(tm + '-state-hover'); + }, + function() { + // undo the *hover* effect + button + .removeClass(tm + '-state-hover') + .removeClass(tm + '-state-down'); // if mouseleave happens before mouseup + } + ); - // view is a single-unit duration, like "week" or "day" - // incorporate options for this. lowest priority - if (duration.as(unit) === 1) { - spec.singleUnit = unit; - overridesChain.unshift(viewOverrides[unit] || {}); + groupChildren = groupChildren.add(button); + } + } + }); + + if (isOnlyButtons) { + groupChildren + .first().addClass(tm + '-corner-left').end() + .last().addClass(tm + '-corner-right').end(); } - } - } - spec.defaults = mergeOptions(defaultsChain); - spec.overrides = mergeOptions(overridesChain); + if (groupChildren.length > 1) { + groupEl = $('
'); + if (isOnlyButtons) { + groupEl.addClass('fc-button-group'); + } + groupEl.append(groupChildren); + sectionEl.append(groupEl); + } + else { + sectionEl.append(groupChildren); // 1 or 0 children + } + }); + } - this.buildViewSpecOptions(spec); - this.buildViewSpecButtonText(spec, requestedViewType); + return sectionEl; + } - return spec; - }, + function updateTitle(text) { + if (el) { + el.find('h2').text(text); + } + } - // Builds and assigns a view spec's options object from its already-assigned defaults and overrides - buildViewSpecOptions: function(spec) { - spec.options = mergeOptions([ // lowest to highest priority - Calendar.defaults, // global defaults - spec.defaults, // view's defaults (from ViewSubclass.defaults) - this.dirDefaults, - this.localeDefaults, // locale and dir take precedence over view's defaults! - this.overrides, // calendar's overrides (options given to constructor) - spec.overrides, // view's overrides (view-specific options) - this.dynamicOverrides // dynamically set via setter. highest precedence - ]); - populateInstanceComputableOptions(spec.options); - }, + function activateButton(buttonName) { + if (el) { + el.find('.fc-' + buttonName + '-button') + .addClass(tm + '-state-active'); + } + } - // Computes and assigns a view spec's buttonText-related options - buildViewSpecButtonText: function(spec, requestedViewType) { - // given an options object with a possible `buttonText` hash, lookup the buttonText for the - // requested view, falling back to a generic unit entry like "week" or "day" - function queryButtonText(options) { - var buttonText = options.buttonText || {}; - return buttonText[requestedViewType] || - // view can decide to look up a certain key - (spec.buttonTextKey ? buttonText[spec.buttonTextKey] : null) || - // a key like "month" - (spec.singleUnit ? buttonText[spec.singleUnit] : null); + function deactivateButton(buttonName) { + if (el) { + el.find('.fc-' + buttonName + '-button') + .removeClass(tm + '-state-active'); } + } - // highest to lowest priority - spec.buttonTextOverride = - queryButtonText(this.dynamicOverrides) || - queryButtonText(this.overrides) || // constructor-specified buttonText lookup hash takes precedence - spec.overrides.buttonText; // `buttonText` for view-specific options is a string - // highest to lowest priority. mirrors buildViewSpecOptions - spec.buttonTextDefault = - queryButtonText(this.localeDefaults) || - queryButtonText(this.dirDefaults) || + function disableButton(buttonName) { + if (el) { + el.find('.fc-' + buttonName + '-button') + .prop('disabled', true) + .addClass(tm + '-state-disabled'); + } + } + + + function enableButton(buttonName) { + if (el) { + el.find('.fc-' + buttonName + '-button') + .prop('disabled', false) + .removeClass(tm + '-state-disabled'); + } + } + + + function getViewsWithButtons() { + return viewsWithButtons; + } + +} + +;; + +var Calendar = FC.Calendar = Class.extend({ + + dirDefaults: null, // option defaults related to LTR or RTL + localeDefaults: null, // option defaults related to current locale + overrides: null, // option overrides given to the fullCalendar constructor + dynamicOverrides: null, // options set with dynamic setter method. higher precedence than view overrides. + options: null, // all defaults combined with overrides + viewSpecCache: null, // cache of view definitions + view: null, // current View object + header: null, + footer: null, + loadingLevel: 0, // number of simultaneous loading tasks + + + // a lot of this class' OOP logic is scoped within this constructor function, + // but in the future, write individual methods on the prototype. + constructor: Calendar_constructor, + + + // Subclasses can override this for initialization logic after the constructor has been called + initialize: function() { + }, + + + // Computes the flattened options hash for the calendar and assigns to `this.options`. + // Assumes this.overrides and this.dynamicOverrides have already been initialized. + populateOptionsHash: function() { + var locale, localeDefaults; + var isRTL, dirDefaults; + + locale = firstDefined( // explicit locale option given? + this.dynamicOverrides.locale, + this.overrides.locale + ); + localeDefaults = localeOptionHash[locale]; + if (!localeDefaults) { // explicit locale option not given or invalid? + locale = Calendar.defaults.locale; + localeDefaults = localeOptionHash[locale] || {}; + } + + isRTL = firstDefined( // based on options computed so far, is direction RTL? + this.dynamicOverrides.isRTL, + this.overrides.isRTL, + localeDefaults.isRTL, + Calendar.defaults.isRTL + ); + dirDefaults = isRTL ? Calendar.rtlDefaults : {}; + + this.dirDefaults = dirDefaults; + this.localeDefaults = localeDefaults; + this.options = mergeOptions([ // merge defaults and overrides. lowest to highest precedence + Calendar.defaults, // global defaults + dirDefaults, + localeDefaults, + this.overrides, + this.dynamicOverrides + ]); + populateInstanceComputableOptions(this.options); // fill in gaps with computed options + }, + + + // Gets information about how to create a view. Will use a cache. + getViewSpec: function(viewType) { + var cache = this.viewSpecCache; + + return cache[viewType] || (cache[viewType] = this.buildViewSpec(viewType)); + }, + + + // Given a duration singular unit, like "week" or "day", finds a matching view spec. + // Preference is given to views that have corresponding buttons. + getUnitViewSpec: function(unit) { + var viewTypes; + var i; + var spec; + + if ($.inArray(unit, intervalUnits) != -1) { + + // put views that have buttons first. there will be duplicates, but oh well + viewTypes = this.header.getViewsWithButtons(); // TODO: include footer as well? + $.each(FC.views, function(viewType) { // all views + viewTypes.push(viewType); + }); + + for (i = 0; i < viewTypes.length; i++) { + spec = this.getViewSpec(viewTypes[i]); + if (spec) { + if (spec.singleUnit == unit) { + return spec; + } + } + } + } + }, + + + // Builds an object with information on how to create a given view + buildViewSpec: function(requestedViewType) { + var viewOverrides = this.overrides.views || {}; + var specChain = []; // for the view. lowest to highest priority + var defaultsChain = []; // for the view. lowest to highest priority + var overridesChain = []; // for the view. lowest to highest priority + var viewType = requestedViewType; + var spec; // for the view + var overrides; // for the view + var duration; + var unit; + + // iterate from the specific view definition to a more general one until we hit an actual View class + while (viewType) { + spec = fcViews[viewType]; + overrides = viewOverrides[viewType]; + viewType = null; // clear. might repopulate for another iteration + + if (typeof spec === 'function') { // TODO: deprecate + spec = { 'class': spec }; + } + + if (spec) { + specChain.unshift(spec); + defaultsChain.unshift(spec.defaults || {}); + duration = duration || spec.duration; + viewType = viewType || spec.type; + } + + if (overrides) { + overridesChain.unshift(overrides); // view-specific option hashes have options at zero-level + duration = duration || overrides.duration; + viewType = viewType || overrides.type; + } + } + + spec = mergeProps(specChain); + spec.type = requestedViewType; + if (!spec['class']) { + return false; + } + + if (duration) { + duration = moment.duration(duration); + if (duration.valueOf()) { // valid? + spec.duration = duration; + unit = computeIntervalUnit(duration); + + // view is a single-unit duration, like "week" or "day" + // incorporate options for this. lowest priority + if (duration.as(unit) === 1) { + spec.singleUnit = unit; + overridesChain.unshift(viewOverrides[unit] || {}); + } + } + } + + spec.defaults = mergeOptions(defaultsChain); + spec.overrides = mergeOptions(overridesChain); + + this.buildViewSpecOptions(spec); + this.buildViewSpecButtonText(spec, requestedViewType); + + return spec; + }, + + + // Builds and assigns a view spec's options object from its already-assigned defaults and overrides + buildViewSpecOptions: function(spec) { + spec.options = mergeOptions([ // lowest to highest priority + Calendar.defaults, // global defaults + spec.defaults, // view's defaults (from ViewSubclass.defaults) + this.dirDefaults, + this.localeDefaults, // locale and dir take precedence over view's defaults! + this.overrides, // calendar's overrides (options given to constructor) + spec.overrides, // view's overrides (view-specific options) + this.dynamicOverrides // dynamically set via setter. highest precedence + ]); + populateInstanceComputableOptions(spec.options); + }, + + + // Computes and assigns a view spec's buttonText-related options + buildViewSpecButtonText: function(spec, requestedViewType) { + + // given an options object with a possible `buttonText` hash, lookup the buttonText for the + // requested view, falling back to a generic unit entry like "week" or "day" + function queryButtonText(options) { + var buttonText = options.buttonText || {}; + return buttonText[requestedViewType] || + // view can decide to look up a certain key + (spec.buttonTextKey ? buttonText[spec.buttonTextKey] : null) || + // a key like "month" + (spec.singleUnit ? buttonText[spec.singleUnit] : null); + } + + // highest to lowest priority + spec.buttonTextOverride = + queryButtonText(this.dynamicOverrides) || + queryButtonText(this.overrides) || // constructor-specified buttonText lookup hash takes precedence + spec.overrides.buttonText; // `buttonText` for view-specific options is a string + + // highest to lowest priority. mirrors buildViewSpecOptions + spec.buttonTextDefault = + queryButtonText(this.localeDefaults) || + queryButtonText(this.dirDefaults) || spec.defaults.buttonText || // a single string. from ViewSubclass.defaults queryButtonText(Calendar.defaults) || (spec.duration ? this.humanizeDuration(spec.duration) : null) || // like "3 days" @@ -9302,7 +10162,7 @@ var Calendar = FC.Calendar = Class.extend({ // Should be called when any type of async data fetching begins pushLoading: function() { if (!(this.loadingLevel++)) { - this.trigger('loading', null, true, this.view); + this.publiclyTrigger('loading', null, true, this.view); } }, @@ -9310,7 +10170,7 @@ var Calendar = FC.Calendar = Class.extend({ // Should be called when any type of async data fetching completes popLoading: function() { if (!(--this.loadingLevel)) { - this.trigger('loading', null, false, this.view); + this.publiclyTrigger('loading', null, false, this.view); } }, @@ -9348,11 +10208,7 @@ function Calendar_constructor(element, overrides) { t.render = render; t.destroy = destroy; - t.refetchEvents = refetchEvents; - t.refetchEventSources = refetchEventSources; - t.reportEvents = reportEvents; - t.reportEventChange = reportEventChange; - t.rerenderEvents = renderEvents; // `renderEvents` serves as a rerender. an API method + t.rerenderEvents = rerenderEvents; t.changeView = renderView; // `renderView` will switch to another view t.select = select; t.unselect = unselect; @@ -9368,7 +10224,7 @@ function Calendar_constructor(element, overrides) { t.getCalendar = getCalendar; t.getView = getView; t.option = option; // getter/setter method - t.trigger = trigger; + t.publiclyTrigger = publiclyTrigger; // Options @@ -9561,15 +10417,12 @@ function Calendar_constructor(element, overrides) { }; - + // Imports // ----------------------------------------------------------------------------------- EventManager.call(t); - var isFetchNeeded = t.isFetchNeeded; - var fetchEvents = t.fetchEvents; - var fetchEventSources = t.fetchEventSources; @@ -9578,7 +10431,9 @@ function Calendar_constructor(element, overrides) { var _element = element[0]; + var toolbarsManager; var header; + var footer; var content; var tm; // for making theme classes var currentView; // NOTE: keep this in sync with this.view @@ -9586,11 +10441,10 @@ function Calendar_constructor(element, overrides) { var suggestedViewHeight; var windowResizeProxy; // wraps the windowResize function var ignoreWindowResize = 0; - var events = []; var date; // unzoned - - - + + + // Main Rendering // ----------------------------------------------------------------------------------- @@ -9602,8 +10456,8 @@ function Calendar_constructor(element, overrides) { else { date = t.getNow(); // getNow already returns unzoned } - - + + function render() { if (!content) { initialRender(); @@ -9614,8 +10468,8 @@ function Calendar_constructor(element, overrides) { renderView(); } } - - + + function initialRender() { element.addClass('fc'); @@ -9656,9 +10510,14 @@ function Calendar_constructor(element, overrides) { content = $("
").prependTo(element); - header = t.header = new Header(t); - renderHeader(); + var toolbars = buildToolbars(); + toolbarsManager = new Iterator(toolbars); + + header = t.header = toolbars[0]; + footer = t.footer = toolbars[1]; + renderHeader(); + renderFooter(); renderView(t.options.defaultView); if (t.options.handleWindowResize) { @@ -9668,15 +10527,6 @@ function Calendar_constructor(element, overrides) { } - // can be called repeatedly and Header will rerender - function renderHeader() { - header.render(); - if (header.el) { - element.prepend(header.el); - } - } - - function destroy() { if (currentView) { @@ -9686,7 +10536,7 @@ function Calendar_constructor(element, overrides) { // It is still the "current" view, just not rendered. } - header.removeElement(); + toolbarsManager.proxyCall('removeElement'); content.remove(); element.removeClass('fc fc-ltr fc-rtl fc-unthemed ui-widget'); @@ -9696,13 +10546,13 @@ function Calendar_constructor(element, overrides) { $(window).unbind('resize', windowResizeProxy); } } - - + + function elementVisible() { return element.is(':visible'); } - - + + // View Rendering // ----------------------------------------------------------------------------------- @@ -9711,11 +10561,13 @@ function Calendar_constructor(element, overrides) { // Renders a view because of a date change, view-type change, or for the first time. // If not given a viewType, keep the current view but render different dates. // Accepts an optional scroll state to restore to. - function renderView(viewType, explicitScrollState) { + function renderView(viewType, forcedScroll) { ignoreWindowResize++; + var needsClearView = currentView && viewType && currentView.type !== viewType; + // if viewType is changing, remove the old view's rendering - if (currentView && viewType && currentView.type !== viewType) { + if (needsClearView) { freezeContentHeight(); // prevent a scroll jump when view element is removed clearView(); } @@ -9729,7 +10581,7 @@ function Calendar_constructor(element, overrides) { currentView.setElement( $("
").appendTo(content) ); - header.activateButton(viewType); + toolbarsManager.proxyCall('activateButton', viewType); } if (currentView) { @@ -9739,7 +10591,7 @@ function Calendar_constructor(element, overrides) { // render or rerender the view if ( - !currentView.displaying || + !currentView.isDateSet || !( // NOT within interval range signals an implicit date window change date >= currentView.intervalStart && date < currentView.intervalEnd @@ -9747,19 +10599,27 @@ function Calendar_constructor(element, overrides) { ) { if (elementVisible()) { - currentView.display(date, explicitScrollState); // will call freezeContentHeight - unfreezeContentHeight(); // immediately unfreeze regardless of whether display is async + if (forcedScroll) { + currentView.captureInitialScroll(forcedScroll); + } + + currentView.setDate(date, forcedScroll); - // need to do this after View::render, so dates are calculated - updateHeaderTitle(); - updateTodayButton(); + if (forcedScroll) { + currentView.releaseScroll(); + } - getAndRenderEvents(); + // need to do this after View::render, so dates are calculated + // NOTE: view updates title text proactively + updateToolbarsTodayButton(); } } } - unfreezeContentHeight(); // undo any lone freezeContentHeight calls + if (needsClearView) { + thawContentHeight(); + } + ignoreWindowResize--; } @@ -9767,7 +10627,7 @@ function Calendar_constructor(element, overrides) { // Unrenders the current view and reflects this change in the Header. // Unregsiters the `currentView`, but does not remove from viewByType hash. function clearView() { - header.deactivateButton(currentView.type); + toolbarsManager.proxyCall('deactivateButton', currentView.type); currentView.removeElement(); currentView = t.view = null; } @@ -9783,13 +10643,14 @@ function Calendar_constructor(element, overrides) { var viewType = currentView.type; var scrollState = currentView.queryScroll(); clearView(); + calcSize(); renderView(viewType, scrollState); - unfreezeContentHeight(); + thawContentHeight(); ignoreWindowResize--; } - + // Resizing // ----------------------------------------------------------------------------------- @@ -9806,8 +10667,8 @@ function Calendar_constructor(element, overrides) { t.isHeightAuto = function() { return t.options.contentHeight === 'auto' || t.options.height === 'auto'; }; - - + + function updateSize(shouldRecalc) { if (elementVisible()) { @@ -9829,8 +10690,8 @@ function Calendar_constructor(element, overrides) { _calcSize(); } } - - + + function _calcSize() { // assumes elementVisible var contentHeightInput = t.options.contentHeight; var heightInput = t.options.height; @@ -9842,13 +10703,13 @@ function Calendar_constructor(element, overrides) { suggestedViewHeight = contentHeightInput(); } else if (typeof heightInput === 'number') { // exists and not 'auto' - suggestedViewHeight = heightInput - queryHeaderHeight(); + suggestedViewHeight = heightInput - queryToolbarsHeight(); } else if (typeof heightInput === 'function') { // exists and is a function - suggestedViewHeight = heightInput() - queryHeaderHeight(); + suggestedViewHeight = heightInput() - queryToolbarsHeight(); } else if (heightInput === 'parent') { // set to height of parent element - suggestedViewHeight = element.parent().height() - queryHeaderHeight(); + suggestedViewHeight = element.parent().height() - queryToolbarsHeight(); } else { suggestedViewHeight = Math.round(content.width() / Math.max(t.options.aspectRatio, .5)); @@ -9856,11 +10717,14 @@ function Calendar_constructor(element, overrides) { } - function queryHeaderHeight() { - return header.el ? header.el.outerHeight(true) : 0; // includes margin + function queryToolbarsHeight() { + return toolbarsManager.items.reduce(function(accumulator, toolbar) { + var toolbarHeight = toolbar.el ? toolbar.el.outerHeight(true) : 0; // includes margin + return accumulator + toolbarHeight; + }, 0); } - - + + function windowResize(ev) { if ( !ignoreWindowResize && @@ -9868,94 +10732,93 @@ function Calendar_constructor(element, overrides) { currentView.start // view has already been rendered ) { if (updateSize(true)) { - currentView.trigger('windowResize', _element); + currentView.publiclyTrigger('windowResize', _element); } } } - - - - /* Event Fetching/Rendering - -----------------------------------------------------------------------------*/ - // TODO: going forward, most of this stuff should be directly handled by the view - function refetchEvents() { // can be called as an API method - fetchAndRenderEvents(); - } - - // TODO: move this into EventManager? - function refetchEventSources(matchInputs) { - fetchEventSources(t.getEventSourcesByMatchArray(matchInputs)); - } + /* Event Rendering + -----------------------------------------------------------------------------*/ - function renderEvents() { // destroys old events if previously rendered + function rerenderEvents() { // API method. destroys old events if previously rendered. if (elementVisible()) { - freezeContentHeight(); - currentView.displayEvents(events); - unfreezeContentHeight(); + t.reportEventChange(); // will re-trasmit events to the view, causing a rerender } } - - function getAndRenderEvents() { - if (!t.options.lazyFetching || isFetchNeeded(currentView.start, currentView.end)) { - fetchAndRenderEvents(); - } - else { - renderEvents(); - } - } - function fetchAndRenderEvents() { - fetchEvents(currentView.start, currentView.end); - // ... will call reportEvents - // ... which will call renderEvents - } + /* Toolbars + -----------------------------------------------------------------------------*/ - - // called when event data arrives - function reportEvents(_events) { - events = _events; - renderEvents(); + + function buildToolbars() { + return [ + new Toolbar(t, computeHeaderOptions()), + new Toolbar(t, computeFooterOptions()) + ]; } - // called when a single event's data has been changed - function reportEventChange() { - renderEvents(); + function computeHeaderOptions() { + return { + extraClasses: 'fc-header-toolbar', + layout: t.options.header + }; } + function computeFooterOptions() { + return { + extraClasses: 'fc-footer-toolbar', + layout: t.options.footer + }; + } - /* Header Updating - -----------------------------------------------------------------------------*/ + + // can be called repeatedly and Header will rerender + function renderHeader() { + header.setToolbarOptions(computeHeaderOptions()); + header.render(); + if (header.el) { + element.prepend(header.el); + } + } - function updateHeaderTitle() { - header.updateTitle(currentView.title); + // can be called repeatedly and Footer will rerender + function renderFooter() { + footer.setToolbarOptions(computeFooterOptions()); + footer.render(); + if (footer.el) { + element.append(footer.el); + } } - function updateTodayButton() { - var now = t.getNow(); + t.setToolbarsTitle = function(title) { + toolbarsManager.proxyCall('updateTitle', title); + }; + + function updateToolbarsTodayButton() { + var now = t.getNow(); if (now >= currentView.intervalStart && now < currentView.intervalEnd) { - header.disableButton('today'); + toolbarsManager.proxyCall('disableButton', 'today'); } else { - header.enableButton('today'); + toolbarsManager.proxyCall('enableButton', 'today'); } } - + /* Selection -----------------------------------------------------------------------------*/ - + // this public method receives start/end dates in any format, with any timezone function select(zonedStartInput, zonedEndInput) { @@ -9963,56 +10826,56 @@ function Calendar_constructor(element, overrides) { t.buildSelectSpan.apply(t, arguments) ); } - + function unselect() { // safe to be called before renderView if (currentView) { currentView.unselect(); } } - - - + + + /* Date -----------------------------------------------------------------------------*/ - - + + function prev() { date = currentView.computePrevDate(date); renderView(); } - - + + function next() { date = currentView.computeNextDate(date); renderView(); } - - + + function prevYear() { date.add(-1, 'years'); renderView(); } - - + + function nextYear() { date.add(1, 'years'); renderView(); } - - + + function today() { date = t.getNow(); renderView(); } - - + + function gotoDate(zonedDateInput) { date = t.moment(zonedDateInput).stripZone(); renderView(); } - - + + function incrementDate(delta) { date.add(moment.duration(delta)); renderView(); @@ -10030,8 +10893,8 @@ function Calendar_constructor(element, overrides) { date = newDate.clone(); renderView(spec ? spec.type : null); } - - + + // for external API function getDate() { return t.applyTimezone(date); // infuse the calendar's timezone @@ -10041,45 +10904,51 @@ function Calendar_constructor(element, overrides) { /* Height "Freezing" -----------------------------------------------------------------------------*/ - // TODO: move this into the view + t.freezeContentHeight = freezeContentHeight; - t.unfreezeContentHeight = unfreezeContentHeight; + t.thawContentHeight = thawContentHeight; + + var freezeContentHeightDepth = 0; function freezeContentHeight() { - content.css({ - width: '100%', - height: content.height(), - overflow: 'hidden' - }); + if (!(freezeContentHeightDepth++)) { + content.css({ + width: '100%', + height: content.height(), + overflow: 'hidden' + }); + } } - function unfreezeContentHeight() { - content.css({ - width: '', - height: '', - overflow: '' - }); + function thawContentHeight() { + if (!(--freezeContentHeightDepth)) { + content.css({ + width: '', + height: '', + overflow: '' + }); + } } - - - + + + /* Misc -----------------------------------------------------------------------------*/ - + function getCalendar() { return t; } - + function getView() { return currentView; } - - + + function option(name, value) { var newOptionHash; @@ -10135,19 +11004,20 @@ function Calendar_constructor(element, overrides) { } else if (optionName === 'timezone') { t.rezoneArrayEventSources(); - refetchEvents(); + t.refetchEvents(); return; } } - // catch-all. rerender the header and rebuild/rerender the current view + // catch-all. rerender the header and footer and rebuild/rerender the current view renderHeader(); + renderFooter(); viewsByType = {}; // even non-current views will be affected by this option change. do before rerender reinitView(); } - - - function trigger(name, thisObj) { // overrides the Emitter's trigger method :( + + + function publiclyTrigger(name, thisObj) { var args = Array.prototype.slice.call(arguments, 2); thisObj = thisObj || _element; @@ -10310,6 +11180,7 @@ Calendar.defaults = { dropAccept: '*', eventOrder: 'title', + //eventRenderWait: null, eventLimit: false, eventLimitText: 'more', @@ -10430,392 +11301,123 @@ var dpComputableOptions = { // the translations sometimes wrongly contain HTML entities prev: stripHtmlEntities(dpOptions.prevText), next: stripHtmlEntities(dpOptions.nextText), - today: stripHtmlEntities(dpOptions.currentText) - }; - }, - - // Produces format strings like "MMMM YYYY" -> "September 2014" - monthYearFormat: function(dpOptions) { - return dpOptions.showMonthAfterYear ? - 'YYYY[' + dpOptions.yearSuffix + '] MMMM' : - 'MMMM YYYY[' + dpOptions.yearSuffix + ']'; - } - -}; - -var momComputableOptions = { - - // Produces format strings like "ddd M/D" -> "Fri 9/15" - dayOfMonthFormat: function(momOptions, fcOptions) { - var format = momOptions.longDateFormat('l'); // for the format like "M/D/YYYY" - - // strip the year off the edge, as well as other misc non-whitespace chars - format = format.replace(/^Y+[^\w\s]*|[^\w\s]*Y+$/g, ''); - - if (fcOptions.isRTL) { - format += ' ddd'; // for RTL, add day-of-week to end - } - else { - format = 'ddd ' + format; // for LTR, add day-of-week to beginning - } - return format; - }, - - // Produces format strings like "h:mma" -> "6:00pm" - mediumTimeFormat: function(momOptions) { // can't be called `timeFormat` because collides with option - return momOptions.longDateFormat('LT') - .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand - }, - - // Produces format strings like "h(:mm)a" -> "6pm" / "6:30pm" - smallTimeFormat: function(momOptions) { - return momOptions.longDateFormat('LT') - .replace(':mm', '(:mm)') - .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales - .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand - }, - - // Produces format strings like "h(:mm)t" -> "6p" / "6:30p" - extraSmallTimeFormat: function(momOptions) { - return momOptions.longDateFormat('LT') - .replace(':mm', '(:mm)') - .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales - .replace(/\s*a$/i, 't'); // convert to AM/PM/am/pm to lowercase one-letter. remove any spaces beforehand - }, - - // Produces format strings like "ha" / "H" -> "6pm" / "18" - hourFormat: function(momOptions) { - return momOptions.longDateFormat('LT') - .replace(':mm', '') - .replace(/(\Wmm)$/, '') // like above, but for foreign locales - .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand - }, - - // Produces format strings like "h:mm" -> "6:30" (with no AM/PM) - noMeridiemTimeFormat: function(momOptions) { - return momOptions.longDateFormat('LT') - .replace(/\s*a$/i, ''); // remove trailing AM/PM - } - -}; - - -// options that should be computed off live calendar options (considers override options) -// TODO: best place for this? related to locale? -// TODO: flipping text based on isRTL is a bad idea because the CSS `direction` might want to handle it -var instanceComputableOptions = { - - // Produces format strings for results like "Mo 16" - smallDayDateFormat: function(options) { - return options.isRTL ? - 'D dd' : - 'dd D'; - }, - - // Produces format strings for results like "Wk 5" - weekFormat: function(options) { - return options.isRTL ? - 'w[ ' + options.weekNumberTitle + ']' : - '[' + options.weekNumberTitle + ' ]w'; - }, - - // Produces format strings for results like "Wk5" - smallWeekFormat: function(options) { - return options.isRTL ? - 'w[' + options.weekNumberTitle + ']' : - '[' + options.weekNumberTitle + ']w'; - } - -}; - -function populateInstanceComputableOptions(options) { - $.each(instanceComputableOptions, function(name, func) { - if (options[name] == null) { - options[name] = func(options); - } - }); -} - - -// Returns moment's internal locale data. If doesn't exist, returns English. -function getMomentLocaleData(localeCode) { - return moment.localeData(localeCode) || moment.localeData('en'); -} - - -// Initialize English by forcing computation of moment-derived options. -// Also, sets it as the default. -FC.locale('en', Calendar.englishDefaults); - -;; - -/* Top toolbar area with buttons and title -----------------------------------------------------------------------------------------------------------------------*/ -// TODO: rename all header-related things to "toolbar" - -function Header(calendar) { - var t = this; - - // exports - t.render = render; - t.removeElement = removeElement; - t.updateTitle = updateTitle; - t.activateButton = activateButton; - t.deactivateButton = deactivateButton; - t.disableButton = disableButton; - t.enableButton = enableButton; - t.getViewsWithButtons = getViewsWithButtons; - t.el = null; // mirrors local `el` - - // locals - var el; - var viewsWithButtons = []; - var tm; - - - // can be called repeatedly and will rerender - function render() { - var options = calendar.options; - var sections = options.header; - - tm = options.theme ? 'ui' : 'fc'; - - if (sections) { - if (!el) { - el = this.el = $("
"); - } - else { - el.empty(); - } - el.append(renderSection('left')) - .append(renderSection('right')) - .append(renderSection('center')) - .append('
'); - } - else { - removeElement(); - } - } - - - function removeElement() { - if (el) { - el.remove(); - el = t.el = null; - } - } - - - function renderSection(position) { - var sectionEl = $('
'); - var options = calendar.options; - var buttonStr = options.header[position]; - - if (buttonStr) { - $.each(buttonStr.split(' '), function(i) { - var groupChildren = $(); - var isOnlyButtons = true; - var groupEl; - - $.each(this.split(','), function(j, buttonName) { - var customButtonProps; - var viewSpec; - var buttonClick; - var overrideText; // text explicitly set by calendar's constructor options. overcomes icons - var defaultText; - var themeIcon; - var normalIcon; - var innerHtml; - var classes; - var button; // the element - - if (buttonName == 'title') { - groupChildren = groupChildren.add($('

 

')); // we always want it to take up height - isOnlyButtons = false; - } - else { - if ((customButtonProps = (options.customButtons || {})[buttonName])) { - buttonClick = function(ev) { - if (customButtonProps.click) { - customButtonProps.click.call(button[0], ev); - } - }; - overrideText = ''; // icons will override text - defaultText = customButtonProps.text; - } - else if ((viewSpec = calendar.getViewSpec(buttonName))) { - buttonClick = function() { - calendar.changeView(buttonName); - }; - viewsWithButtons.push(buttonName); - overrideText = viewSpec.buttonTextOverride; - defaultText = viewSpec.buttonTextDefault; - } - else if (calendar[buttonName]) { // a calendar method - buttonClick = function() { - calendar[buttonName](); - }; - overrideText = (calendar.overrides.buttonText || {})[buttonName]; - defaultText = options.buttonText[buttonName]; // everything else is considered default - } - - if (buttonClick) { - - themeIcon = - customButtonProps ? - customButtonProps.themeIcon : - options.themeButtonIcons[buttonName]; - - normalIcon = - customButtonProps ? - customButtonProps.icon : - options.buttonIcons[buttonName]; - - if (overrideText) { - innerHtml = htmlEscape(overrideText); - } - else if (themeIcon && options.theme) { - innerHtml = ""; - } - else if (normalIcon && !options.theme) { - innerHtml = ""; - } - else { - innerHtml = htmlEscape(defaultText); - } - - classes = [ - 'fc-' + buttonName + '-button', - tm + '-button', - tm + '-state-default' - ]; - - button = $( // type="button" so that it doesn't submit a form - '' - ) - .click(function(ev) { - // don't process clicks for disabled buttons - if (!button.hasClass(tm + '-state-disabled')) { - - buttonClick(ev); - - // after the click action, if the button becomes the "active" tab, or disabled, - // it should never have a hover class, so remove it now. - if ( - button.hasClass(tm + '-state-active') || - button.hasClass(tm + '-state-disabled') - ) { - button.removeClass(tm + '-state-hover'); - } - } - }) - .mousedown(function() { - // the *down* effect (mouse pressed in). - // only on buttons that are not the "active" tab, or disabled - button - .not('.' + tm + '-state-active') - .not('.' + tm + '-state-disabled') - .addClass(tm + '-state-down'); - }) - .mouseup(function() { - // undo the *down* effect - button.removeClass(tm + '-state-down'); - }) - .hover( - function() { - // the *hover* effect. - // only on buttons that are not the "active" tab, or disabled - button - .not('.' + tm + '-state-active') - .not('.' + tm + '-state-disabled') - .addClass(tm + '-state-hover'); - }, - function() { - // undo the *hover* effect - button - .removeClass(tm + '-state-hover') - .removeClass(tm + '-state-down'); // if mouseleave happens before mouseup - } - ); - - groupChildren = groupChildren.add(button); - } - } - }); - - if (isOnlyButtons) { - groupChildren - .first().addClass(tm + '-corner-left').end() - .last().addClass(tm + '-corner-right').end(); - } - - if (groupChildren.length > 1) { - groupEl = $('
'); - if (isOnlyButtons) { - groupEl.addClass('fc-button-group'); - } - groupEl.append(groupChildren); - sectionEl.append(groupEl); - } - else { - sectionEl.append(groupChildren); // 1 or 0 children - } - }); - } - - return sectionEl; - } - - - function updateTitle(text) { - if (el) { - el.find('h2').text(text); - } - } - - - function activateButton(buttonName) { - if (el) { - el.find('.fc-' + buttonName + '-button') - .addClass(tm + '-state-active'); - } - } - - - function deactivateButton(buttonName) { - if (el) { - el.find('.fc-' + buttonName + '-button') - .removeClass(tm + '-state-active'); - } + today: stripHtmlEntities(dpOptions.currentText) + }; + }, + + // Produces format strings like "MMMM YYYY" -> "September 2014" + monthYearFormat: function(dpOptions) { + return dpOptions.showMonthAfterYear ? + 'YYYY[' + dpOptions.yearSuffix + '] MMMM' : + 'MMMM YYYY[' + dpOptions.yearSuffix + ']'; } - - - function disableButton(buttonName) { - if (el) { - el.find('.fc-' + buttonName + '-button') - .prop('disabled', true) - .addClass(tm + '-state-disabled'); + +}; + +var momComputableOptions = { + + // Produces format strings like "ddd M/D" -> "Fri 9/15" + dayOfMonthFormat: function(momOptions, fcOptions) { + var format = momOptions.longDateFormat('l'); // for the format like "M/D/YYYY" + + // strip the year off the edge, as well as other misc non-whitespace chars + format = format.replace(/^Y+[^\w\s]*|[^\w\s]*Y+$/g, ''); + + if (fcOptions.isRTL) { + format += ' ddd'; // for RTL, add day-of-week to end } - } - - - function enableButton(buttonName) { - if (el) { - el.find('.fc-' + buttonName + '-button') - .prop('disabled', false) - .removeClass(tm + '-state-disabled'); + else { + format = 'ddd ' + format; // for LTR, add day-of-week to beginning } + return format; + }, + + // Produces format strings like "h:mma" -> "6:00pm" + mediumTimeFormat: function(momOptions) { // can't be called `timeFormat` because collides with option + return momOptions.longDateFormat('LT') + .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand + }, + + // Produces format strings like "h(:mm)a" -> "6pm" / "6:30pm" + smallTimeFormat: function(momOptions) { + return momOptions.longDateFormat('LT') + .replace(':mm', '(:mm)') + .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales + .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand + }, + + // Produces format strings like "h(:mm)t" -> "6p" / "6:30p" + extraSmallTimeFormat: function(momOptions) { + return momOptions.longDateFormat('LT') + .replace(':mm', '(:mm)') + .replace(/(\Wmm)$/, '($1)') // like above, but for foreign locales + .replace(/\s*a$/i, 't'); // convert to AM/PM/am/pm to lowercase one-letter. remove any spaces beforehand + }, + + // Produces format strings like "ha" / "H" -> "6pm" / "18" + hourFormat: function(momOptions) { + return momOptions.longDateFormat('LT') + .replace(':mm', '') + .replace(/(\Wmm)$/, '') // like above, but for foreign locales + .replace(/\s*a$/i, 'a'); // convert AM/PM/am/pm to lowercase. remove any spaces beforehand + }, + + // Produces format strings like "h:mm" -> "6:30" (with no AM/PM) + noMeridiemTimeFormat: function(momOptions) { + return momOptions.longDateFormat('LT') + .replace(/\s*a$/i, ''); // remove trailing AM/PM } +}; - function getViewsWithButtons() { - return viewsWithButtons; + +// options that should be computed off live calendar options (considers override options) +// TODO: best place for this? related to locale? +// TODO: flipping text based on isRTL is a bad idea because the CSS `direction` might want to handle it +var instanceComputableOptions = { + + // Produces format strings for results like "Mo 16" + smallDayDateFormat: function(options) { + return options.isRTL ? + 'D dd' : + 'dd D'; + }, + + // Produces format strings for results like "Wk 5" + weekFormat: function(options) { + return options.isRTL ? + 'w[ ' + options.weekNumberTitle + ']' : + '[' + options.weekNumberTitle + ' ]w'; + }, + + // Produces format strings for results like "Wk5" + smallWeekFormat: function(options) { + return options.isRTL ? + 'w[' + options.weekNumberTitle + ']' : + '[' + options.weekNumberTitle + ']w'; } +}; + +function populateInstanceComputableOptions(options) { + $.each(instanceComputableOptions, function(name, func) { + if (options[name] == null) { + options[name] = func(options); + } + }); +} + + +// Returns moment's internal locale data. If doesn't exist, returns English. +function getMomentLocaleData(localeCode) { + return moment.localeData(localeCode) || moment.localeData('en'); } + +// Initialize English by forcing computation of moment-derived options. +// Also, sets it as the default. +FC.locale('en', Calendar.englishDefaults); + ;; FC.sourceNormalizers = []; @@ -10831,38 +11433,39 @@ var eventGUID = 1; function EventManager() { // assumed to be a calendar var t = this; - - + + // exports + t.requestEvents = requestEvents; + t.reportEventChange = reportEventChange; t.isFetchNeeded = isFetchNeeded; t.fetchEvents = fetchEvents; t.fetchEventSources = fetchEventSources; + t.refetchEvents = refetchEvents; + t.refetchEventSources = refetchEventSources; t.getEventSources = getEventSources; t.getEventSourceById = getEventSourceById; - t.getEventSourcesByMatchArray = getEventSourcesByMatchArray; - t.getEventSourcesByMatch = getEventSourcesByMatch; t.addEventSource = addEventSource; t.removeEventSource = removeEventSource; t.removeEventSources = removeEventSources; t.updateEvent = updateEvent; + t.updateEvents = updateEvents; t.renderEvent = renderEvent; + t.renderEvents = renderEvents; t.removeEvents = removeEvents; t.clientEvents = clientEvents; t.mutateEvent = mutateEvent; t.normalizeEventDates = normalizeEventDates; t.normalizeEventTimes = normalizeEventTimes; - - - // imports - var reportEvents = t.reportEvents; - - + + // locals var stickySource = { events: [] }; var sources = [ stickySource ]; var rangeStart, rangeEnd; var pendingSourceCnt = 0; // outstanding fetch requests, max one per source var cache = []; // holds events that have already been expanded + var prunedCache; // like cache, but only events that intersect with rangeStart/rangeEnd $.each( @@ -10874,9 +11477,55 @@ function EventManager() { // assumed to be a calendar } } ); - - - + + + + function requestEvents(start, end) { + if (!t.options.lazyFetching || isFetchNeeded(start, end)) { + return fetchEvents(start, end); + } + else { + return Promise.resolve(prunedCache); + } + } + + + function reportEventChange() { + prunedCache = filterEventsWithinRange(cache); + t.trigger('eventsReset', prunedCache); + } + + + function filterEventsWithinRange(events) { + var filteredEvents = []; + var i, event; + + for (i = 0; i < events.length; i++) { + event = events[i]; + + if ( + event.start.clone().stripZone() < rangeEnd && + t.getEventEnd(event).stripZone() > rangeStart + ) { + filteredEvents.push(event); + } + } + + return filteredEvents; + } + + + t.getEventCache = function() { + return cache; + }; + + + t.getPrunedEventCache = function() { + return prunedCache; + }; + + + /* Fetching -----------------------------------------------------------------------------*/ @@ -10886,12 +11535,24 @@ function EventManager() { // assumed to be a calendar return !rangeStart || // nothing has been fetched yet? start < rangeStart || end > rangeEnd; // is part of the new range outside of the old range? } - - + + function fetchEvents(start, end) { rangeStart = start; rangeEnd = end; - fetchEventSources(sources, 'reset'); + return refetchEvents(); + } + + + // poorly named. fetches all sources with current `rangeStart` and `rangeEnd`. + function refetchEvents() { + return fetchEventSources(sources, 'reset'); + } + + + // poorly named. fetches a subset of event sources. + function refetchEventSources(matchInputs) { + return fetchEventSources(getEventSourcesByMatchArray(matchInputs)); } @@ -10921,9 +11582,17 @@ function EventManager() { // assumed to be a calendar for (i = 0; i < specificSources.length; i++) { source = specificSources[i]; - tryFetchEventSource(source, source._fetchId); } + + if (pendingSourceCnt) { + return new Promise(function(resolve) { + t.one('eventsReceived', resolve); // will send prunedCache + }); + } + else { // executed all synchronously, or no sources at all + return Promise.resolve(prunedCache); + } } @@ -10956,7 +11625,7 @@ function EventManager() { // assumed to be a calendar } if (abstractEvent) { // not false (an invalid event) - cache.push.apply( + cache.push.apply( // append cache, expandEvent(abstractEvent) // add individual expanded events to the cache ); @@ -10984,11 +11653,12 @@ function EventManager() { // assumed to be a calendar function decrementPendingSourceCnt() { pendingSourceCnt--; if (!pendingSourceCnt) { - reportEvents(cache); + reportEventChange(cache); // updates prunedCache + t.trigger('eventsReceived', prunedCache); } } - - + + function _fetchEventSource(source, callback) { var i; var fetchers = FC.sourceFetchers; @@ -11097,9 +11767,9 @@ function EventManager() { // assumed to be a calendar } } } - - - + + + /* Sources -----------------------------------------------------------------------------*/ @@ -11108,7 +11778,7 @@ function EventManager() { // assumed to be a calendar var source = buildEventSource(sourceInput); if (source) { sources.push(source); - fetchEventSources([ source ], 'add'); // will eventually call reportEvents + fetchEventSources([ source ], 'add'); // will eventually call reportEventChange } } @@ -11204,7 +11874,7 @@ function EventManager() { // assumed to be a calendar cache = excludeEventsBySources(cache, targetSources); } - reportEvents(cache); + reportEventChange(); } @@ -11298,27 +11968,39 @@ function EventManager() { // assumed to be a calendar return true; // keep }); } - - - + + + /* Manipulation -----------------------------------------------------------------------------*/ // Only ever called from the externally-facing API function updateEvent(event) { + updateEvents([ event ]); + } - // massage start/end values, even if date string values - event.start = t.moment(event.start); - if (event.end) { - event.end = t.moment(event.end); - } - else { - event.end = null; + + // Only ever called from the externally-facing API + function updateEvents(events) { + var i, event; + + for (i = 0; i < events.length; i++) { + event = events[i]; + + // massage start/end values, even if date string values + event.start = t.moment(event.start); + if (event.end) { + event.end = t.moment(event.end); + } + else { + event.end = null; + } + + mutateEvent(event, getMiscEventProps(event)); // will handle start/end/allDay normalization } - mutateEvent(event, getMiscEventProps(event)); // will handle start/end/allDay normalization - reportEvents(cache); // reports event modifications (so we can redraw) + reportEventChange(); // reports event modifications (so we can redraw) } @@ -11342,37 +12024,50 @@ function EventManager() { // assumed to be a calendar return !/^_|^(id|allDay|start|end)$/.test(name); } - + // returns the expanded events that were created function renderEvent(eventInput, stick) { - var abstractEvent = buildEventFromInput(eventInput); - var events; - var i, event; + return renderEvents([ eventInput ], stick); + } - if (abstractEvent) { // not false (a valid input) - events = expandEvent(abstractEvent); - for (i = 0; i < events.length; i++) { - event = events[i]; + // returns the expanded events that were created + function renderEvents(eventInputs, stick) { + var renderedEvents = []; + var renderableEvents; + var abstractEvent; + var i, j, event; + + for (i = 0; i < eventInputs.length; i++) { + abstractEvent = buildEventFromInput(eventInputs[i]); + + if (abstractEvent) { // not false (a valid input) + renderableEvents = expandEvent(abstractEvent); + + for (j = 0; j < renderableEvents.length; j++) { + event = renderableEvents[j]; - if (!event.source) { - if (stick) { - stickySource.events.push(event); - event.source = stickySource; + if (!event.source) { + if (stick) { + stickySource.events.push(event); + event.source = stickySource; + } + cache.push(event); } - cache.push(event); } - } - reportEvents(cache); + renderedEvents = renderedEvents.concat(renderableEvents); + } + } - return events; + if (renderedEvents.length) { // any new events rendered? + reportEventChange(); } - return []; + return renderedEvents; } - - + + function removeEvents(filter) { var eventID; var i; @@ -11399,10 +12094,10 @@ function EventManager() { // assumed to be a calendar } } - reportEvents(cache); + reportEventChange(); } - + function clientEvents(filter) { if ($.isFunction(filter)) { return $.grep(cache, filter); @@ -11442,8 +12137,8 @@ function EventManager() { // assumed to be a calendar } backupEventDates(event); } - - + + /* Event Normalization -----------------------------------------------------------------------------*/ @@ -11853,11 +12548,6 @@ function EventManager() { // assumed to be a calendar }; } - - t.getEventCache = function() { - return cache; - }; - } @@ -12386,13 +13076,18 @@ var BasicView = FC.BasicView = View.extend({ ------------------------------------------------------------------------------------------------------------------*/ + computeInitialScroll: function() { + return { top: 0 }; + }, + + queryScroll: function() { - return this.scroller.getScrollTop(); + return { top: this.scroller.getScrollTop() }; }, - setScroll: function(top) { - this.scroller.setScrollTop(top); + setScroll: function(scroll) { + this.scroller.setScrollTop(scroll.top); }, @@ -12909,17 +13604,17 @@ var AgendaView = FC.AgendaView = View.extend({ top++; // to overcome top border that slots beyond the first have. looks better } - return top; + return { top: top }; }, queryScroll: function() { - return this.scroller.getScrollTop(); + return { top: this.scroller.getScrollTop() }; }, - setScroll: function(top) { - this.scroller.setScrollTop(top); + setScroll: function(scroll) { + this.scroller.setScrollTop(scroll.top); }, diff --git a/library/fullcalendar/fullcalendar.min.css b/library/fullcalendar/fullcalendar.min.css index 87ee16e69..1339120b4 100644 --- a/library/fullcalendar/fullcalendar.min.css +++ b/library/fullcalendar/fullcalendar.min.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v3.0.1 Stylesheet + * FullCalendar v3.1.0 Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw - */.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;font-weight:400}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar{margin-bottom:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item:hover td{background-color:#f5f5f5}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee} \ No newline at end of file + */.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;font-weight:400}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item:hover td{background-color:#f5f5f5}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee} \ No newline at end of file diff --git a/library/fullcalendar/fullcalendar.min.js b/library/fullcalendar/fullcalendar.min.js index bc8b51c8a..8484b7c45 100644 --- a/library/fullcalendar/fullcalendar.min.js +++ b/library/fullcalendar/fullcalendar.min.js @@ -1,9 +1,10 @@ /*! - * FullCalendar v3.0.1 + * FullCalendar v3.1.0 * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ -!function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):"object"==typeof exports?module.exports=t(require("jquery"),require("moment")):t(jQuery,moment)}(function(t,e){function n(t){return q(t,qt)}function i(t,e){e.left&&t.css({"border-left-width":1,"margin-left":e.left-1}),e.right&&t.css({"border-right-width":1,"margin-right":e.right-1})}function r(t){t.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function s(){t("body").addClass("fc-not-allowed")}function o(){t("body").removeClass("fc-not-allowed")}function l(e,n,i){var r=Math.floor(n/e.length),s=Math.floor(n-r*(e.length-1)),o=[],l=[],u=[],d=0;a(e),e.each(function(n,i){var a=n===e.length-1?s:r,c=t(i).outerHeight(!0);c *").each(function(e,i){var r=t(i).outerWidth();r>n&&(n=r)}),n++,e.width(n),n}function d(t,e){var n,i=t.add(e);return i.css({position:"relative",left:-1}),n=t.outerHeight()-e.outerHeight(),i.css({position:"",left:""}),n}function c(e){var n=e.css("position"),i=e.parents().filter(function(){var e=t(this);return/(auto|scroll)/.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==n&&i.length?i:t(e[0].ownerDocument||document)}function h(t,e){var n=t.offset(),i=n.left-(e?e.left:0),r=n.top-(e?e.top:0);return{left:i,right:i+t.outerWidth(),top:r,bottom:r+t.outerHeight()}}function f(t,e){var n=t.offset(),i=p(t),r=n.left+y(t,"border-left-width")+i.left-(e?e.left:0),s=n.top+y(t,"border-top-width")+i.top-(e?e.top:0);return{left:r,right:r+t[0].clientWidth,top:s,bottom:s+t[0].clientHeight}}function g(t,e){var n=t.offset(),i=n.left+y(t,"border-left-width")+y(t,"padding-left")-(e?e.left:0),r=n.top+y(t,"border-top-width")+y(t,"padding-top")-(e?e.top:0);return{left:i,right:i+t.width(),top:r,bottom:r+t.height()}}function p(t){var e=t.innerWidth()-t[0].clientWidth,n={left:0,right:0,top:0,bottom:t.innerHeight()-t[0].clientHeight};return v()&&"rtl"==t.css("direction")?n.left=e:n.right=e,n}function v(){return null===Zt&&(Zt=m()),Zt}function m(){var e=t("
").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),n=e.children(),i=n.offset().left>e.offset().left;return e.remove(),i}function y(t,e){return parseFloat(t.css(e))||0}function S(t){return 1==t.which&&!t.ctrlKey}function w(t){if(void 0!==t.pageX)return t.pageX;var e=t.originalEvent.touches;return e?e[0].pageX:void 0}function E(t){if(void 0!==t.pageY)return t.pageY;var e=t.originalEvent.touches;return e?e[0].pageY:void 0}function D(t){return/^touch/.test(t.type)}function b(t){t.addClass("fc-unselectable").on("selectstart",C)}function C(t){t.preventDefault()}function H(t){return!!window.addEventListener&&(window.addEventListener("scroll",t,!0),!0)}function T(t){return!!window.removeEventListener&&(window.removeEventListener("scroll",t,!0),!0)}function x(t,e){var n={left:Math.max(t.left,e.left),right:Math.min(t.right,e.right),top:Math.max(t.top,e.top),bottom:Math.min(t.bottom,e.bottom)};return n.lefta&&o=a?(n=o.clone(),r=!0):(n=a.clone(),r=!1),l<=u?(i=l.clone(),s=!0):(i=u.clone(),s=!1),{start:n,end:i,isStart:r,isEnd:s}}function N(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days"),ms:t.time()-n.time()})}function G(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days")})}function A(t,n,i){return e.duration(Math.round(t.diff(n,i,!0)),i)}function O(t,e){var n,i,r;for(n=0;n=1&&ot(r)));n++);return i}function V(t,n,i){return null!=i?i.diff(n,t,!0):e.isDuration(n)?n.as(t):n.end.diff(n.start,t,!0)}function P(t,e,n){var i;return W(n)?(e-t)/n:(i=n.asMonths(),Math.abs(i)>=1&&ot(i)?e.diff(t,"months",!0)/i:e.diff(t,"days",!0)/n.asDays())}function _(t,e){var n,i;return W(t)||W(e)?t/e:(n=t.asMonths(),i=e.asMonths(),Math.abs(n)>=1&&ot(n)&&Math.abs(i)>=1&&ot(i)?n/i:t.asDays()/e.asDays())}function Y(t,n){var i;return W(t)?e.duration(t*n):(i=t.asMonths(),Math.abs(i)>=1&&ot(i)?e.duration({months:i*n}):e.duration({days:t.asDays()*n}))}function W(t){return Boolean(t.hours()||t.minutes()||t.seconds()||t.milliseconds())}function j(t){return"[object Date]"===Object.prototype.toString.call(t)||t instanceof Date}function U(t){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(t)}function q(t,e){var n,i,r,s,o,l,a={};if(e)for(n=0;n=0;s--)if(o=t[s][i],"object"==typeof o)r.unshift(o);else if(void 0!==o){a[i]=o;break}r.length&&(a[i]=q(r))}for(n=t.length-1;n>=0;n--){l=t[n];for(i in l)i in a||(a[i]=l[i])}return a}function Z(t){var e=function(){};return e.prototype=t,new e}function $(t,e){for(var n in t)X(t,n)&&(e[n]=t[n])}function X(t,e){return Kt.call(t,e)}function K(e){return/undefined|null|boolean|number|string/.test(t.type(e))}function Q(e,n,i){if(t.isFunction(e)&&(e=[e]),e){var r,s;for(r=0;r/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
")}function et(t){return t.replace(/&.*?;/g,"")}function nt(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+":"+e)}),n.join(";")}function it(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+'="'+tt(e)+'"')}),n.join(" ")}function rt(t){return t.charAt(0).toUpperCase()+t.slice(1)}function st(t,e){return t-e}function ot(t){return t%1===0}function lt(t,e){var n=t[e];return function(){return n.apply(t,arguments)}}function at(t,e,n){var i,r,s,o,l,a=function(){var u=+new Date-o;uo&&(s=mt(t,e,u,d,n[l]),s!==!1);l--)h=s+h;for(a=o;a<=l;a++)f+=gt(t,n[a]),g+=gt(e,n[a]);return(f||g)&&(p=r?g+i+f:f+i+g),c+p+h}function mt(t,e,n,i,r){var s,o;return"string"==typeof r?r:!!((s=r.token)&&(o=re[s.charAt(0)],o&&n.isSame(i,o)))&&ct(t,s)}function yt(t){return t in se?se[t]:se[t]=St(t)}function St(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push(e[1]):e[2]?n.push({maybe:St(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push(e[5]);return n}function wt(){}function Et(t,e){var n;return X(e,"constructor")&&(n=e.constructor),"function"!=typeof n&&(n=e.constructor=function(){t.apply(this,arguments)}),n.prototype=Z(t.prototype),$(e,n.prototype),$(t,n),n}function Dt(t,e){$(e,t.prototype)}function bt(t,e){return!t&&!e||!(!t||!e)&&(t.component===e.component&&Ct(t,e)&&Ct(e,t))}function Ct(t,e){for(var n in t)if(!/^(component|left|right|top|bottom)$/.test(n)&&t[n]!==e[n])return!1;return!0}function Ht(t){return{start:t.start.clone(),end:t.end?t.end.clone():null,allDay:t.allDay}}function Tt(t){var e=Rt(t);return"background"===e||"inverse-background"===e}function xt(t){return"inverse-background"===Rt(t)}function Rt(t){return J((t.source||{}).rendering,t.rendering)}function It(t){var e,n,i={};for(e=0;e=t.leftCol)return!0;return!1}function Bt(t,e){return t.leftCol-e.leftCol}function zt(t){var e,n,i,r=[];for(e=0;ee.top&&t.top").prependTo(n),q=j.header=new _t(j),l(),d(j.options.defaultView),j.options.handleWindowResize&&(J=at(m,j.options.windowResizeDelay),t(window).resize(J))}function l(){q.render(),q.el&&n.prepend(q.el)}function a(){K&&K.removeElement(),q.removeElement(),$.remove(),n.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),n.off(".fc"),J&&t(window).unbind("resize",J)}function u(){return n.is(":visible")}function d(e,n){lt++,K&&e&&K.type!==e&&(A(),c()),!K&&e&&(K=j.view=ot[e]||(ot[e]=j.instantiateView(e)),K.setElement(t("
").appendTo($)),q.activateButton(e)),K&&(tt=K.massageCurrentDate(tt),K.displaying&&tt>=K.intervalStart&&tt=K.intervalStart&&t"),h.append(r("left")).append(r("right")).append(r("center")).append('
')):i()}function i(){h&&(h.remove(),h=c.el=null)}function r(n){var i=t('
'),r=e.options,s=r.header[n];return s&&t.each(s.split(" "),function(n){var s,o=t(),l=!0;t.each(this.split(","),function(n,i){var s,a,u,d,c,h,p,v,m,y;"title"==i?(o=o.add(t("

 

")),l=!1):((s=(r.customButtons||{})[i])?(u=function(t){s.click&&s.click.call(y[0],t)},d="",c=s.text):(a=e.getViewSpec(i))?(u=function(){e.changeView(i)},g.push(i),d=a.buttonTextOverride,c=a.buttonTextDefault):e[i]&&(u=function(){e[i]()},d=(e.overrides.buttonText||{})[i],c=r.buttonText[i]),u&&(h=s?s.themeIcon:r.themeButtonIcons[i],p=s?s.icon:r.buttonIcons[i],v=d?tt(d):h&&r.theme?"":p&&!r.theme?"":tt(c),m=["fc-"+i+"-button",f+"-button",f+"-state-default"],y=t('").click(function(t){y.hasClass(f+"-state-disabled")||(u(t),(y.hasClass(f+"-state-active")||y.hasClass(f+"-state-disabled"))&&y.removeClass(f+"-state-hover"))}).mousedown(function(){y.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-down")}).mouseup(function(){y.removeClass(f+"-state-down")}).hover(function(){y.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-hover")},function(){y.removeClass(f+"-state-hover").removeClass(f+"-state-down")}),o=o.add(y)))}),l&&o.first().addClass(f+"-corner-left").end().last().addClass(f+"-corner-right").end(),o.length>1?(s=t("
"),l&&s.addClass("fc-button-group"),s.append(o),i.append(s)):i.append(o)}),i}function s(t){h&&h.find("h2").text(t)}function o(t){h&&h.find(".fc-"+t+"-button").addClass(f+"-state-active")}function l(t){h&&h.find(".fc-"+t+"-button").removeClass(f+"-state-active")}function a(t){h&&h.find(".fc-"+t+"-button").prop("disabled",!0).addClass(f+"-state-disabled")}function u(t){h&&h.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(f+"-state-disabled")}function d(){return g}var c=this;c.render=n,c.removeElement=i,c.updateTitle=s,c.activateButton=o,c.deactivateButton=l,c.disableButton=a,c.enableButton=u,c.getViewsWithButtons=d,c.el=null;var h,f,g=[]}function Yt(){function n(t,e){return!O||tV}function i(t,e){O=t,V=e,r(Y,"reset")}function r(t,e){var n,i;for("reset"===e?j=[]:"add"!==e&&(j=w(j,t)),n=0;nr.value)&&(r=i));return r?r.unit:null},jt.Class=wt,wt.extend=function(){var t,e,n=arguments.length;for(t=0;t').addClass(n.className||"").css({top:0,left:0}).append(n.content).appendTo(n.parentEl),this.el.on("click",".fc-close",function(){e.hide()}),n.autoHide&&this.listenTo(t(document),"mousedown",this.documentMousedown)},documentMousedown:function(e){this.el&&!t(e.target).closest(this.el).length&&this.hide()},removeElement:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(t(document),"mousedown")},position:function(){var e,n,i,r,s,o=this.options,l=this.el.offsetParent().offset(),a=this.el.outerWidth(),u=this.el.outerHeight(),d=t(window),h=c(this.el);r=o.top||0,s=void 0!==o.left?o.left:void 0!==o.right?o.right-a:0,h.is(window)||h.is(document)?(h=d,e=0,n=0):(i=h.offset(),e=i.top,n=i.left),e+=d.scrollTop(),n+=d.scrollLeft(),o.viewportConstrain!==!1&&(r=Math.min(r,e+h.outerHeight()-u-this.margin),r=Math.max(r,e+this.margin),s=Math.min(s,n+h.outerWidth()-a-this.margin),s=Math.max(s,n+this.margin)),this.el.css({top:r-l.top,left:s-l.left})},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))}}),ce=jt.CoordCache=wt.extend({els:null,forcedOffsetParentEl:null,origin:null,boundingRect:null,isHorizontal:!1,isVertical:!1,lefts:null,rights:null,tops:null,bottoms:null,constructor:function(e){this.els=t(e.els),this.isHorizontal=e.isHorizontal,this.isVertical=e.isVertical,this.forcedOffsetParentEl=e.offsetParent?t(e.offsetParent):null},build:function(){var t=this.forcedOffsetParentEl||this.els.eq(0).offsetParent();this.origin=t.offset(),this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},clear:function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},ensureBuilt:function(){this.origin||this.build()},buildElHorizontals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().left,l=s.outerWidth();e.push(o),n.push(o+l)}),this.lefts=e,this.rights=n},buildElVerticals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().top,l=s.outerHeight();e.push(o),n.push(o+l)}),this.tops=e,this.bottoms=n},getHorizontalIndex:function(t){this.ensureBuilt();var e,n=this.lefts,i=this.rights,r=n.length;for(e=0;e=n[e]&&t=n[e]&&t=this.boundingRect.left&&t=this.boundingRect.top&&t=r*r&&this.handleDistanceSurpassed(t)),this.isDragging&&this.handleDrag(n,i,t)},handleDrag:function(t,e,n){this.trigger("drag",t,e,n),this.updateAutoScroll(n)},endDrag:function(t){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(t))},handleDragEnd:function(t){this.trigger("dragEnd",t)},startDelay:function(t){var e=this;this.delay?this.delayTimeoutId=setTimeout(function(){e.handleDelayEnd(t)},this.delay):this.handleDelayEnd(t)},handleDelayEnd:function(t){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(t)},handleDistanceSurpassed:function(t){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(t)},handleTouchMove:function(t){this.isDragging&&t.preventDefault(),this.handleMove(t)},handleMouseMove:function(t){this.handleMove(t)},handleTouchScroll:function(t){this.isDragging||this.endInteraction(t,!0)},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1)),this["_"+t]&&this["_"+t].apply(this,Array.prototype.slice.call(arguments,1))}});he.mixin({isAutoScroll:!1,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,initAutoScroll:function(){var t=this.scrollEl;this.isAutoScroll=this.options.scroll&&t&&!t.is(window)&&!t.is(document),this.isAutoScroll&&this.listenTo(t,"scroll",at(this.handleDebouncedScroll,100))},destroyAutoScroll:function(){this.endAutoScroll(),this.isAutoScroll&&this.stopListeningTo(this.scrollEl,"scroll")},computeScrollBounds:function(){this.isAutoScroll&&(this.scrollBounds=h(this.scrollEl))},updateAutoScroll:function(t){var e,n,i,r,s=this.scrollSensitivity,o=this.scrollBounds,l=0,a=0;o&&(e=(s-(E(t)-o.top))/s,n=(s-(o.bottom-E(t)))/s,i=(s-(w(t)-o.left))/s,r=(s-(o.right-w(t)))/s,e>=0&&e<=1?l=e*this.scrollSpeed*-1:n>=0&&n<=1&&(l=n*this.scrollSpeed),i>=0&&i<=1?a=i*this.scrollSpeed*-1:r>=0&&r<=1&&(a=r*this.scrollSpeed)),this.setScrollVel(l,a)},setScrollVel:function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(lt(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var t=this.scrollEl;this.scrollTopVel<0?t.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?t.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},endAutoScroll:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},handleDebouncedScroll:function(){this.scrollIntervalId||this.handleScrollEnd()},handleScrollEnd:function(){}});var fe=he.extend({component:null,origHit:null,hit:null,coordAdjust:null,constructor:function(t,e){he.call(this,e),this.component=t},handleInteractionStart:function(t){var e,n,i,r=this.subjectEl;this.computeCoords(),t?(n={left:w(t),top:E(t)},i=n,r&&(e=h(r),i=R(i,e)),this.origHit=this.queryHit(i.left,i.top),r&&this.options.subjectCenter&&(this.origHit&&(e=x(this.origHit,e)||e),i=I(e)),this.coordAdjust=k(i,n)):(this.origHit=null,this.coordAdjust=null),he.prototype.handleInteractionStart.apply(this,arguments)},computeCoords:function(){this.component.prepareHits(),this.computeScrollBounds()},handleDragStart:function(t){var e;he.prototype.handleDragStart.apply(this,arguments),e=this.queryHit(w(t),E(t)),e&&this.handleHitOver(e)},handleDrag:function(t,e,n){var i;he.prototype.handleDrag.apply(this,arguments),i=this.queryHit(w(n),E(n)),bt(i,this.hit)||(this.hit&&this.handleHitOut(),i&&this.handleHitOver(i))},handleDragEnd:function(){this.handleHitDone(),he.prototype.handleDragEnd.apply(this,arguments)},handleHitOver:function(t){var e=bt(t,this.origHit);this.hit=t,this.trigger("hitOver",this.hit,e,this.origHit)},handleHitOut:function(){this.hit&&(this.trigger("hitOut",this.hit),this.handleHitDone(),this.hit=null)},handleHitDone:function(){this.hit&&this.trigger("hitDone",this.hit)},handleInteractionEnd:function(){he.prototype.handleInteractionEnd.apply(this,arguments),this.origHit=null,this.hit=null,this.component.releaseHits()},handleScrollEnd:function(){he.prototype.handleScrollEnd.apply(this,arguments),this.computeCoords()},queryHit:function(t,e){return this.coordAdjust&&(t+=this.coordAdjust.left,e+=this.coordAdjust.top),this.component.queryHit(t,e)}}),ge=wt.extend(ae,{options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,y0:null,x0:null,topDelta:null,leftDelta:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(e,n){this.options=n=n||{},this.sourceEl=e,this.parentEl=n.parentEl?t(n.parentEl):e.parent()},start:function(e){this.isFollowing||(this.isFollowing=!0,this.y0=E(e),this.x0=w(e),this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),D(e)?this.listenTo(t(document),"touchmove",this.handleMove):this.listenTo(t(document),"mousemove",this.handleMove))},stop:function(e,n){function i(){r.isAnimating=!1,r.removeElement(),r.top0=r.left0=null,n&&n()}var r=this,s=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,this.stopListeningTo(t(document)),e&&s&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:s,complete:i})):i())},getEl:function(){var t=this.el;return t||(t=this.el=this.sourceEl.clone().addClass(this.options.additionalClass||"").css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}),t.addClass("fc-unselectable"),t.appendTo(this.parentEl)),t},removeElement:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var t,e;this.getEl(),null===this.top0&&(t=this.sourceEl.offset(),e=this.el.offsetParent().offset(),this.top0=t.top-e.top,this.left0=t.left-e.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},handleMove:function(t){this.topDelta=E(t)-this.y0,this.leftDelta=w(t)-this.x0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),pe=jt.Grid=wt.extend(ae,ue,{hasDayInteractions:!0,view:null,isRTL:null,start:null,end:null,el:null,elsByFill:null,eventTimeFormat:null,displayEventTime:null,displayEventEnd:null,minResizeDuration:null,largeUnit:null,dayDragListener:null,segDragListener:null,segResizeListener:null,externalDragListener:null,constructor:function(t){this.view=t,this.isRTL=t.opt("isRTL"),this.elsByFill={},this.dayDragListener=this.buildDayDragListener(),this.initMouseIgnoring()},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventTime:function(){return!0},computeDisplayEventEnd:function(){return!0},setRange:function(t){this.start=t.start.clone(),this.end=t.end.clone(),this.rangeUpdated(),this.processRangeOptions()},rangeUpdated:function(){},processRangeOptions:function(){var t,e,n=this.view;this.eventTimeFormat=n.opt("eventTimeFormat")||n.opt("timeFormat")||this.computeEventTimeFormat(),t=n.opt("displayEventTime"),null==t&&(t=this.computeDisplayEventTime()),e=n.opt("displayEventEnd"),null==e&&(e=this.computeDisplayEventEnd()),this.displayEventTime=t,this.displayEventEnd=e},spanToSegs:function(t){},diffDates:function(t,e){return this.largeUnit?A(t,e,this.largeUnit):N(t,e)},prepareHits:function(){},releaseHits:function(){},queryHit:function(t,e){},getHitSpan:function(t){},getHitEl:function(t){},setElement:function(t){this.el=t,this.hasDayInteractions&&(b(t),this.bindDayHandler("touchstart",this.dayTouchStart),this.bindDayHandler("mousedown",this.dayMousedown)),this.bindSegHandlers(),this.bindGlobalHandlers()},bindDayHandler:function(e,n){var i=this;this.el.on(e,function(e){if(!t(e.target).is(i.segSelector+","+i.segSelector+" *,.fc-more,a[data-goto]"))return n.call(i,e)})},removeElement:function(){this.unbindGlobalHandlers(),this.clearDragListeners(),this.el.remove()},renderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},bindGlobalHandlers:function(){this.listenTo(t(document),{dragstart:this.externalDragStart,sortstart:this.externalDragStart})},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},dayMousedown:function(t){this.isIgnoringMouse||this.dayDragListener.startInteraction(t,{})},dayTouchStart:function(t){var e=this.view;(e.isSelected||e.selectedEvent)&&this.tempIgnoreMouse(),this.dayDragListener.startInteraction(t,{delay:this.view.opt("longPressDelay")})},buildDayDragListener:function(){var t,e,n=this,i=this.view,r=i.opt("selectable"),l=new fe(this,{scroll:i.opt("dragScroll"),interactionStart:function(){t=l.origHit,e=null},dragStart:function(){i.unselect()},hitOver:function(i,o,l){l&&(o||(t=null),r&&(e=n.computeSelection(n.getHitSpan(l),n.getHitSpan(i)),e?n.renderSelection(e):e===!1&&s()))},hitOut:function(){t=null,e=null,n.unrenderSelection()},hitDone:function(){o()},interactionEnd:function(r,s){s||(t&&!n.isIgnoringMouse&&i.triggerDayClick(n.getHitSpan(t),n.getHitEl(t),r),e&&i.reportSelection(e,r))}});return l},clearDragListeners:function(){this.dayDragListener.endInteraction(),this.segDragListener&&this.segDragListener.endInteraction(),this.segResizeListener&&this.segResizeListener.endInteraction(),this.externalDragListener&&this.externalDragListener.endInteraction()},renderEventLocationHelper:function(t,e){var n=this.fabricateHelperEvent(t,e);return this.renderHelper(n,e)},fabricateHelperEvent:function(t,e){var n=e?Z(e.event):{};return n.start=t.start.clone(),n.end=t.end?t.end.clone():null,n.allDay=null,this.view.calendar.normalizeEventDates(n),n.className=(n.className||[]).concat("fc-helper"),e||(n.editable=!1),n},renderHelper:function(t,e){},unrenderHelper:function(){},renderSelection:function(t){this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHighlight()},computeSelection:function(t,e){var n=this.computeSelectionSpan(t,e);return!(n&&!this.view.calendar.isSelectionSpanAllowed(n))&&n},computeSelectionSpan:function(t,e){var n=[t.start,t.end,e.start,e.end];return n.sort(st),{start:n[0].clone(),end:n[3].clone()}},renderHighlight:function(t){this.renderFill("highlight",this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderBusinessHours:function(){},unrenderBusinessHours:function(){},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},renderFill:function(t,e){},unrenderFill:function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},renderFillSegEls:function(e,n){var i,r=this,s=this[e+"SegEl"],o="",l=[];if(n.length){for(i=0;i"},getDayClasses:function(t){var e=this.view,n=e.calendar.getNow(),i=["fc-"+$t[t.day()]];return 1==e.intervalDuration.as("months")&&t.month()!=e.intervalStart.month()&&i.push("fc-other-month"),t.isSame(n,"day")?i.push("fc-today",e.highlightStateClass):t *",mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,isDraggingExternal:!1,segs:null,renderEvents:function(t){var e,n=[],i=[];for(e=0;el&&o.push({start:l,end:n.start}),l=n.end;return l=e.length?e[e.length-1]+1:e[n]},computeColHeadFormat:function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},sliceRangeByRow:function(t){var e,n,i,r,s,o=this.daysPerRow,l=this.view.computeDayRange(t),a=this.getDateDayIndex(l.start),u=this.getDateDayIndex(l.end.clone().subtract(1,"days")),d=[];for(e=0;e'+this.renderHeadTrHtml()+"
"},renderHeadIntroHtml:function(){return this.renderIntroHtml()},renderHeadTrHtml:function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""},renderHeadDateCellsHtml:function(){var t,e,n=[];for(t=0;t1?' colspan="'+e+'"':"")+(n?" "+n:"")+">"+i.buildGotoAnchorHtml({date:t,forceOff:this.rowCnt>1||1===this.colCnt},tt(t.format(this.colHeadFormat)))+""},renderBgTrHtml:function(t){return""+(this.isRTL?"":this.renderBgIntroHtml(t))+this.renderBgCellsHtml(t)+(this.isRTL?this.renderBgIntroHtml(t):"")+""},renderBgIntroHtml:function(t){return this.renderIntroHtml()},renderBgCellsHtml:function(t){var e,n,i=[];for(e=0;e"},renderIntroHtml:function(){},bookendCells:function(t){var e=this.renderIntroHtml();e&&(this.isRTL?t.append(e):t.prepend(e))}},me=jt.DayGrid=pe.extend(ve,{numbersVisible:!1,bottomCoordPadding:0,rowEls:null,cellEls:null,helperEls:null,rowCoordCache:null,colCoordCache:null,renderDates:function(t){var e,n,i=this.view,r=this.rowCnt,s=this.colCnt,o="";for(e=0;e
'+this.renderBgTrHtml(t)+'
'+(this.numbersVisible?""+this.renderNumberTrHtml(t)+"":"")+"
"},renderNumberTrHtml:function(t){return""+(this.isRTL?"":this.renderNumberIntroHtml(t))+this.renderNumberCellsHtml(t)+(this.isRTL?this.renderNumberIntroHtml(t):"")+""},renderNumberIntroHtml:function(t){return this.renderIntroHtml()},renderNumberCellsHtml:function(t){var e,n,i=[];for(e=0;e',this.view.cellWeekNumbersVisible&&t.day()==n&&(i+=this.view.buildGotoAnchorHtml({date:t,type:"week"},{class:"fc-week-number"},t.format("w"))),this.view.dayNumbersVisible&&(i+=this.view.buildGotoAnchorHtml(t,{class:"fc-day-number"},t.date())),i+=""):""},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},rangeUpdated:function(){this.updateDayTable()},spanToSegs:function(t){var e,n,i=this.sliceRangeByRow(t);for(e=0;e');o=n&&n.row===e?n.el.position().top:l.find(".fc-content-skeleton tbody").position().top,a.css("top",o).find("table").append(i[e].tbodyEl),l.append(a),r.push(a[0])}),this.helperEls=t(r)},unrenderHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(e,n,i){var r,s,o,l=[];for(n=this.renderFillSegEls(e,n),r=0;r
'),s=r.find("tr"),l>0&&s.append(''),s.append(n.el.attr("colspan",a-l)),a'),this.bookendCells(s),r}});me.mixin({rowStructs:null,unrenderEvents:function(){this.removeSegPopover(),pe.prototype.unrenderEvents.apply(this,arguments)},getEventSegs:function(){return pe.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(e){var n=t.grep(e,function(t){return t.event.allDay});return pe.prototype.renderBgSegs.call(this,n)},renderFgSegs:function(e){var n;return e=this.renderFgSegEls(e),n=this.rowStructs=this.renderSegRows(e),this.rowEls.each(function(e,i){t(i).find(".fc-content-skeleton > table").append(n[e].tbodyEl)}),e},unrenderFgSegs:function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;n'+tt(n)+"")),i=''+(tt(s.title||"")||" ")+"",'
'+(this.isRTL?i+" "+c:c+" "+i)+"
"+(l?'
':"")+(a?'
':"")+""},renderSegRow:function(e,n){function i(e){for(;o"),l.append(d)),v[r][o]=d,m[r][o]=d,o++}var r,s,o,l,a,u,d,c=this.colCnt,h=this.buildSegLevels(n),f=Math.max(1,h.length),g=t(""),p=[],v=[],m=[];for(r=0;r"),p.push([]),v.push([]),m.push([]),s)for(a=0;a').append(u.el),u.leftCol!=u.rightCol?d.attr("colspan",u.rightCol-u.leftCol+1):m[r][o]=d;o<=u.rightCol;)v[r][o]=d,p[r][o]=u,o++;l.append(d)}i(c),this.bookendCells(l),g.append(l)}return{row:e,tbodyEl:g,cellMatrix:v,segMatrix:p,segLevels:h,segs:n}},buildSegLevels:function(t){var e,n,i,r=[];for(this.sortEventSegs(t),e=0;e td > :first-child").each(n),r.position().top+s>l)return i;return!1},limitRow:function(e,n){function i(i){for(;D").append(y),h.append(m),E.push(m[0])),D++}var r,s,o,l,a,u,d,c,h,f,g,p,v,m,y,S=this,w=this.rowStructs[e],E=[],D=0;if(n&&n').attr("rowspan",f),u=c[p],y=this.renderMoreLink(e,a.leftCol+p,[a].concat(u)),m=t("
").append(y),v.append(m),g.push(v[0]),E.push(v[0]);h.addClass("fc-limited").after(t(g)),o.push(h[0])}}i(this.colCnt),w.moreEls=t(E),w.limitedEls=t(o)}},unlimitRow:function(t){var e=this.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},renderMoreLink:function(e,n,i){var r=this,s=this.view;return t('').text(this.getMoreLinkText(i.length)).on("click",function(o){var l=s.opt("eventLimitClick"),a=r.getCellDate(e,n),u=t(this),d=r.getCellEl(e,n),c=r.getCellSegs(e,n),h=r.resliceDaySegs(c,a),f=r.resliceDaySegs(i,a);"function"==typeof l&&(l=s.trigger("eventLimitClick",null,{date:a,dayEl:d,moreEl:u,segs:h,hiddenSegs:f},o)),"popover"===l?r.showSegPopover(e,n,u,h):"string"==typeof l&&s.calendar.zoomTo(a,l)})},showSegPopover:function(t,e,n,i){var r,s,o=this,l=this.view,a=n.parent();r=1==this.rowCnt?l.el:this.rowEls.eq(t),s={className:"fc-more-popover",content:this.renderSegPopoverContent(t,e,i),parentEl:this.view.el,top:r.offset().top,autoHide:!0,viewportConstrain:l.opt("popoverViewportConstrain"),hide:function(){o.segPopover.removeElement(),o.segPopover=null,o.popoverSegs=null}},this.isRTL?s.right=a.offset().left+a.outerWidth()+1:s.left=a.offset().left-1,this.segPopover=new de(s),this.segPopover.show(),this.bindSegHandlersToEl(this.segPopover.el)},renderSegPopoverContent:function(e,n,i){var r,s=this.view,o=s.opt("theme"),l=this.getCellDate(e,n).format(s.opt("dayPopoverFormat")),a=t('
'+tt(l)+'
'),u=a.find(".fc-event-container");for(i=this.renderFgSegEls(i,!0),this.popoverSegs=i,r=0;r'+this.renderBgTrHtml(0)+'
'+this.renderSlatRowHtml()+"
"},renderSlatRowHtml:function(){for(var t,n,i,r=this.view,s=this.isRTL,o="",l=e.duration(+this.minTime);l"+(n?""+tt(t.format(this.labelFormat))+"":"")+"",o+='"+(s?"":i)+''+(s?i:"")+"",l.add(this.slotDuration);return o},processOptions:function(){var n,i=this.view,r=i.opt("slotDuration"),s=i.opt("snapDuration");r=e.duration(r),s=s?e.duration(s):r,this.slotDuration=r,this.snapDuration=s,this.snapsPerSlot=r/s,this.minResizeDuration=s,this.minTime=e.duration(i.opt("minTime")),this.maxTime=e.duration(i.opt("maxTime")),n=i.opt("slotLabelFormat"),t.isArray(n)&&(n=n[n.length-1]),this.labelFormat=n||i.opt("smallTimeFormat"),n=i.opt("slotLabelInterval"),this.labelInterval=n?e.duration(n):this.computeLabelInterval(r)},computeLabelInterval:function(t){var n,i,r;for(n=Ne.length-1;n>=0;n--)if(i=e.duration(Ne[n]),r=_(i,t),ot(r)&&r>1)return i;return e.duration(t)},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},prepareHits:function(){this.colCoordCache.build(),this.slatCoordCache.build()},releaseHits:function(){this.colCoordCache.clear()},queryHit:function(t,e){var n=this.snapsPerSlot,i=this.colCoordCache,r=this.slatCoordCache;if(i.isLeftInBounds(t)&&r.isTopInBounds(e)){var s=i.getHorizontalIndex(t),o=r.getVerticalIndex(e);if(null!=s&&null!=o){var l=r.getTopOffset(o),a=r.getHeight(o),u=(e-l)/a,d=Math.floor(u*n),c=o*n+d,h=l+d/n*a,f=l+(d+1)/n*a;return{col:s,snap:c,component:this,left:i.getLeftOffset(s),right:i.getRightOffset(s),top:h,bottom:f}}}},getHitSpan:function(t){var e,n=this.getCellDate(0,t.col),i=this.computeSnapTime(t.snap);return n.time(i),e=n.clone().add(this.snapDuration),{start:n,end:e}},getHitEl:function(t){return this.colEls.eq(t.col)},rangeUpdated:function(){this.updateDayTable()},computeSnapTime:function(t){return e.duration(this.minTime+this.snapDuration*t)},spanToSegs:function(t){var e,n=this.sliceRangeByTimes(t);for(e=0;e
').css("top",r).appendTo(this.colContainerEls.eq(i[n].col))[0]);i.length>0&&s.push(t('
').css("top",r).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=t(s)},unrenderNowIndicator:function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},renderSelection:function(t){this.view.opt("selectHelper")?this.renderEventLocationHelper(t):this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHelper(),this.unrenderHighlight()},renderHighlight:function(t){this.renderHighlightSegs(this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderHighlightSegs()}});ye.mixin({colContainerEls:null,fgContainerEls:null,bgContainerEls:null,helperContainerEls:null,highlightContainerEls:null,businessContainerEls:null,fgSegs:null,bgSegs:null,helperSegs:null,highlightSegs:null,businessSegs:null,renderContentSkeleton:function(){var e,n,i="";for(e=0;e
';n=t('
'+i+"
"),this.colContainerEls=n.find(".fc-content-col"),this.helperContainerEls=n.find(".fc-helper-container"),this.fgContainerEls=n.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=n.find(".fc-bgevent-container"),this.highlightContainerEls=n.find(".fc-highlight-container"),this.businessContainerEls=n.find(".fc-business-container"),this.bookendCells(n.find("tr")),this.el.append(n)},renderFgSegs:function(t){return t=this.renderFgSegsIntoContainers(t,this.fgContainerEls),this.fgSegs=t,t},unrenderFgSegs:function(){this.unrenderNamedSegs("fgSegs")},renderHelperSegs:function(e,n){var i,r,s,o=[];for(e=this.renderFgSegsIntoContainers(e,this.helperContainerEls),i=0;i
'+(n?'
'+tt(n)+"
":"")+(o.title?'
'+tt(o.title)+"
":"")+'
'+(u?'
':"")+""},updateSegVerticals:function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},computeSegVerticals:function(t){var e,n;for(e=0;e1?"ll":"LL"},formatRange:function(t,e,n){var i=t.end;return i.hasTime()||(i=i.clone().subtract(1)),pt(t.start,i,e,n,this.opt("isRTL"))},getAllDayHtml:function(){return this.opt("allDayHtml")||tt(this.opt("allDayText"))},buildGotoAnchorHtml:function(e,n,i){var r,s,o,l;return t.isPlainObject(e)?(r=e.date,s=e.type,o=e.forceOff):r=e,r=jt.moment(r),l={date:r.format("YYYY-MM-DD"),type:s||"day"},"string"==typeof n&&(i=n,n=null),n=n?" "+it(n):"",i=i||"",!o&&this.opt("navLinks")?"'+i+"":""+i+""},setElement:function(t){this.el=t,this.bindGlobalHandlers()},removeElement:function(){this.clear(),this.isSkeletonRendered&&(this.unrenderSkeleton(),this.isSkeletonRendered=!1),this.unbindGlobalHandlers(),this.el.remove()},display:function(t,e){var n=this,i=null;return null!=e&&this.displaying&&(i=this.queryScroll()),this.calendar.freezeContentHeight(),ut(this.clear(),function(){return n.displaying=ut(n.displayView(t),function(){null!=e?n.setScroll(e):n.forceScroll(n.computeInitialScroll(i)),n.calendar.unfreezeContentHeight(),n.triggerRender()})})},clear:function(){var e=this,n=this.displaying;return n?ut(n,function(){return e.displaying=null,e.clearEvents(),e.clearView()}):t.when()},displayView:function(t){this.isSkeletonRendered||(this.renderSkeleton(),this.isSkeletonRendered=!0),t&&this.setDate(t),this.render&&this.render(),this.renderDates(),this.updateSize(),this.renderBusinessHours(),this.startNowIndicator()},clearView:function(){this.unselect(),this.stopNowIndicator(),this.triggerUnrender(),this.unrenderBusinessHours(),this.unrenderDates(),this.destroy&&this.destroy()},renderSkeleton:function(){},unrenderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},triggerRender:function(){this.trigger("viewRender",this,this,this.el)},triggerUnrender:function(){this.trigger("viewDestroy",this,this,this.el)},bindGlobalHandlers:function(){this.listenTo(t(document),"mousedown",this.handleDocumentMousedown),this.listenTo(t(document),"touchstart",this.processUnselect)},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},initThemingProps:function(){var t=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=t+"-widget-header",this.widgetContentClass=t+"-widget-content",this.highlightStateClass=t+"-state-highlight"},renderBusinessHours:function(){},unrenderBusinessHours:function(){},startNowIndicator:function(){var t,n,i,r=this;this.opt("nowIndicator")&&(t=this.getNowIndicatorUnit(),t&&(n=lt(this,"updateNowIndicator"),this.initialNowDate=this.calendar.getNow(),this.initialNowQueriedMs=+new Date,this.renderNowIndicator(this.initialNowDate),this.isNowIndicatorRendered=!0,i=this.initialNowDate.clone().startOf(t).add(1,t)-this.initialNowDate,this.nowIndicatorTimeoutID=setTimeout(function(){r.nowIndicatorTimeoutID=null,n(),i=+e.duration(1,t),i=Math.max(100,i),r.nowIndicatorIntervalID=setInterval(n,i)},i)))},updateNowIndicator:function(){this.isNowIndicatorRendered&&(this.unrenderNowIndicator(),this.renderNowIndicator(this.initialNowDate.clone().add(new Date-this.initialNowQueriedMs)))},stopNowIndicator:function(){this.isNowIndicatorRendered&&(this.nowIndicatorTimeoutID&&(clearTimeout(this.nowIndicatorTimeoutID),this.nowIndicatorTimeoutID=null),this.nowIndicatorIntervalID&&(clearTimeout(this.nowIndicatorIntervalID),this.nowIndicatorIntervalID=null),this.unrenderNowIndicator(),this.isNowIndicatorRendered=!1)},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},updateSize:function(t){var e;t&&(e=this.queryScroll()),this.updateHeight(t),this.updateWidth(t),this.updateNowIndicator(),t&&this.setScroll(e)},updateWidth:function(t){},updateHeight:function(t){var e=this.calendar;this.setHeight(e.getSuggestedViewHeight(),e.isHeightAuto())},setHeight:function(t,e){},computeInitialScroll:function(t){return 0},queryScroll:function(){},setScroll:function(t){},forceScroll:function(t){var e=this;this.setScroll(t),setTimeout(function(){e.setScroll(t)},0)},displayEvents:function(t){var e=this.queryScroll();this.clearEvents(),this.renderEvents(t),this.isEventsRendered=!0,this.setScroll(e),this.triggerEventRender()},clearEvents:function(){var t;this.isEventsRendered&&(t=this.queryScroll(),this.triggerEventUnrender(),this.destroyEvents&&this.destroyEvents(),this.unrenderEvents(),this.setScroll(t),this.isEventsRendered=!1)},renderEvents:function(t){},unrenderEvents:function(){},triggerEventRender:function(){this.renderedEventSegEach(function(t){this.trigger("eventAfterRender",t.event,t.event,t.el)}),this.trigger("eventAfterAllRender")},triggerEventUnrender:function(){this.renderedEventSegEach(function(t){this.trigger("eventDestroy",t.event,t.event,t.el)})},resolveEventEl:function(e,n){var i=this.trigger("eventRender",e,e,n);return i===!1?n=null:i&&i!==!0&&(n=t(i)),n},showEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","")},t)},hideEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","hidden")},t)},renderedEventSegEach:function(t,e){var n,i=this.getEventSegs();for(n=0;n=this.nextDayThreshold&&r.add(1,"days")),(!i||r<=n)&&(r=n.clone().add(1,"days")),{start:n,end:r}},isMultiDayEvent:function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1}}),we=jt.Scroller=wt.extend({el:null,scrollEl:null,overflowX:null,overflowY:null,constructor:function(t){t=t||{},this.overflowX=t.overflowX||t.overflow||"auto",this.overflowY=t.overflowY||t.overflow||"auto"},render:function(){this.el=this.renderEl(),this.applyOverflow()},renderEl:function(){return this.scrollEl=t('
')},clear:function(){this.setHeight("auto"),this.applyOverflow()},destroy:function(){this.el.remove()},applyOverflow:function(){this.scrollEl.css({"overflow-x":this.overflowX,"overflow-y":this.overflowY})},lockOverflow:function(t){var e=this.overflowX,n=this.overflowY;t=t||this.getScrollbarWidths(),"auto"===e&&(e=t.top||t.bottom||this.scrollEl[0].scrollWidth-1>this.scrollEl[0].clientWidth?"scroll":"hidden"),"auto"===n&&(n=t.left||t.right||this.scrollEl[0].scrollHeight-1>this.scrollEl[0].clientHeight?"scroll":"hidden"),this.scrollEl.css({"overflow-x":e,"overflow-y":n})},setHeight:function(t){this.scrollEl.height(t)},getScrollTop:function(){return this.scrollEl.scrollTop()},setScrollTop:function(t){this.scrollEl.scrollTop(t)},getClientWidth:function(){return this.scrollEl[0].clientWidth},getClientHeight:function(){return this.scrollEl[0].clientHeight},getScrollbarWidths:function(){return p(this.scrollEl)}}),Ee=jt.Calendar=wt.extend({dirDefaults:null,localeDefaults:null,overrides:null,dynamicOverrides:null,options:null,viewSpecCache:null,view:null,header:null,loadingLevel:0,constructor:Ot,initialize:function(){},populateOptionsHash:function(){var t,e,i,r;t=J(this.dynamicOverrides.locale,this.overrides.locale),e=De[t],e||(t=Ee.defaults.locale,e=De[t]||{}),i=J(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,Ee.defaults.isRTL),r=i?Ee.rtlDefaults:{},this.dirDefaults=r,this.localeDefaults=e,this.options=n([Ee.defaults,r,e,this.overrides,this.dynamicOverrides]),Vt(this.options)},getViewSpec:function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},getUnitViewSpec:function(e){var n,i,r;if(t.inArray(e,Xt)!=-1)for(n=this.header.getViewsWithButtons(),t.each(jt.views,function(t){n.push(t)}),i=0;i=n&&e.end<=i},Ee.prototype.getPeerEvents=function(t,e){var n,i,r=this.getEventCache(),s=[];for(n=0;nn};var Re={id:"_fcBusinessHours",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"};Ee.prototype.getCurrentBusinessHourEvents=function(t){return this.computeBusinessHourEvents(t,this.options.businessHours)},Ee.prototype.computeBusinessHourEvents=function(e,n){return n===!0?this.expandBusinessHourEvents(e,[{}]):t.isPlainObject(n)?this.expandBusinessHourEvents(e,[n]):t.isArray(n)?this.expandBusinessHourEvents(e,n,!0):[]},Ee.prototype.expandBusinessHourEvents=function(e,n,i){var r,s,o=this.getView(),l=[];for(r=0;r1,this.opt("weekNumbers")&&(this.opt("weekNumbersWithinDays")?(this.cellWeekNumbersVisible=!0,this.colWeekNumbersVisible=!1):(this.cellWeekNumbersVisible=!1,this.colWeekNumbersVisible=!0)),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.cellWeekNumbersVisible||this.colWeekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-day-grid-container"),n=t('
').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.dayGrid.setElement(n),this.dayGrid.renderDates(this.hasRigidRows())},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.dayGrid.renderHeadHtml()),this.headRowEl=this.headContainerEl.find(".fc-row")},unrenderDates:function(){this.dayGrid.unrenderDates(),this.dayGrid.removeElement(),this.scroller.destroy()},renderBusinessHours:function(){this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.dayGrid.unrenderBusinessHours()},renderSkeletonHtml:function(){return'
'},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},updateWidth:function(){this.colWeekNumbersVisible&&(this.weekNumberWidth=u(this.el.find(".fc-week-number")))},setHeight:function(t,e){var n,s,o=this.opt("eventLimit");this.scroller.clear(),r(this.headRowEl),this.dayGrid.removeSegPopover(),o&&"number"==typeof o&&this.dayGrid.limitRows(o),n=this.computeScrollerHeight(t),this.setGridHeight(n,e),o&&"number"!=typeof o&&this.dayGrid.limitRows(o),e||(this.scroller.setHeight(n),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(i(this.headRowEl,s),n=this.computeScrollerHeight(t),this.scroller.setHeight(n)),this.scroller.lockOverflow(s))},computeScrollerHeight:function(t){return t-d(this.el,this.scroller.el)},setGridHeight:function(t,e){e?a(this.dayGrid.rowEls):l(this.dayGrid.rowEls,t,!0)},queryScroll:function(){return this.scroller.getScrollTop()},setScroll:function(t){this.scroller.setScrollTop(t)},prepareHits:function(){this.dayGrid.prepareHits()},releaseHits:function(){this.dayGrid.releaseHits()},queryHit:function(t,e){return this.dayGrid.queryHit(t,e)},getHitSpan:function(t){return this.dayGrid.getHitSpan(t)},getHitEl:function(t){return this.dayGrid.getHitEl(t)},renderEvents:function(t){this.dayGrid.renderEvents(t),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},unrenderEvents:function(){this.dayGrid.unrenderEvents()},renderDrag:function(t,e){return this.dayGrid.renderDrag(t,e)},unrenderDrag:function(){this.dayGrid.unrenderDrag()},renderSelection:function(t){this.dayGrid.renderSelection(t)},unrenderSelection:function(){this.dayGrid.unrenderSelection()}}),ke={renderHeadIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'"+tt(t.opt("weekNumberTitle"))+"":""},renderNumberIntroHtml:function(t){var e=this.view,n=this.getCellDate(t,0);return e.colWeekNumbersVisible?'"+e.buildGotoAnchorHtml({date:n,type:"week",forceOff:1===this.colCnt},n.format("w"))+"":""},renderBgIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""},renderIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""}},Me=jt.MonthView=Ie.extend({computeRange:function(t){var e,n=Ie.prototype.computeRange.call(this,t);return this.isFixedWeeks()&&(e=Math.ceil(n.end.diff(n.start,"weeks",!0)),n.end.add(6-e,"weeks")),n},setGridHeight:function(t,e){e&&(t*=this.rowCnt/6),l(this.dayGrid.rowEls,t,!e)},isFixedWeeks:function(){return this.opt("fixedWeekCount")}});Ut.basic={class:Ie},Ut.basicDay={type:"basic",duration:{days:1}},Ut.basicWeek={type:"basic",duration:{weeks:1}},Ut.month={class:Me,duration:{months:1},defaults:{fixedWeekCount:!0}};var Le=jt.AgendaView=Se.extend({scroller:null,timeGridClass:ye,timeGrid:null,dayGridClass:me,dayGrid:null,axisWidth:null,headContainerEl:null,noScrollRowEls:null,bottomRuleEl:null,initialize:function(){this.timeGrid=this.instantiateTimeGrid(),this.opt("allDaySlot")&&(this.dayGrid=this.instantiateDayGrid()),this.scroller=new we({overflowX:"hidden",overflowY:"auto"})},instantiateTimeGrid:function(){var t=this.timeGridClass.extend(Be);return new t(this)},instantiateDayGrid:function(){var t=this.dayGridClass.extend(ze);return new t(this)},setRange:function(t){Se.prototype.setRange.call(this,t),this.timeGrid.setRange(t),this.dayGrid&&this.dayGrid.setRange(t)},renderDates:function(){this.el.addClass("fc-agenda-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-time-grid-container"),n=t('
').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.timeGrid.setElement(n),this.timeGrid.renderDates(),this.bottomRuleEl=t('
').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.timeGrid.renderHeadHtml())},unrenderDates:function(){this.timeGrid.unrenderDates(),this.timeGrid.removeElement(),this.dayGrid&&(this.dayGrid.unrenderDates(),this.dayGrid.removeElement()),this.scroller.destroy()},renderSkeletonHtml:function(){return'
'+(this.dayGrid?'

':"")+"
"},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},renderBusinessHours:function(){this.timeGrid.renderBusinessHours(),this.dayGrid&&this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.timeGrid.unrenderBusinessHours(),this.dayGrid&&this.dayGrid.unrenderBusinessHours()},getNowIndicatorUnit:function(){return this.timeGrid.getNowIndicatorUnit()},renderNowIndicator:function(t){this.timeGrid.renderNowIndicator(t)},unrenderNowIndicator:function(){this.timeGrid.unrenderNowIndicator()},updateSize:function(t){this.timeGrid.updateSize(t),Se.prototype.updateSize.call(this,t)},updateWidth:function(){this.axisWidth=u(this.el.find(".fc-axis"))},setHeight:function(t,e){var n,s,o;this.bottomRuleEl.hide(),this.scroller.clear(),r(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.removeSegPopover(),n=this.opt("eventLimit"),n&&"number"!=typeof n&&(n=Fe),n&&this.dayGrid.limitRows(n)),e||(s=this.computeScrollerHeight(t),this.scroller.setHeight(s),o=this.scroller.getScrollbarWidths(),(o.left||o.right)&&(i(this.noScrollRowEls,o),s=this.computeScrollerHeight(t),this.scroller.setHeight(s)),this.scroller.lockOverflow(o),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:this.start,type:"week",forceOff:this.colCnt>1},tt(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){var t=this.view;return'"}},ze={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){var t=this.view;return'"}},Fe=5,Ne=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}];Ut.agenda={class:Le,defaults:{allDaySlot:!0,slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0}},Ut.agendaDay={type:"agenda",duration:{days:1}},Ut.agendaWeek={type:"agenda",duration:{weeks:1}};var Ge=Se.extend({grid:null,scroller:null,initialize:function(){this.grid=new Ae(this),this.scroller=new we({overflowX:"hidden",overflowY:"auto"})},setRange:function(t){Se.prototype.setRange.call(this,t),this.grid.setRange(t)},renderSkeleton:function(){this.el.addClass("fc-list-view "+this.widgetContentClass),this.scroller.render(),this.scroller.el.appendTo(this.el),this.grid.setElement(this.scroller.scrollEl)},unrenderSkeleton:function(){this.scroller.destroy()},setHeight:function(t,e){this.scroller.setHeight(this.computeScrollerHeight(t))},computeScrollerHeight:function(t){return t-d(this.el,this.scroller.el)},renderEvents:function(t){this.grid.renderEvents(t)},unrenderEvents:function(){this.grid.unrenderEvents()},isEventResizable:function(t){return!1},isEventDraggable:function(t){return!1}}),Ae=pe.extend({segSelector:".fc-list-item",hasDayInteractions:!1,spanToSegs:function(t){for(var e,n=this.view,i=n.start.clone().time(0),r=0,s=[];i
'+tt(this.view.opt("noEventsMessage"))+"
")},renderSegList:function(e){var n,i,r,s=this.groupSegsByDay(e),o=t('
'),l=o.find("tbody");for(n=0;n'+(n?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},tt(t.format(n))):"")+(i?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},tt(t.format(i))):"")+""},fgSegHtml:function(t){var e,n=this.view,i=["fc-list-item"].concat(this.getSegCustomClasses(t)),r=this.getSegBackgroundColor(t),s=t.event,o=s.url;return e=s.allDay?n.getAllDayHtml():n.isMultiDayEvent(s)?t.isStart||t.isEnd?tt(this.getEventTimeText(t)):n.getAllDayHtml():tt(this.getEventTimeText(s)),o&&i.push("fc-has-url"),''+(this.displayEventTime?''+(e||"")+"":"")+'"+tt(t.event.title||"")+""}});return Ut.list={class:Ge,buttonTextKey:"list",defaults:{buttonText:"list",listDayFormat:"LL",noEventsMessage:"No events to display"}},Ut.listDay={type:"list",duration:{days:1},defaults:{listDayFormat:"dddd"}},Ut.listWeek={type:"list",duration:{weeks:1},defaults:{listDayFormat:"dddd",listDayAltFormat:"LL"}},Ut.listMonth={type:"list",duration:{month:1},defaults:{listDayAltFormat:"dddd"}},Ut.listYear={type:"list",duration:{year:1},defaults:{listDayAltFormat:"dddd"}},jt}); \ No newline at end of file +!function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):"object"==typeof exports?module.exports=t(require("jquery"),require("moment")):t(jQuery,moment)}(function(t,e){function n(t){return q(t,$t)}function i(t,e){e.left&&t.css({"border-left-width":1,"margin-left":e.left-1}),e.right&&t.css({"border-right-width":1,"margin-right":e.right-1})}function r(t){t.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function s(){t("body").addClass("fc-not-allowed")}function o(){t("body").removeClass("fc-not-allowed")}function l(e,n,i){var r=Math.floor(n/e.length),s=Math.floor(n-r*(e.length-1)),o=[],l=[],u=[],c=0;a(e),e.each(function(n,i){var a=n===e.length-1?s:r,d=t(i).outerHeight(!0);d *").each(function(e,i){var r=t(i).outerWidth();r>n&&(n=r)}),n++,e.width(n),n}function c(t,e){var n,i=t.add(e);return i.css({position:"relative",left:-1}),n=t.outerHeight()-e.outerHeight(),i.css({position:"",left:""}),n}function d(e){var n=e.css("position"),i=e.parents().filter(function(){var e=t(this);return/(auto|scroll)/.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==n&&i.length?i:t(e[0].ownerDocument||document)}function h(t,e){var n=t.offset(),i=n.left-(e?e.left:0),r=n.top-(e?e.top:0);return{left:i,right:i+t.outerWidth(),top:r,bottom:r+t.outerHeight()}}function f(t,e){var n=t.offset(),i=p(t),r=n.left+y(t,"border-left-width")+i.left-(e?e.left:0),s=n.top+y(t,"border-top-width")+i.top-(e?e.top:0);return{left:r,right:r+t[0].clientWidth,top:s,bottom:s+t[0].clientHeight}}function g(t,e){var n=t.offset(),i=n.left+y(t,"border-left-width")+y(t,"padding-left")-(e?e.left:0),r=n.top+y(t,"border-top-width")+y(t,"padding-top")-(e?e.top:0);return{left:i,right:i+t.width(),top:r,bottom:r+t.height()}}function p(t){var e=t.innerWidth()-t[0].clientWidth,n={left:0,right:0,top:0,bottom:t.innerHeight()-t[0].clientHeight};return v()&&"rtl"==t.css("direction")?n.left=e:n.right=e,n}function v(){return null===Qt&&(Qt=m()),Qt}function m(){var e=t("
").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),n=e.children(),i=n.offset().left>e.offset().left;return e.remove(),i}function y(t,e){return parseFloat(t.css(e))||0}function S(t){return 1==t.which&&!t.ctrlKey}function w(t){if(void 0!==t.pageX)return t.pageX;var e=t.originalEvent.touches;return e?e[0].pageX:void 0}function E(t){if(void 0!==t.pageY)return t.pageY;var e=t.originalEvent.touches;return e?e[0].pageY:void 0}function b(t){return/^touch/.test(t.type)}function D(t){t.addClass("fc-unselectable").on("selectstart",T)}function T(t){t.preventDefault()}function C(t){return!!window.addEventListener&&(window.addEventListener("scroll",t,!0),!0)}function H(t){return!!window.removeEventListener&&(window.removeEventListener("scroll",t,!0),!0)}function R(t,e){var n={left:Math.max(t.left,e.left),right:Math.min(t.right,e.right),top:Math.max(t.top,e.top),bottom:Math.min(t.bottom,e.bottom)};return n.lefta&&o=a?(n=o.clone(),r=!0):(n=a.clone(),r=!1),l<=u?(i=l.clone(),s=!0):(i=u.clone(),s=!1),{start:n,end:i,isStart:r,isEnd:s}}function N(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days"),ms:t.time()-n.time()})}function G(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days")})}function O(t,n,i){return e.duration(Math.round(t.diff(n,i,!0)),i)}function A(t,e){var n,i,r;for(n=0;n=1&&ot(r)));n++);return i}function V(t,n,i){return null!=i?i.diff(n,t,!0):e.isDuration(n)?n.as(t):n.end.diff(n.start,t,!0)}function P(t,e,n){var i;return W(n)?(e-t)/n:(i=n.asMonths(),Math.abs(i)>=1&&ot(i)?e.diff(t,"months",!0)/i:e.diff(t,"days",!0)/n.asDays())}function _(t,e){var n,i;return W(t)||W(e)?t/e:(n=t.asMonths(),i=e.asMonths(),Math.abs(n)>=1&&ot(n)&&Math.abs(i)>=1&&ot(i)?n/i:t.asDays()/e.asDays())}function Y(t,n){var i;return W(t)?e.duration(t*n):(i=t.asMonths(),Math.abs(i)>=1&&ot(i)?e.duration({months:i*n}):e.duration({days:t.asDays()*n}))}function W(t){return Boolean(t.hours()||t.minutes()||t.seconds()||t.milliseconds())}function U(t){return"[object Date]"===Object.prototype.toString.call(t)||t instanceof Date}function j(t){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(t)}function q(t,e){var n,i,r,s,o,l,a={};if(e)for(n=0;n=0;s--)if(o=t[s][i],"object"==typeof o)r.unshift(o);else if(void 0!==o){a[i]=o;break}r.length&&(a[i]=q(r))}for(n=t.length-1;n>=0;n--){l=t[n];for(i in l)i in a||(a[i]=l[i])}return a}function Z(t){var e=function(){};return e.prototype=t,new e}function $(t,e){for(var n in t)Q(t,n)&&(e[n]=t[n])}function Q(t,e){return Jt.call(t,e)}function X(e){return/undefined|null|boolean|number|string/.test(t.type(e))}function K(e,n,i){if(t.isFunction(e)&&(e=[e]),e){var r,s;for(r=0;r/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
")}function et(t){return t.replace(/&.*?;/g,"")}function nt(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+":"+e)}),n.join(";")}function it(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+'="'+tt(e)+'"')}),n.join(" ")}function rt(t){return t.charAt(0).toUpperCase()+t.slice(1)}function st(t,e){return t-e}function ot(t){return t%1===0}function lt(t,e){var n=t[e];return function(){return n.apply(t,arguments)}}function at(t,e,n){var i,r,s,o,l,a=function(){var u=+new Date-o;uo&&(s=vt(t,e,u,c,n[l]),s!==!1);l--)h=s+h;for(a=o;a<=l;a++)f+=ft(t,n[a]),g+=ft(e,n[a]);return(f||g)&&(p=r?g+i+f:f+i+g),d+p+h}function vt(t,e,n,i,r){var s,o;return"string"==typeof r?r:!!((s=r.token)&&(o=oe[s.charAt(0)],o&&n.isSame(i,o)))&&ct(t,s)}function mt(t){return t in le?le[t]:le[t]=yt(t)}function yt(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push(e[1]):e[2]?n.push({maybe:yt(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push(e[5]);return n}function St(){}function wt(t,e){var n;return Q(e,"constructor")&&(n=e.constructor),"function"!=typeof n&&(n=e.constructor=function(){t.apply(this,arguments)}),n.prototype=Z(t.prototype),$(e,n.prototype),$(t,n),n}function Et(t,e){$(e,t.prototype)}function bt(e){var n=t.Deferred(),i=n.promise();if("function"==typeof e&&e(function(t){bt.immediate&&(i._value=t),n.resolve(t)},function(){n.reject()}),bt.immediate){var r=i.then;i.then=function(t,e){var n=i.state();if("resolved"===n){if("function"==typeof t)return bt.resolve(t(i._value))}else if("rejected"===n&&"function"==typeof e)return e(),i;return r.call(i,t,e)}}return i}function Dt(t){function e(t){return new bt(function(e){var i=function(){bt.resolve(t()).then(e).then(function(){n.shift(),n.length&&n[0]()})};n.push(i),1===n.length&&i()})}var n=[];this.add="number"==typeof t?at(e,t):e,this.addQuickly=e}function Tt(t,e){return!t&&!e||!(!t||!e)&&(t.component===e.component&&Ct(t,e)&&Ct(e,t))}function Ct(t,e){for(var n in t)if(!/^(component|left|right|top|bottom)$/.test(n)&&t[n]!==e[n])return!1;return!0}function Ht(t){return{start:t.start.clone(),end:t.end?t.end.clone():null,allDay:t.allDay}}function Rt(t){var e=It(t);return"background"===e||"inverse-background"===e}function xt(t){return"inverse-background"===It(t)}function It(t){return J((t.source||{}).rendering,t.rendering)}function kt(t){var e,n,i={};for(e=0;e=t.leftCol)return!0;return!1}function zt(t,e){return t.leftCol-e.leftCol}function Ft(t){var e,n,i,r=[];for(e=0;ee.top&&t.top"),g.append(o("left")).append(o("right")).append(o("center")).append('
')):s()}function s(){g&&(g.remove(),g=f.el=null)}function o(i){var r=t('
'),s=n.layout[i];return s&&t.each(s.split(" "),function(n){var i,s=t(),o=!0;t.each(this.split(","),function(n,i){var r,l,a,u,c,d,h,f,g,m;"title"==i?(s=s.add(t("

 

")),o=!1):((r=(e.options.customButtons||{})[i])?(a=function(t){r.click&&r.click.call(m[0],t)},u="",c=r.text):(l=e.getViewSpec(i))?(a=function(){e.changeView(i)},v.push(i),u=l.buttonTextOverride,c=l.buttonTextDefault):e[i]&&(a=function(){e[i]()},u=(e.overrides.buttonText||{})[i],c=e.options.buttonText[i]),a&&(d=r?r.themeIcon:e.options.themeButtonIcons[i],h=r?r.icon:e.options.buttonIcons[i],f=u?tt(u):d&&e.options.theme?"":h&&!e.options.theme?"":tt(c),g=["fc-"+i+"-button",p+"-button",p+"-state-default"],m=t('").click(function(t){m.hasClass(p+"-state-disabled")||(a(t),(m.hasClass(p+"-state-active")||m.hasClass(p+"-state-disabled"))&&m.removeClass(p+"-state-hover"))}).mousedown(function(){m.not("."+p+"-state-active").not("."+p+"-state-disabled").addClass(p+"-state-down")}).mouseup(function(){m.removeClass(p+"-state-down")}).hover(function(){m.not("."+p+"-state-active").not("."+p+"-state-disabled").addClass(p+"-state-hover")},function(){m.removeClass(p+"-state-hover").removeClass(p+"-state-down")}),s=s.add(m)))}),o&&s.first().addClass(p+"-corner-left").end().last().addClass(p+"-corner-right").end(),s.length>1?(i=t("
"),o&&i.addClass("fc-button-group"),i.append(s),r.append(i)):r.append(s)}),r}function l(t){g&&g.find("h2").text(t)}function a(t){g&&g.find(".fc-"+t+"-button").addClass(p+"-state-active")}function u(t){g&&g.find(".fc-"+t+"-button").removeClass(p+"-state-active")}function c(t){g&&g.find(".fc-"+t+"-button").prop("disabled",!0).addClass(p+"-state-disabled")}function d(t){g&&g.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(p+"-state-disabled")}function h(){return v}var f=this;f.setToolbarOptions=i,f.render=r,f.removeElement=s,f.updateTitle=l,f.activateButton=a,f.deactivateButton=u,f.disableButton=c,f.enableButton=d,f.getViewsWithButtons=h,f.el=null;var g,p,v=[]}function _t(n,i){function r(t){t._locale=Y}function s(){q?a()&&(f(),u()):o()}function o(){n.addClass("fc"),n.on("click.fc","a[data-goto]",function(e){var n=t(this),i=n.data("goto"),r=_.moment(i.date),s=i.type,o=Q.opt("navLink"+rt(s)+"Click");"function"==typeof o?o(r,e):("string"==typeof o&&(s=o),B(r,s))}),_.bindOption("theme",function(t){$=t?"ui":"fc",n.toggleClass("ui-widget",t),n.toggleClass("fc-unthemed",!t)}),_.bindOptions(["isRTL","locale"],function(t){n.toggleClass("fc-ltr",!t),n.toggleClass("fc-rtl",t)}),q=t("
").prependTo(n);var e=y();W=new Vt(e),U=_.header=e[0],j=_.footer=e[1],E(),b(),u(_.options.defaultView),_.options.handleWindowResize&&(K=at(v,_.options.windowResizeDelay),t(window).resize(K))}function l(){Q&&Q.removeElement(),W.proxyCall("removeElement"),q.remove(),n.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),n.off(".fc"),K&&t(window).unbind("resize",K)}function a(){return n.is(":visible")}function u(e,n){nt++;var i=Q&&e&&Q.type!==e;i&&(F(),c()),!Q&&e&&(Q=_.view=et[e]||(et[e]=_.instantiateView(e)),Q.setElement(t("
").appendTo(q)),W.proxyCall("activateButton",e)),Q&&(J=Q.massageCurrentDate(J),Q.isDateSet&&J>=Q.intervalStart&&J=Q.intervalStart&&tq&&i.push(n);return i}function s(t,e){return!q||tZ}function o(t,e){return q=t,Z=e,l()}function l(){return u(tt,"reset")}function a(t){return u(E(t))}function u(t,e){var n,i;for("reset"===e?nt=[]:"add"!==e&&(nt=C(nt,t)),n=0;nr.value)&&(r=i));return r?r.unit:null},qt.Class=St,St.extend=function(){var t,e,n=arguments.length;for(t=0;t').addClass(n.className||"").css({top:0,left:0}).append(n.content).appendTo(n.parentEl),this.el.on("click",".fc-close",function(){e.hide()}),n.autoHide&&this.listenTo(t(document),"mousedown",this.documentMousedown)},documentMousedown:function(e){this.el&&!t(e.target).closest(this.el).length&&this.hide()},removeElement:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(t(document),"mousedown")},position:function(){var e,n,i,r,s,o=this.options,l=this.el.offsetParent().offset(),a=this.el.outerWidth(),u=this.el.outerHeight(),c=t(window),h=d(this.el);r=o.top||0,s=void 0!==o.left?o.left:void 0!==o.right?o.right-a:0,h.is(window)||h.is(document)?(h=c,e=0,n=0):(i=h.offset(),e=i.top,n=i.left),e+=c.scrollTop(),n+=c.scrollLeft(),o.viewportConstrain!==!1&&(r=Math.min(r,e+h.outerHeight()-u-this.margin),r=Math.max(r,e+this.margin),s=Math.min(s,n+h.outerWidth()-a-this.margin),s=Math.max(s,n+this.margin)),this.el.css({top:r-l.top,left:s-l.left})},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))}}),fe=qt.CoordCache=St.extend({els:null,forcedOffsetParentEl:null,origin:null,boundingRect:null,isHorizontal:!1,isVertical:!1,lefts:null,rights:null,tops:null,bottoms:null,constructor:function(e){this.els=t(e.els),this.isHorizontal=e.isHorizontal,this.isVertical=e.isVertical,this.forcedOffsetParentEl=e.offsetParent?t(e.offsetParent):null},build:function(){var t=this.forcedOffsetParentEl;!t&&this.els.length>0&&(t=this.els.eq(0).offsetParent()),this.origin=t?t.offset():null,this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},clear:function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},ensureBuilt:function(){this.origin||this.build()},buildElHorizontals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().left,l=s.outerWidth();e.push(o),n.push(o+l)}),this.lefts=e,this.rights=n},buildElVerticals:function(){var e=[],n=[];this.els.each(function(i,r){var s=t(r),o=s.offset().top,l=s.outerHeight();e.push(o),n.push(o+l)}),this.tops=e,this.bottoms=n},getHorizontalIndex:function(t){this.ensureBuilt();var e,n=this.lefts,i=this.rights,r=n.length;for(e=0;e=n[e]&&t=n[e]&&t0&&(t=d(this.els.eq(0)),!t.is(document))?f(t):null},isPointInBounds:function(t,e){return this.isLeftInBounds(t)&&this.isTopInBounds(e)},isLeftInBounds:function(t){return!this.boundingRect||t>=this.boundingRect.left&&t=this.boundingRect.top&&t=r*r&&this.handleDistanceSurpassed(t)),this.isDragging&&this.handleDrag(n,i,t)},handleDrag:function(t,e,n){this.trigger("drag",t,e,n),this.updateAutoScroll(n)},endDrag:function(t){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(t))},handleDragEnd:function(t){this.trigger("dragEnd",t)},startDelay:function(t){var e=this;this.delay?this.delayTimeoutId=setTimeout(function(){e.handleDelayEnd(t)},this.delay):this.handleDelayEnd(t)},handleDelayEnd:function(t){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(t)},handleDistanceSurpassed:function(t){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(t)},handleTouchMove:function(t){this.isDragging&&t.preventDefault(),this.handleMove(t)},handleMouseMove:function(t){this.handleMove(t)},handleTouchScroll:function(t){this.isDragging||this.endInteraction(t,!0)},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1)),this["_"+t]&&this["_"+t].apply(this,Array.prototype.slice.call(arguments,1))}});ge.mixin({isAutoScroll:!1,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,initAutoScroll:function(){var t=this.scrollEl;this.isAutoScroll=this.options.scroll&&t&&!t.is(window)&&!t.is(document),this.isAutoScroll&&this.listenTo(t,"scroll",at(this.handleDebouncedScroll,100))},destroyAutoScroll:function(){this.endAutoScroll(),this.isAutoScroll&&this.stopListeningTo(this.scrollEl,"scroll")},computeScrollBounds:function(){this.isAutoScroll&&(this.scrollBounds=h(this.scrollEl))},updateAutoScroll:function(t){var e,n,i,r,s=this.scrollSensitivity,o=this.scrollBounds,l=0,a=0;o&&(e=(s-(E(t)-o.top))/s,n=(s-(o.bottom-E(t)))/s,i=(s-(w(t)-o.left))/s,r=(s-(o.right-w(t)))/s,e>=0&&e<=1?l=e*this.scrollSpeed*-1:n>=0&&n<=1&&(l=n*this.scrollSpeed),i>=0&&i<=1?a=i*this.scrollSpeed*-1:r>=0&&r<=1&&(a=r*this.scrollSpeed)),this.setScrollVel(l,a)},setScrollVel:function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(lt(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var t=this.scrollEl;this.scrollTopVel<0?t.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?t.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},endAutoScroll:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},handleDebouncedScroll:function(){this.scrollIntervalId||this.handleScrollEnd()},handleScrollEnd:function(){}});var pe=ge.extend({component:null,origHit:null,hit:null,coordAdjust:null,constructor:function(t,e){ge.call(this,e),this.component=t},handleInteractionStart:function(t){var e,n,i,r=this.subjectEl;this.computeCoords(),t?(n={left:w(t),top:E(t)},i=n,r&&(e=h(r),i=x(i,e)),this.origHit=this.queryHit(i.left,i.top),r&&this.options.subjectCenter&&(this.origHit&&(e=R(this.origHit,e)||e),i=I(e)),this.coordAdjust=k(i,n)):(this.origHit=null,this.coordAdjust=null),ge.prototype.handleInteractionStart.apply(this,arguments)},computeCoords:function(){this.component.prepareHits(),this.computeScrollBounds()},handleDragStart:function(t){var e;ge.prototype.handleDragStart.apply(this,arguments),e=this.queryHit(w(t),E(t)),e&&this.handleHitOver(e)},handleDrag:function(t,e,n){var i;ge.prototype.handleDrag.apply(this,arguments),i=this.queryHit(w(n),E(n)),Tt(i,this.hit)||(this.hit&&this.handleHitOut(),i&&this.handleHitOver(i))},handleDragEnd:function(){this.handleHitDone(),ge.prototype.handleDragEnd.apply(this,arguments)},handleHitOver:function(t){var e=Tt(t,this.origHit);this.hit=t,this.trigger("hitOver",this.hit,e,this.origHit)},handleHitOut:function(){this.hit&&(this.trigger("hitOut",this.hit),this.handleHitDone(),this.hit=null)},handleHitDone:function(){this.hit&&this.trigger("hitDone",this.hit)},handleInteractionEnd:function(){ge.prototype.handleInteractionEnd.apply(this,arguments),this.origHit=null,this.hit=null,this.component.releaseHits()},handleScrollEnd:function(){ge.prototype.handleScrollEnd.apply(this,arguments),this.computeCoords()},queryHit:function(t,e){return this.coordAdjust&&(t+=this.coordAdjust.left,e+=this.coordAdjust.top),this.component.queryHit(t,e)}}),ve=St.extend(ce,{options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,y0:null,x0:null,topDelta:null,leftDelta:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(e,n){this.options=n=n||{},this.sourceEl=e,this.parentEl=n.parentEl?t(n.parentEl):e.parent()},start:function(e){this.isFollowing||(this.isFollowing=!0,this.y0=E(e),this.x0=w(e),this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),b(e)?this.listenTo(t(document),"touchmove",this.handleMove):this.listenTo(t(document),"mousemove",this.handleMove))},stop:function(e,n){function i(){r.isAnimating=!1,r.removeElement(),r.top0=r.left0=null,n&&n()}var r=this,s=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,this.stopListeningTo(t(document)),e&&s&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:s,complete:i})):i())},getEl:function(){var t=this.el;return t||(t=this.el=this.sourceEl.clone().addClass(this.options.additionalClass||"").css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}),t.addClass("fc-unselectable"),t.appendTo(this.parentEl)),t},removeElement:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var t,e;this.getEl(),null===this.top0&&(t=this.sourceEl.offset(),e=this.el.offsetParent().offset(),this.top0=t.top-e.top,this.left0=t.left-e.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},handleMove:function(t){this.topDelta=E(t)-this.y0,this.leftDelta=w(t)-this.x0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),me=qt.Grid=St.extend(ce,de,{hasDayInteractions:!0,view:null,isRTL:null,start:null,end:null,el:null,elsByFill:null,eventTimeFormat:null,displayEventTime:null,displayEventEnd:null,minResizeDuration:null,largeUnit:null,dayDragListener:null,segDragListener:null,segResizeListener:null,externalDragListener:null,constructor:function(t){this.view=t,this.isRTL=t.opt("isRTL"),this.elsByFill={},this.dayDragListener=this.buildDayDragListener(),this.initMouseIgnoring()},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventTime:function(){return!0},computeDisplayEventEnd:function(){return!0},setRange:function(t){this.start=t.start.clone(),this.end=t.end.clone(),this.rangeUpdated(),this.processRangeOptions()},rangeUpdated:function(){},processRangeOptions:function(){var t,e,n=this.view;this.eventTimeFormat=n.opt("eventTimeFormat")||n.opt("timeFormat")||this.computeEventTimeFormat(),t=n.opt("displayEventTime"),null==t&&(t=this.computeDisplayEventTime()),e=n.opt("displayEventEnd"),null==e&&(e=this.computeDisplayEventEnd()),this.displayEventTime=t,this.displayEventEnd=e},spanToSegs:function(t){},diffDates:function(t,e){return this.largeUnit?O(t,e,this.largeUnit):N(t,e)},prepareHits:function(){},releaseHits:function(){},queryHit:function(t,e){},getHitSpan:function(t){},getHitEl:function(t){},setElement:function(t){this.el=t,this.hasDayInteractions&&(D(t),this.bindDayHandler("touchstart",this.dayTouchStart),this.bindDayHandler("mousedown",this.dayMousedown)),this.bindSegHandlers(),this.bindGlobalHandlers()},bindDayHandler:function(e,n){var i=this;this.el.on(e,function(e){if(!t(e.target).is(i.segSelector+","+i.segSelector+" *,.fc-more,a[data-goto]"))return n.call(i,e)})},removeElement:function(){this.unbindGlobalHandlers(),this.clearDragListeners(),this.el.remove()},renderSkeleton:function(){},renderDates:function(){},unrenderDates:function(){},bindGlobalHandlers:function(){this.listenTo(t(document),{dragstart:this.externalDragStart,sortstart:this.externalDragStart})},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},dayMousedown:function(t){this.isIgnoringMouse||this.dayDragListener.startInteraction(t,{})},dayTouchStart:function(t){var e=this.view,n=e.opt("selectLongPressDelay");(e.isSelected||e.selectedEvent)&&this.tempIgnoreMouse(),null==n&&(n=e.opt("longPressDelay")),this.dayDragListener.startInteraction(t,{delay:n})},buildDayDragListener:function(){var t,e,n=this,i=this.view,r=i.opt("selectable"),l=new pe(this,{scroll:i.opt("dragScroll"),interactionStart:function(){t=l.origHit,e=null},dragStart:function(){i.unselect()},hitOver:function(i,o,l){l&&(o||(t=null),r&&(e=n.computeSelection(n.getHitSpan(l),n.getHitSpan(i)),e?n.renderSelection(e):e===!1&&s()))},hitOut:function(){t=null,e=null,n.unrenderSelection()},hitDone:function(){o()},interactionEnd:function(r,s){s||(t&&!n.isIgnoringMouse&&i.triggerDayClick(n.getHitSpan(t),n.getHitEl(t),r),e&&i.reportSelection(e,r))}});return l},clearDragListeners:function(){this.dayDragListener.endInteraction(),this.segDragListener&&this.segDragListener.endInteraction(),this.segResizeListener&&this.segResizeListener.endInteraction(),this.externalDragListener&&this.externalDragListener.endInteraction()},renderEventLocationHelper:function(t,e){var n=this.fabricateHelperEvent(t,e);return this.renderHelper(n,e)},fabricateHelperEvent:function(t,e){var n=e?Z(e.event):{};return n.start=t.start.clone(),n.end=t.end?t.end.clone():null,n.allDay=null,this.view.calendar.normalizeEventDates(n),n.className=(n.className||[]).concat("fc-helper"),e||(n.editable=!1),n},renderHelper:function(t,e){},unrenderHelper:function(){},renderSelection:function(t){this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHighlight()},computeSelection:function(t,e){var n=this.computeSelectionSpan(t,e);return!(n&&!this.view.calendar.isSelectionSpanAllowed(n))&&n},computeSelectionSpan:function(t,e){var n=[t.start,t.end,e.start,e.end];return n.sort(st),{start:n[0].clone(),end:n[3].clone()}},renderHighlight:function(t){this.renderFill("highlight",this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderBusinessHours:function(){},unrenderBusinessHours:function(){},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},renderFill:function(t,e){},unrenderFill:function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},renderFillSegEls:function(e,n){var i,r=this,s=this[e+"SegEl"],o="",l=[];if(n.length){for(i=0;i"},getDayClasses:function(t,e){var n=this.view,i=n.calendar.getNow(),r=["fc-"+Xt[t.day()]];return 1==n.intervalDuration.as("months")&&t.month()!=n.intervalStart.month()&&r.push("fc-other-month"),t.isSame(i,"day")?(r.push("fc-today"),e!==!0&&r.push(n.highlightStateClass)):t *",mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,isDraggingExternal:!1,segs:null,renderEvents:function(t){var e,n=[],i=[];for(e=0;el&&o.push({start:l,end:n.start}),l=n.end;return l=e.length?e[e.length-1]+1:e[n]},computeColHeadFormat:function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},sliceRangeByRow:function(t){var e,n,i,r,s,o=this.daysPerRow,l=this.view.computeDayRange(t),a=this.getDateDayIndex(l.start),u=this.getDateDayIndex(l.end.clone().subtract(1,"days")),c=[];for(e=0;e'+this.renderHeadTrHtml()+"
"},renderHeadIntroHtml:function(){return this.renderIntroHtml()},renderHeadTrHtml:function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""},renderHeadDateCellsHtml:function(){var t,e,n=[];for(t=0;t1?' colspan="'+e+'"':"")+(n?" "+n:"")+">"+i.buildGotoAnchorHtml({date:t,forceOff:this.rowCnt>1||1===this.colCnt},tt(t.format(this.colHeadFormat)))+""},renderBgTrHtml:function(t){return""+(this.isRTL?"":this.renderBgIntroHtml(t))+this.renderBgCellsHtml(t)+(this.isRTL?this.renderBgIntroHtml(t):"")+""},renderBgIntroHtml:function(t){return this.renderIntroHtml()},renderBgCellsHtml:function(t){var e,n,i=[];for(e=0;e"},renderIntroHtml:function(){},bookendCells:function(t){var e=this.renderIntroHtml();e&&(this.isRTL?t.append(e):t.prepend(e))}},Se=qt.DayGrid=me.extend(ye,{numbersVisible:!1,bottomCoordPadding:0,rowEls:null,cellEls:null,helperEls:null,rowCoordCache:null,colCoordCache:null,renderDates:function(t){var e,n,i=this.view,r=this.rowCnt,s=this.colCnt,o="";for(e=0;e
'+this.renderBgTrHtml(t)+'
'+(this.numbersVisible?""+this.renderNumberTrHtml(t)+"":"")+"
"},renderNumberTrHtml:function(t){return""+(this.isRTL?"":this.renderNumberIntroHtml(t))+this.renderNumberCellsHtml(t)+(this.isRTL?this.renderNumberIntroHtml(t):"")+""},renderNumberIntroHtml:function(t){return this.renderIntroHtml()},renderNumberCellsHtml:function(t){var e,n,i=[];for(e=0;e',this.view.cellWeekNumbersVisible&&t.day()==n&&(i+=this.view.buildGotoAnchorHtml({date:t,type:"week"},{class:"fc-week-number"},t.format("w"))),this.view.dayNumbersVisible&&(i+=this.view.buildGotoAnchorHtml(t,{class:"fc-day-number"},t.date())),i+=""):""},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},rangeUpdated:function(){this.updateDayTable()},spanToSegs:function(t){var e,n,i=this.sliceRangeByRow(t);for(e=0;e');o=n&&n.row===e?n.el.position().top:l.find(".fc-content-skeleton tbody").position().top,a.css("top",o).find("table").append(i[e].tbodyEl),l.append(a),r.push(a[0])}),this.helperEls=t(r)},unrenderHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(e,n,i){var r,s,o,l=[];for(n=this.renderFillSegEls(e,n),r=0;r
'),s=r.find("tr"),l>0&&s.append(''),s.append(n.el.attr("colspan",a-l)),a'),this.bookendCells(s),r}});Se.mixin({rowStructs:null,unrenderEvents:function(){this.removeSegPopover(),me.prototype.unrenderEvents.apply(this,arguments)},getEventSegs:function(){return me.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(e){var n=t.grep(e,function(t){return t.event.allDay});return me.prototype.renderBgSegs.call(this,n)},renderFgSegs:function(e){var n;return e=this.renderFgSegEls(e),n=this.rowStructs=this.renderSegRows(e),this.rowEls.each(function(e,i){t(i).find(".fc-content-skeleton > table").append(n[e].tbodyEl)}),e},unrenderFgSegs:function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;n'+tt(n)+"")),i=''+(tt(s.title||"")||" ")+"",'
'+(this.isRTL?i+" "+d:d+" "+i)+"
"+(l?'
':"")+(a?'
':"")+""},renderSegRow:function(e,n){function i(e){for(;o"),l.append(c)),v[r][o]=c,m[r][o]=c,o++}var r,s,o,l,a,u,c,d=this.colCnt,h=this.buildSegLevels(n),f=Math.max(1,h.length),g=t(""),p=[],v=[],m=[];for(r=0;r"),p.push([]),v.push([]),m.push([]),s)for(a=0;a').append(u.el),u.leftCol!=u.rightCol?c.attr("colspan",u.rightCol-u.leftCol+1):m[r][o]=c;o<=u.rightCol;)v[r][o]=c,p[r][o]=u,o++;l.append(c)}i(d),this.bookendCells(l),g.append(l)}return{row:e,tbodyEl:g,cellMatrix:v,segMatrix:p,segLevels:h,segs:n}},buildSegLevels:function(t){var e,n,i,r=[];for(this.sortEventSegs(t),e=0;e td > :first-child").each(n),r.position().top+s>l)return i;return!1},limitRow:function(e,n){function i(i){for(;b").append(y),h.append(m),E.push(m[0])),b++}var r,s,o,l,a,u,c,d,h,f,g,p,v,m,y,S=this,w=this.rowStructs[e],E=[],b=0;if(n&&n').attr("rowspan",f),u=d[p],y=this.renderMoreLink(e,a.leftCol+p,[a].concat(u)),m=t("
").append(y),v.append(m),g.push(v[0]),E.push(v[0]);h.addClass("fc-limited").after(t(g)),o.push(h[0])}}i(this.colCnt),w.moreEls=t(E),w.limitedEls=t(o)}},unlimitRow:function(t){var e=this.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},renderMoreLink:function(e,n,i){var r=this,s=this.view;return t('').text(this.getMoreLinkText(i.length)).on("click",function(o){var l=s.opt("eventLimitClick"),a=r.getCellDate(e,n),u=t(this),c=r.getCellEl(e,n),d=r.getCellSegs(e,n),h=r.resliceDaySegs(d,a),f=r.resliceDaySegs(i,a);"function"==typeof l&&(l=s.publiclyTrigger("eventLimitClick",null,{date:a,dayEl:c,moreEl:u,segs:h,hiddenSegs:f},o)),"popover"===l?r.showSegPopover(e,n,u,h):"string"==typeof l&&s.calendar.zoomTo(a,l)})},showSegPopover:function(t,e,n,i){var r,s,o=this,l=this.view,a=n.parent();r=1==this.rowCnt?l.el:this.rowEls.eq(t),s={className:"fc-more-popover",content:this.renderSegPopoverContent(t,e,i),parentEl:this.view.el,top:r.offset().top,autoHide:!0,viewportConstrain:l.opt("popoverViewportConstrain"),hide:function(){if(o.popoverSegs)for(var t,e=0;e'+tt(l)+'
'),u=a.find(".fc-event-container");for(i=this.renderFgSegEls(i,!0),this.popoverSegs=i,r=0;r'+this.renderBgTrHtml(0)+'
"},renderSlatRowHtml:function(){for(var t,n,i,r=this.view,s=this.isRTL,o="",l=e.duration(+this.minTime);l"+(n?""+tt(t.format(this.labelFormat))+"":"")+"",o+='"+(s?"":i)+''+(s?i:"")+"",l.add(this.slotDuration);return o},processOptions:function(){var n,i=this.view,r=i.opt("slotDuration"),s=i.opt("snapDuration");r=e.duration(r),s=s?e.duration(s):r,this.slotDuration=r,this.snapDuration=s,this.snapsPerSlot=r/s,this.minResizeDuration=s,this.minTime=e.duration(i.opt("minTime")),this.maxTime=e.duration(i.opt("maxTime")),n=i.opt("slotLabelFormat"),t.isArray(n)&&(n=n[n.length-1]),this.labelFormat=n||i.opt("smallTimeFormat"),n=i.opt("slotLabelInterval"),this.labelInterval=n?e.duration(n):this.computeLabelInterval(r)},computeLabelInterval:function(t){var n,i,r;for(n=Oe.length-1;n>=0;n--)if(i=e.duration(Oe[n]),r=_(i,t),ot(r)&&r>1)return i;return e.duration(t)},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},prepareHits:function(){this.colCoordCache.build(),this.slatCoordCache.build()},releaseHits:function(){this.colCoordCache.clear()},queryHit:function(t,e){var n=this.snapsPerSlot,i=this.colCoordCache,r=this.slatCoordCache;if(i.isLeftInBounds(t)&&r.isTopInBounds(e)){var s=i.getHorizontalIndex(t),o=r.getVerticalIndex(e);if(null!=s&&null!=o){var l=r.getTopOffset(o),a=r.getHeight(o),u=(e-l)/a,c=Math.floor(u*n),d=o*n+c,h=l+c/n*a,f=l+(c+1)/n*a;return{col:s,snap:d,component:this,left:i.getLeftOffset(s),right:i.getRightOffset(s),top:h,bottom:f}}}},getHitSpan:function(t){var e,n=this.getCellDate(0,t.col),i=this.computeSnapTime(t.snap);return n.time(i),e=n.clone().add(this.snapDuration),{start:n,end:e}},getHitEl:function(t){return this.colEls.eq(t.col)},rangeUpdated:function(){this.updateDayTable()},computeSnapTime:function(t){return e.duration(this.minTime+this.snapDuration*t)},spanToSegs:function(t){var e,n=this.sliceRangeByTimes(t);for(e=0;e
').css("top",r).appendTo(this.colContainerEls.eq(i[n].col))[0]);i.length>0&&s.push(t('
').css("top",r).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=t(s)},unrenderNowIndicator:function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},renderSelection:function(t){this.view.opt("selectHelper")?this.renderEventLocationHelper(t):this.renderHighlight(t)},unrenderSelection:function(){this.unrenderHelper(),this.unrenderHighlight()},renderHighlight:function(t){this.renderHighlightSegs(this.spanToSegs(t))},unrenderHighlight:function(){this.unrenderHighlightSegs()}});we.mixin({colContainerEls:null,fgContainerEls:null,bgContainerEls:null,helperContainerEls:null,highlightContainerEls:null,businessContainerEls:null,fgSegs:null,bgSegs:null,helperSegs:null,highlightSegs:null,businessSegs:null,renderContentSkeleton:function(){var e,n,i="";for(e=0;e
';n=t('
'+i+"
"),this.colContainerEls=n.find(".fc-content-col"),this.helperContainerEls=n.find(".fc-helper-container"),this.fgContainerEls=n.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=n.find(".fc-bgevent-container"),this.highlightContainerEls=n.find(".fc-highlight-container"),this.businessContainerEls=n.find(".fc-business-container"),this.bookendCells(n.find("tr")),this.el.append(n)},renderFgSegs:function(t){return t=this.renderFgSegsIntoContainers(t,this.fgContainerEls),this.fgSegs=t,t},unrenderFgSegs:function(){this.unrenderNamedSegs("fgSegs")},renderHelperSegs:function(e,n){var i,r,s,o=[];for(e=this.renderFgSegsIntoContainers(e,this.helperContainerEls),i=0;i
'+(n?'
'+tt(n)+"
":"")+(o.title?'
'+tt(o.title)+"
":"")+'
'+(u?'
':"")+""},updateSegVerticals:function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},computeSegVerticals:function(t){var e,n;for(e=0;e1?"ll":"LL"},formatRange:function(t,e,n){var i=t.end;return i.hasTime()||(i=i.clone().subtract(1)),gt(t.start,i,e,n,this.opt("isRTL"))},getAllDayHtml:function(){return this.opt("allDayHtml")||tt(this.opt("allDayText"))},buildGotoAnchorHtml:function(e,n,i){var r,s,o,l;return t.isPlainObject(e)?(r=e.date,s=e.type,o=e.forceOff):r=e,r=qt.moment(r),l={date:r.format("YYYY-MM-DD"),type:s||"day"},"string"==typeof n&&(i=n,n=null),n=n?" "+it(n):"",i=i||"",!o&&this.opt("navLinks")?"'+i+"":""+i+""},setElement:function(t){this.el=t,this.bindGlobalHandlers(),this.renderSkeleton()},removeElement:function(){this.unsetDate(),this.unrenderSkeleton(),this.unbindGlobalHandlers(),this.el.remove()},renderSkeleton:function(){},unrenderSkeleton:function(){},setDate:function(t){var e=this.isDateSet;this.isDateSet=!0,this.handleDate(t,e),this.trigger(e?"dateReset":"dateSet",t)},unsetDate:function(){this.isDateSet&&(this.isDateSet=!1,this.handleDateUnset(),this.trigger("dateUnset"))},handleDate:function(t,e){var n=this;this.unbindEvents(),this.requestDateRender(t).then(function(){n.bindEvents()})},handleDateUnset:function(){this.unbindEvents(),this.requestDateUnrender()},requestDateRender:function(t){var e=this;return this.dateRenderQueue.add(function(){return e.executeDateRender(t)})},requestDateUnrender:function(){var t=this;return this.dateRenderQueue.add(function(){return t.executeDateUnrender()})},executeDateRender:function(t){var e=this;return t?this.captureInitialScroll():this.captureScroll(),this.freezeHeight(),this.executeDateUnrender().then(function(){t&&e.setRange(e.computeRange(t)),e.render&&e.render(),e.renderDates(),e.updateSize(),e.renderBusinessHours(),e.startNowIndicator(),e.thawHeight(),e.releaseScroll(),e.isDateRendered=!0,e.onDateRender(),e.trigger("dateRender")})},executeDateUnrender:function(){var t=this;return t.isDateRendered?this.requestEventsUnrender().then(function(){t.unselect(),t.stopNowIndicator(),t.triggerUnrender(),t.unrenderBusinessHours(),t.unrenderDates(),t.destroy&&t.destroy(),t.isDateRendered=!1,t.trigger("dateUnrender")}):bt.resolve()},onDateRender:function(){this.triggerRender()},renderDates:function(){},unrenderDates:function(){},triggerRender:function(){this.publiclyTrigger("viewRender",this,this,this.el); +},triggerUnrender:function(){this.publiclyTrigger("viewDestroy",this,this,this.el)},bindGlobalHandlers:function(){this.listenTo(t(document),"mousedown",this.handleDocumentMousedown),this.listenTo(t(document),"touchstart",this.processUnselect)},unbindGlobalHandlers:function(){this.stopListeningTo(t(document))},initThemingProps:function(){var t=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=t+"-widget-header",this.widgetContentClass=t+"-widget-content",this.highlightStateClass=t+"-state-highlight"},renderBusinessHours:function(){},unrenderBusinessHours:function(){},startNowIndicator:function(){var t,n,i,r=this;this.opt("nowIndicator")&&(t=this.getNowIndicatorUnit(),t&&(n=lt(this,"updateNowIndicator"),this.initialNowDate=this.calendar.getNow(),this.initialNowQueriedMs=+new Date,this.renderNowIndicator(this.initialNowDate),this.isNowIndicatorRendered=!0,i=this.initialNowDate.clone().startOf(t).add(1,t)-this.initialNowDate,this.nowIndicatorTimeoutID=setTimeout(function(){r.nowIndicatorTimeoutID=null,n(),i=+e.duration(1,t),i=Math.max(100,i),r.nowIndicatorIntervalID=setInterval(n,i)},i)))},updateNowIndicator:function(){this.isNowIndicatorRendered&&(this.unrenderNowIndicator(),this.renderNowIndicator(this.initialNowDate.clone().add(new Date-this.initialNowQueriedMs)))},stopNowIndicator:function(){this.isNowIndicatorRendered&&(this.nowIndicatorTimeoutID&&(clearTimeout(this.nowIndicatorTimeoutID),this.nowIndicatorTimeoutID=null),this.nowIndicatorIntervalID&&(clearTimeout(this.nowIndicatorIntervalID),this.nowIndicatorIntervalID=null),this.unrenderNowIndicator(),this.isNowIndicatorRendered=!1)},getNowIndicatorUnit:function(){},renderNowIndicator:function(t){},unrenderNowIndicator:function(){},updateSize:function(t){t&&this.captureScroll(),this.updateHeight(t),this.updateWidth(t),this.updateNowIndicator(),t&&this.releaseScroll()},updateWidth:function(t){},updateHeight:function(t){var e=this.calendar;this.setHeight(e.getSuggestedViewHeight(),e.isHeightAuto())},setHeight:function(t,e){},capturedScroll:null,capturedScrollDepth:0,captureScroll:function(){return!this.capturedScrollDepth++&&(this.capturedScroll=this.isDateRendered?this.queryScroll():{},!0)},captureInitialScroll:function(e){this.captureScroll()&&(this.capturedScroll.isInitial=!0,e?t.extend(this.capturedScroll,e):this.capturedScroll.isComputed=!0)},releaseScroll:function(){var e=this.capturedScroll,n=this.discardScroll();e.isComputed&&(n?t.extend(e,this.computeInitialScroll()):e=null),e&&(e.isInitial?this.hardSetScroll(e):this.setScroll(e))},discardScroll:function(){return!--this.capturedScrollDepth&&(this.capturedScroll=null,!0)},computeInitialScroll:function(){return{}},queryScroll:function(){return{}},hardSetScroll:function(t){var e=this,n=function(){e.setScroll(t)};n(),setTimeout(n,0)},setScroll:function(t){},freezeHeight:function(){this.calendar.freezeContentHeight()},thawHeight:function(){this.calendar.thawContentHeight()},bindEvents:function(){var t=this;this.isEventsBound||(this.isEventsBound=!0,this.rejectOn("eventsUnbind",this.requestEvents()).then(function(e){t.listenTo(t.calendar,"eventsReset",t.setEvents),t.setEvents(e)}))},unbindEvents:function(){this.isEventsBound&&(this.isEventsBound=!1,this.stopListeningTo(this.calendar,"eventsReset"),this.unsetEvents(),this.trigger("eventsUnbind"))},setEvents:function(t){var e=this.isEventSet;this.isEventsSet=!0,this.handleEvents(t,e),this.trigger(e?"eventsReset":"eventsSet",t)},unsetEvents:function(){this.isEventsSet&&(this.isEventsSet=!1,this.handleEventsUnset(),this.trigger("eventsUnset"))},whenEventsSet:function(){var t=this;return this.isEventsSet?bt.resolve(this.getCurrentEvents()):new bt(function(e){t.one("eventsSet",e)})},handleEvents:function(t,e){this.requestEventsRender(t)},handleEventsUnset:function(){this.requestEventsUnrender()},requestEventsRender:function(t){var e=this;return this.eventRenderQueue.add(function(){return e.executeEventsRender(t)})},requestEventsUnrender:function(){var t=this;return this.isEventsRendered?this.eventRenderQueue.addQuickly(function(){return t.executeEventsUnrender()}):bt.resolve()},requestCurrentEventsRender:function(){return this.isEventsSet?void this.requestEventsRender(this.getCurrentEvents()):bt.reject()},executeEventsRender:function(t){var e=this;return this.captureScroll(),this.freezeHeight(),this.executeEventsUnrender().then(function(){e.renderEvents(t),e.thawHeight(),e.releaseScroll(),e.isEventsRendered=!0,e.onEventsRender(),e.trigger("eventsRender")})},executeEventsUnrender:function(){return this.isEventsRendered&&(this.onBeforeEventsUnrender(),this.captureScroll(),this.freezeHeight(),this.destroyEvents&&this.destroyEvents(),this.unrenderEvents(),this.thawHeight(),this.releaseScroll(),this.isEventsRendered=!1,this.trigger("eventsUnrender")),bt.resolve()},onEventsRender:function(){this.renderedEventSegEach(function(t){this.publiclyTrigger("eventAfterRender",t.event,t.event,t.el)}),this.publiclyTrigger("eventAfterAllRender")},onBeforeEventsUnrender:function(){this.renderedEventSegEach(function(t){this.publiclyTrigger("eventDestroy",t.event,t.event,t.el)})},renderEvents:function(t){},unrenderEvents:function(){},requestEvents:function(){return this.calendar.requestEvents(this.start,this.end)},getCurrentEvents:function(){return this.calendar.getPrunedEventCache()},resolveEventEl:function(e,n){var i=this.publiclyTrigger("eventRender",e,e,n);return i===!1?n=null:i&&i!==!0&&(n=t(i)),n},showEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","")},t)},hideEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","hidden")},t)},renderedEventSegEach:function(t,e){var n,i=this.getEventSegs();for(n=0;n=this.nextDayThreshold&&r.add(1,"days")),(!i||r<=n)&&(r=n.clone().add(1,"days")),{start:n,end:r}},isMultiDayEvent:function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1}}),be=qt.Scroller=St.extend({el:null,scrollEl:null,overflowX:null,overflowY:null,constructor:function(t){t=t||{},this.overflowX=t.overflowX||t.overflow||"auto",this.overflowY=t.overflowY||t.overflow||"auto"},render:function(){this.el=this.renderEl(),this.applyOverflow()},renderEl:function(){return this.scrollEl=t('
')},clear:function(){this.setHeight("auto"),this.applyOverflow()},destroy:function(){this.el.remove()},applyOverflow:function(){this.scrollEl.css({"overflow-x":this.overflowX,"overflow-y":this.overflowY})},lockOverflow:function(t){var e=this.overflowX,n=this.overflowY;t=t||this.getScrollbarWidths(),"auto"===e&&(e=t.top||t.bottom||this.scrollEl[0].scrollWidth-1>this.scrollEl[0].clientWidth?"scroll":"hidden"),"auto"===n&&(n=t.left||t.right||this.scrollEl[0].scrollHeight-1>this.scrollEl[0].clientHeight?"scroll":"hidden"),this.scrollEl.css({"overflow-x":e,"overflow-y":n})},setHeight:function(t){this.scrollEl.height(t)},getScrollTop:function(){return this.scrollEl.scrollTop()},setScrollTop:function(t){this.scrollEl.scrollTop(t)},getClientWidth:function(){return this.scrollEl[0].clientWidth},getClientHeight:function(){return this.scrollEl[0].clientHeight},getScrollbarWidths:function(){return p(this.scrollEl)}});Vt.prototype.proxyCall=function(t){var e=Array.prototype.slice.call(arguments,1),n=[];return this.items.forEach(function(i){n.push(i[t].apply(i,e))}),n};var De=qt.Calendar=St.extend({dirDefaults:null,localeDefaults:null,overrides:null,dynamicOverrides:null,options:null,viewSpecCache:null,view:null,header:null,footer:null,loadingLevel:0,constructor:_t,initialize:function(){},populateOptionsHash:function(){var t,e,i,r;t=J(this.dynamicOverrides.locale,this.overrides.locale),e=Te[t],e||(t=De.defaults.locale,e=Te[t]||{}),i=J(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,De.defaults.isRTL),r=i?De.rtlDefaults:{},this.dirDefaults=r,this.localeDefaults=e,this.options=n([De.defaults,r,e,this.overrides,this.dynamicOverrides]),Yt(this.options)},getViewSpec:function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},getUnitViewSpec:function(e){var n,i,r;if(t.inArray(e,Kt)!=-1)for(n=this.header.getViewsWithButtons(),t.each(qt.views,function(t){n.push(t)}),i=0;i=n&&e.end<=i},De.prototype.getPeerEvents=function(t,e){var n,i,r=this.getEventCache(),s=[];for(n=0;nn};var ke={id:"_fcBusinessHours",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"};De.prototype.getCurrentBusinessHourEvents=function(t){return this.computeBusinessHourEvents(t,this.options.businessHours)},De.prototype.computeBusinessHourEvents=function(e,n){return n===!0?this.expandBusinessHourEvents(e,[{}]):t.isPlainObject(n)?this.expandBusinessHourEvents(e,[n]):t.isArray(n)?this.expandBusinessHourEvents(e,n,!0):[]},De.prototype.expandBusinessHourEvents=function(e,n,i){var r,s,o=this.getView(),l=[];for(r=0;r1,this.opt("weekNumbers")&&(this.opt("weekNumbersWithinDays")?(this.cellWeekNumbersVisible=!0,this.colWeekNumbersVisible=!1):(this.cellWeekNumbersVisible=!1,this.colWeekNumbersVisible=!0)),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.cellWeekNumbersVisible||this.colWeekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-day-grid-container"),n=t('
').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.dayGrid.setElement(n),this.dayGrid.renderDates(this.hasRigidRows())},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.dayGrid.renderHeadHtml()),this.headRowEl=this.headContainerEl.find(".fc-row")},unrenderDates:function(){this.dayGrid.unrenderDates(),this.dayGrid.removeElement(),this.scroller.destroy()},renderBusinessHours:function(){this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.dayGrid.unrenderBusinessHours()},renderSkeletonHtml:function(){return'
'},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},updateWidth:function(){this.colWeekNumbersVisible&&(this.weekNumberWidth=u(this.el.find(".fc-week-number")))},setHeight:function(t,e){var n,s,o=this.opt("eventLimit");this.scroller.clear(),r(this.headRowEl),this.dayGrid.removeSegPopover(),o&&"number"==typeof o&&this.dayGrid.limitRows(o),n=this.computeScrollerHeight(t),this.setGridHeight(n,e),o&&"number"!=typeof o&&this.dayGrid.limitRows(o),e||(this.scroller.setHeight(n),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(i(this.headRowEl,s),n=this.computeScrollerHeight(t),this.scroller.setHeight(n)),this.scroller.lockOverflow(s))},computeScrollerHeight:function(t){return t-c(this.el,this.scroller.el)},setGridHeight:function(t,e){e?a(this.dayGrid.rowEls):l(this.dayGrid.rowEls,t,!0)},computeInitialScroll:function(){return{top:0}},queryScroll:function(){return{top:this.scroller.getScrollTop()}},setScroll:function(t){this.scroller.setScrollTop(t.top)},prepareHits:function(){this.dayGrid.prepareHits()},releaseHits:function(){this.dayGrid.releaseHits()},queryHit:function(t,e){return this.dayGrid.queryHit(t,e)},getHitSpan:function(t){return this.dayGrid.getHitSpan(t)},getHitEl:function(t){return this.dayGrid.getHitEl(t)},renderEvents:function(t){this.dayGrid.renderEvents(t),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},unrenderEvents:function(){this.dayGrid.unrenderEvents()},renderDrag:function(t,e){return this.dayGrid.renderDrag(t,e)},unrenderDrag:function(){this.dayGrid.unrenderDrag()},renderSelection:function(t){this.dayGrid.renderSelection(t)},unrenderSelection:function(){this.dayGrid.unrenderSelection()}}),Me={renderHeadIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'"+tt(t.opt("weekNumberTitle"))+"":""},renderNumberIntroHtml:function(t){var e=this.view,n=this.getCellDate(t,0);return e.colWeekNumbersVisible?'"+e.buildGotoAnchorHtml({date:n,type:"week",forceOff:1===this.colCnt},n.format("w"))+"":""},renderBgIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""},renderIntroHtml:function(){var t=this.view;return t.colWeekNumbersVisible?'":""}},Be=qt.MonthView=Le.extend({computeRange:function(t){var e,n=Le.prototype.computeRange.call(this,t);return this.isFixedWeeks()&&(e=Math.ceil(n.end.diff(n.start,"weeks",!0)),n.end.add(6-e,"weeks")),n},setGridHeight:function(t,e){e&&(t*=this.rowCnt/6),l(this.dayGrid.rowEls,t,!e)},isFixedWeeks:function(){return this.opt("fixedWeekCount")}});Zt.basic={class:Le},Zt.basicDay={type:"basic",duration:{days:1}},Zt.basicWeek={type:"basic",duration:{weeks:1}},Zt.month={class:Be,duration:{months:1},defaults:{fixedWeekCount:!0}};var ze=qt.AgendaView=Ee.extend({scroller:null,timeGridClass:we,timeGrid:null,dayGridClass:Se,dayGrid:null,axisWidth:null,headContainerEl:null,noScrollRowEls:null,bottomRuleEl:null,initialize:function(){this.timeGrid=this.instantiateTimeGrid(),this.opt("allDaySlot")&&(this.dayGrid=this.instantiateDayGrid()),this.scroller=new be({overflowX:"hidden",overflowY:"auto"})},instantiateTimeGrid:function(){var t=this.timeGridClass.extend(Fe);return new t(this)},instantiateDayGrid:function(){var t=this.dayGridClass.extend(Ne);return new t(this)},setRange:function(t){Ee.prototype.setRange.call(this,t),this.timeGrid.setRange(t),this.dayGrid&&this.dayGrid.setRange(t)},renderDates:function(){this.el.addClass("fc-agenda-view").html(this.renderSkeletonHtml()),this.renderHead(),this.scroller.render();var e=this.scroller.el.addClass("fc-time-grid-container"),n=t('
').appendTo(e);this.el.find(".fc-body > tr > td").append(e),this.timeGrid.setElement(n),this.timeGrid.renderDates(),this.bottomRuleEl=t('
').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},renderHead:function(){this.headContainerEl=this.el.find(".fc-head-container").html(this.timeGrid.renderHeadHtml())},unrenderDates:function(){this.timeGrid.unrenderDates(),this.timeGrid.removeElement(),this.dayGrid&&(this.dayGrid.unrenderDates(),this.dayGrid.removeElement()),this.scroller.destroy()},renderSkeletonHtml:function(){return'
'+(this.dayGrid?'

':"")+"
"},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},renderBusinessHours:function(){this.timeGrid.renderBusinessHours(),this.dayGrid&&this.dayGrid.renderBusinessHours()},unrenderBusinessHours:function(){this.timeGrid.unrenderBusinessHours(),this.dayGrid&&this.dayGrid.unrenderBusinessHours()},getNowIndicatorUnit:function(){return this.timeGrid.getNowIndicatorUnit()},renderNowIndicator:function(t){this.timeGrid.renderNowIndicator(t)},unrenderNowIndicator:function(){this.timeGrid.unrenderNowIndicator()},updateSize:function(t){this.timeGrid.updateSize(t),Ee.prototype.updateSize.call(this,t)},updateWidth:function(){this.axisWidth=u(this.el.find(".fc-axis"))},setHeight:function(t,e){var n,s,o;this.bottomRuleEl.hide(),this.scroller.clear(),r(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.removeSegPopover(),n=this.opt("eventLimit"),n&&"number"!=typeof n&&(n=Ge),n&&this.dayGrid.limitRows(n)),e||(s=this.computeScrollerHeight(t),this.scroller.setHeight(s),o=this.scroller.getScrollbarWidths(),(o.left||o.right)&&(i(this.noScrollRowEls,o),s=this.computeScrollerHeight(t),this.scroller.setHeight(s)),this.scroller.lockOverflow(o),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:this.start,type:"week",forceOff:this.colCnt>1},tt(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){var t=this.view;return'"}},Ne={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){var t=this.view;return'"}},Ge=5,Oe=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}];Zt.agenda={class:ze,defaults:{allDaySlot:!0,slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0}},Zt.agendaDay={type:"agenda",duration:{days:1}},Zt.agendaWeek={type:"agenda",duration:{weeks:1}};var Ae=Ee.extend({grid:null,scroller:null,initialize:function(){this.grid=new Ve(this),this.scroller=new be({overflowX:"hidden",overflowY:"auto"})},setRange:function(t){Ee.prototype.setRange.call(this,t),this.grid.setRange(t)},renderSkeleton:function(){this.el.addClass("fc-list-view "+this.widgetContentClass),this.scroller.render(),this.scroller.el.appendTo(this.el),this.grid.setElement(this.scroller.scrollEl)},unrenderSkeleton:function(){this.scroller.destroy()},setHeight:function(t,e){this.scroller.setHeight(this.computeScrollerHeight(t))},computeScrollerHeight:function(t){return t-c(this.el,this.scroller.el); +},renderEvents:function(t){this.grid.renderEvents(t)},unrenderEvents:function(){this.grid.unrenderEvents()},isEventResizable:function(t){return!1},isEventDraggable:function(t){return!1}}),Ve=me.extend({segSelector:".fc-list-item",hasDayInteractions:!1,spanToSegs:function(t){for(var e,n=this.view,i=n.start.clone().time(0),r=0,s=[];i
'+tt(this.view.opt("noEventsMessage"))+"
")},renderSegList:function(e){var n,i,r,s=this.groupSegsByDay(e),o=t('
'),l=o.find("tbody");for(n=0;n'+(n?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},tt(t.format(n))):"")+(i?e.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},tt(t.format(i))):"")+""},fgSegHtml:function(t){var e,n=this.view,i=["fc-list-item"].concat(this.getSegCustomClasses(t)),r=this.getSegBackgroundColor(t),s=t.event,o=s.url;return e=s.allDay?n.getAllDayHtml():n.isMultiDayEvent(s)?t.isStart||t.isEnd?tt(this.getEventTimeText(t)):n.getAllDayHtml():tt(this.getEventTimeText(s)),o&&i.push("fc-has-url"),''+(this.displayEventTime?''+(e||"")+"":"")+'"+tt(t.event.title||"")+""}});return Zt.list={class:Ae,buttonTextKey:"list",defaults:{buttonText:"list",listDayFormat:"LL",noEventsMessage:"No events to display"}},Zt.listDay={type:"list",duration:{days:1},defaults:{listDayFormat:"dddd"}},Zt.listWeek={type:"list",duration:{weeks:1},defaults:{listDayFormat:"dddd",listDayAltFormat:"LL"}},Zt.listMonth={type:"list",duration:{month:1},defaults:{listDayAltFormat:"dddd"}},Zt.listYear={type:"list",duration:{year:1},defaults:{listDayAltFormat:"dddd"}},qt}); \ No newline at end of file diff --git a/library/fullcalendar/fullcalendar.print.css b/library/fullcalendar/fullcalendar.print.css index bfa910b3c..5e1183071 100644 --- a/library/fullcalendar/fullcalendar.print.css +++ b/library/fullcalendar/fullcalendar.print.css @@ -1,5 +1,5 @@ /*! - * FullCalendar v3.0.1 Print Stylesheet + * FullCalendar v3.1.0 Print Stylesheet * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ diff --git a/library/fullcalendar/fullcalendar.print.min.css b/library/fullcalendar/fullcalendar.print.min.css new file mode 100644 index 000000000..05281cf21 --- /dev/null +++ b/library/fullcalendar/fullcalendar.print.min.css @@ -0,0 +1,5 @@ +/*! + * FullCalendar v3.1.0 Print Stylesheet + * Docs & License: http://fullcalendar.io/ + * (c) 2016 Adam Shaw + */.fc-bg,.fc-bgevent-container,.fc-bgevent-skeleton,.fc-business-container,.fc-event .fc-resizer,.fc-helper-container,.fc-helper-skeleton,.fc-highlight-container,.fc-highlight-skeleton{display:none}.fc tbody .fc-row,.fc-time-grid{min-height:0!important}.fc-time-grid .fc-event.fc-not-end:after,.fc-time-grid .fc-event.fc-not-start:before{content:"..."}.fc{max-width:100%!important}.fc-event{background:#fff!important;color:#000!important;page-break-inside:avoid}.fc hr,.fc tbody,.fc td,.fc th,.fc thead,.fc-row{border-color:#ccc!important;background:#fff!important}.fc tbody .fc-row{height:auto!important}.fc tbody .fc-row .fc-content-skeleton{position:static;padding-bottom:0!important}.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td{padding-bottom:1em}.fc tbody .fc-row .fc-content-skeleton table{height:1em}.fc-more,.fc-more-cell{display:none!important}.fc tr.fc-limited{display:table-row!important}.fc td.fc-limited{display:table-cell!important}.fc-agenda-view .fc-axis,.fc-popover{display:none}.fc-slats,.fc-time-grid hr{display:none!important}.fc button,.fc-button-group,.fc-time-grid .fc-event .fc-time span{display:none}.fc-time-grid .fc-content-skeleton{position:static}.fc-time-grid .fc-content-skeleton table{height:4em}.fc-time-grid .fc-event-container{margin:0!important}.fc-time-grid .fc-event{position:static!important;margin:3px 2px!important}.fc-time-grid .fc-event.fc-not-end{border-bottom-width:1px!important}.fc-time-grid .fc-event.fc-not-start{border-top-width:1px!important}.fc-time-grid .fc-event .fc-time{white-space:normal!important}.fc-time-grid .fc-event .fc-time:after{content:attr(data-full)}.fc-day-grid-container,.fc-scroller,.fc-time-grid-container{overflow:visible!important;height:auto!important}.fc-row{border:0!important;margin:0!important} \ No newline at end of file diff --git a/library/fullcalendar/gcal.js b/library/fullcalendar/gcal.js index dfe6fa905..1975cca72 100644 --- a/library/fullcalendar/gcal.js +++ b/library/fullcalendar/gcal.js @@ -1,5 +1,5 @@ /*! - * FullCalendar v3.0.1 Google Calendar Plugin + * FullCalendar v3.1.0 Google Calendar Plugin * Docs & License: http://fullcalendar.io/ * (c) 2016 Adam Shaw */ diff --git a/library/fullcalendar/gcal.min.js b/library/fullcalendar/gcal.min.js new file mode 100644 index 000000000..08876848f --- /dev/null +++ b/library/fullcalendar/gcal.min.js @@ -0,0 +1,6 @@ +/*! + * FullCalendar v3.1.0 Google Calendar Plugin + * Docs & License: http://fullcalendar.io/ + * (c) 2016 Adam Shaw + */ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){function a(a,t,d,c,i){function s(o,r){var l=r||[{message:o}];(a.googleCalendarError||e.noop).apply(i,l),(i.options.googleCalendarError||e.noop).apply(i,l),n.warn.apply(null,[o].concat(r||[]))}var u,g,p=r+"/"+encodeURIComponent(a.googleCalendarId)+"/events?callback=?",m=a.googleCalendarApiKey||i.options.googleCalendarApiKey,f=a.success;return m?(t.hasZone()||(t=t.clone().utc().add(-1,"day")),d.hasZone()||(d=d.clone().utc().add(1,"day")),c&&"local"!=c&&(g=c.replace(" ","_")),u=e.extend({},a.data||{},{key:m,timeMin:t.format(),timeMax:d.format(),timeZone:g,singleEvents:!0,maxResults:9999}),e.extend({},a,{googleCalendarId:null,url:p,data:u,startParam:!1,endParam:!1,timezoneParam:!1,success:function(a){var r,n,t=[];if(a.error)s("Google Calendar API: "+a.error.message,a.error.errors);else if(a.items&&(e.each(a.items,function(e,a){var r=a.htmlLink||null;g&&null!==r&&(r=o(r,"ctz="+g)),t.push({id:a.id,title:a.summary,start:a.start.dateTime||a.start.date,end:a.end.dateTime||a.end.date,url:r,location:a.location,description:a.description})}),r=[t].concat(Array.prototype.slice.call(arguments,1)),n=l(f,this,r),e.isArray(n)))return n;return t}})):(s("Specify a googleCalendarApiKey. See http://fullcalendar.io/docs/google_calendar/"),{})}function o(e,a){return e.replace(/(\?.*?)?(#|$)/,function(e,o,r){return(o?o+"&":"?")+a+r})}var r="https://www.googleapis.com/calendar/v3/calendars",n=e.fullCalendar,l=n.applyAll;n.sourceNormalizers.push(function(e){var a,o=e.googleCalendarId,r=e.url;!o&&r&&(/^[^\/]+@([^\/\.]+\.)*(google|googlemail|gmail)\.com$/.test(r)?o=r:((a=/^https:\/\/www.googleapis.com\/calendar\/v3\/calendars\/([^\/]*)/.exec(r))||(a=/^https?:\/\/www.google.com\/calendar\/feeds\/([^\/]*)/.exec(r)))&&(o=decodeURIComponent(a[1])),o&&(e.googleCalendarId=o)),o&&(null==e.editable&&(e.editable=!1),e.url=o)}),n.sourceFetchers.push(function(e,o,r,n){if(e.googleCalendarId)return a(e,o,r,n,this)})}); \ No newline at end of file diff --git a/library/fullcalendar/locale-all.js b/library/fullcalendar/locale-all.js index 8332f58fa..a648a74bc 100644 --- a/library/fullcalendar/locale-all.js +++ b/library/fullcalendar/locale-all.js @@ -1,5 +1,5 @@ -!function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):"object"==typeof exports?module.exports=e(require("jquery"),require("moment")):e(jQuery,moment)}(function(e,a){!function(){!function(){var e={1:"١",2:"٢",3:"ŮŁ",4:"٤",5:"ŮĄ",6:"٦",7:"٧",8:"٨",9:"Ů©",0:"Ů "},t={"١":"1","٢":"2","ŮŁ":"3","٤":"4","ŮĄ":"5","٦":"6","٧":"7","٨":"8","Ů©":"9","Ů ":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:["ŘŁŮ‚Ů„ من ثانية","ثانية Ůاحدة",["ثانيتان","ثانيتين"],"%d Ř«Ůان","%d ثانية","%d ثانية"],m:["ŘŁŮ‚Ů„ من ŘŻŮ‚ŮŠŮ‚Ř©","ŘŻŮ‚ŮŠŮ‚Ř© Ůاحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d ŘŻŮ‚ŮŠŮ‚Ř©","%d ŘŻŮ‚ŮŠŮ‚Ř©"],h:["ŘŁŮ‚Ů„ من ساعة","ساعة Ůاحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["ŘŁŮ‚Ů„ من ŮŠŮŮ…","ŮŠŮŮ… Ůاحد",["ŮŠŮمان","ŮŠŮمين"],"%d أيام","%d ŮŠŮمًا","%d ŮŠŮŮ…"],M:["ŘŁŮ‚Ů„ من شهر","شهر Ůاحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["ŘŁŮ‚Ů„ من عام","عام Ůاحد",["عامان","عامين"],"%d ŘŁŘąŮام","%d عامًا","%d عام"]},s=function(e){return function(a,t,s,d){var i=n(a),o=r[e][n(a)];return 2===i&&(o=o[t?0:1]),o.replace(/%d/i,a)}},d=["ŮانŮن الثاني يناير","شباط Ůبراير","آذار مارس","نيسان أبريل","أيار مايŮ","حزيران ŮŠŮنيŮ","ŘŞŮ…Ůز ŮŠŮŮ„ŮŠŮ","آب أغسطس","ŘŁŮŠŮ„ŮŮ„ سبتمبر","تشرين الأŮŮ„ ŘŁŮŘŞŮبر","تشرين الثاني نŮŮمبر","ŮانŮن الأŮŮ„ ديسمبر"],i=a.defineLocale("ar",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ů…/,isPM:function(e){return"Ů…"===e},meridiem:function(e,a,t){return e<12?"ص":"Ů…"},calendar:{sameDay:"[اليŮŮ… عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[ŘŁŮ…Řł عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/\u200f/g,"").replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},week:{dow:6,doy:12}});return i}(),e.fullCalendar.datepickerLocale("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-ma",{months:"يناير_Ůبراير_مارس_أبريل_ماي_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮز_غشت_شتنبر_ŘŁŮŘŞŮبر_نŮنبر_دجنبر".split("_"),monthsShort:"يناير_Ůبراير_مارس_أبريل_ماي_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮز_غشت_شتنبر_ŘŁŮŘŞŮبر_نŮنبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},week:{dow:6,doy:12}});return e}(),e.fullCalendar.datepickerLocale("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-ma",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e={1:"١",2:"٢",3:"ŮŁ",4:"٤",5:"ŮĄ",6:"٦",7:"٧",8:"٨",9:"Ů©",0:"Ů "},t={"١":"1","٢":"2","ŮŁ":"3","٤":"4","ŮĄ":"5","٦":"6","٧":"7","٨":"8","Ů©":"9","Ů ":"0"},n=a.defineLocale("ar-sa",{months:"يناير_Ůبراير_مارس_أبريل_مايŮ_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮ_أغسطس_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),monthsShort:"يناير_Ůبراير_مارس_أبريل_مايŮ_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮ_أغسطس_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ů…/,isPM:function(e){return"Ů…"===e},meridiem:function(e,a,t){return e<12?"ص":"Ů…"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},week:{dow:6,doy:12}});return n}(),e.fullCalendar.datepickerLocale("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-sa",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-tn",{months:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),monthsShort:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-tn",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("bg",{months:"ŃŹĐ˝Ńари_феврŃари_март_април_ĐĽĐ°Đą_юни_юли_авгŃŃŃ‚_Ńептември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_ĐĽĐ°Ń€_апр_ĐĽĐ°Đą_юни_юли_авг_Ńеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_Ńряда_четвъртък_петък_Ńъбота".split("_"),weekdaysShort:"нед_пон_вто_Ńря_чет_пет_Ńъб".split("_"),weekdaysMin:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Đ”Đ˝ĐµŃ Đ˛] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Đ’ изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Đ’ изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"Ńлед %s",past:"преди %s",s:"няколко ŃекŃнди",m:"минŃŃ‚Đ°",mm:"%d минŃти",h:"чаŃ",hh:"%d чаŃĐ°",d:"ден",dd:"%d дни",M:"меŃец",MM:"%d меŃеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днеŃ",monthNames:["ĐŻĐ˝Ńари","ФеврŃари","Март","Đприл","Май","Юни","Юли","ĐвгŃŃŃ‚","Септември","Октомври","Ноември","Декември"],monthNamesShort:["ĐŻĐ˝Ń","Фев","Мар","Đпр","Май","Юни","Юли","Đвг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Đ’Ń‚Đľ","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Đ’Ń‚","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("bg",{buttonText:{month:"МеŃец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e},noEventsMessage:"Няма Ńъбития Đ·Đ° показване"})}(),function(){!function(){var e=a.defineLocale("ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demĂ  a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,a){var t=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==a&&"W"!==a||(t="a"),e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"SegĂĽent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"mĂ©s",noEventsMessage:"No hi ha esdeveniments per mostrar"})}(),function(){!function(){function e(e){return e>1&&e<5&&1!==~~(e/10)}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?s+(e(a)?"minuty":"minut"):s+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodin"):s+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?s+(e(a)?"dny":"dnĂ­"):s+"dny";case"M":return t||r?"mÄ›sĂ­c":"mÄ›sĂ­cem";case"MM":return t||r?s+(e(a)?"mÄ›sĂ­ce":"mÄ›sĂ­cĹŻ"):s+"mÄ›sĂ­ci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?s+(e(a)?"roky":"let"):s+"lety"}}var n="leden_Ăşnor_bĹ™ezen_duben_kvÄ›ten_ÄŤerven_ÄŤervenec_srpen_září_říjen_listopad_prosinec".split("_"),r="led_Ăşno_bĹ™e_dub_kvÄ›_ÄŤvn_ÄŤvc_srp_zář_říj_lis_pro".split("_"),s=a.defineLocale("cs",{months:n,monthsShort:r,monthsParse:function(e,a){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$|^"+a[t]+"$","i");return n}(n,r),shortMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(r),longMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(n),weekdays:"nedÄ›le_pondÄ›lĂ­_ĂşterĂ˝_stĹ™eda_ÄŤtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_Ăşt_st_ÄŤt_pá_so".split("_"),weekdaysMin:"ne_po_Ăşt_st_ÄŤt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zĂ­tra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedÄ›li v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve stĹ™edu v] LT";case 4:return"[ve ÄŤtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[vÄŤera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou nedÄ›li v] LT";case 1:case 2:return"[minulĂ©] dddd [v] LT";case 3:return"[minulou stĹ™edu v] LT";case 4:case 5:return"[minulĂ˝] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pĹ™ed %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"PozdÄ›ji>",currentText:"NynĂ­",monthNames:["leden","Ăşnor","bĹ™ezen","duben","kvÄ›ten","ÄŤerven","ÄŤervenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","Ăşno","bĹ™e","dub","kvÄ›","ÄŤer","ÄŤvc","srp","zář","říj","lis","pro"],dayNames:["nedÄ›le","pondÄ›lĂ­","ĂşterĂ˝","stĹ™eda","ÄŤtvrtek","pátek","sobota"],dayNamesShort:["ne","po","Ăşt","st","ÄŤt","pá","so"],dayNamesMin:["ne","po","Ăşt","st","ÄŤt","pá","so"],weekHeader:"TĂ˝d",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("cs",{buttonText:{month:"MÄ›sĂ­c",week:"TĂ˝den",day:"Den",list:"Agenda"},allDayText:"CelĂ˝ den",eventLimitText:function(e){return"+další: "+e},noEventsMessage:"ŽádnĂ© akce k zobrazenĂ­"})}(),function(){!function(){var e=a.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY HH:mm"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I gĂĄr kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"fĂĄ sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en mĂĄned",MM:"%d mĂĄneder",y:"et ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("da",{buttonText:{month:"MĂĄned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere",noEventsMessage:"Ingen arrangementer at vise"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de","de",{closeText:"SchlieĂźen",prevText:"<ZurĂĽck",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"TerminĂĽbersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de-at","de",{closeText:"SchlieĂźen",prevText:"<ZurĂĽck",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"TerminĂĽbersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})}(),function(){!function(){function e(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}var t=a.defineLocale("el",{monthsNominativeEl:"ΙανουάĎιος_ΦεβĎουάĎιος_ΜάĎτιος_ΑπĎίλιος_Μάιος_Ιούνιος_Ιούλιος_ΑύγουĎτος_ΣεπτέμβĎιος_ΟκτώβĎιος_ΝοέμβĎιος_ΔεκέμβĎιος".split("_"),monthsGenitiveEl:"ΙανουαĎίου_ΦεβĎουαĎίου_ΜαĎτίου_ΑπĎιλίου_ΜαÎου_Ιουνίου_Ιουλίου_ΑυγούĎτου_ΣεπτεμβĎίου_ΟκτωβĎίου_ΝοεμβĎίου_ΔεκεμβĎίου".split("_"),months:function(e,a){return/D/.test(a.substring(0,a.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]},monthsShort:"Ιαν_Φεβ_ΜαĎ_ΑπĎ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"ΚυĎιακή_ΔευτέĎα_ΤĎίτη_ΤετάĎτη_Πέμπτη_ΠαĎαĎκευή_Σάββατο".split("_"),weekdaysShort:"ΚυĎ_Δευ_ΤĎÎą_Τετ_Πεμ_ΠαĎ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_ΤĎ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,a,t){return e>11?t?"ÎĽÎĽ":"ΜΜ":t?"πμ":"ΠΜ"},isPM:function(e){return"ÎĽ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Îś?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[ΣήμεĎα {}] LT",nextDay:"[ΑύĎιο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[Ď„Îż Ď€Ďοηγούμενο] dddd [{}] LT";default:return"[την Ď€Ďοηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(a,t){var n=this._calendarEl[a],r=t&&t.hours();return e(n)&&(n=n.apply(t)),n.replace("{}",r%12===1?"Ďτη":"Ďτις")},relativeTime:{future:"Ďε %s",past:"%s Ď€Ďιν",s:"λίγα δευτεĎόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ĎŽĎα",hh:"%d ĎŽĎες",d:"μία μέĎα",dd:"%d μέĎες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χĎόνος",yy:"%d χĎόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("el","el",{closeText:"ΚλείĎιμο",prevText:"ΠĎοηγούμενος",nextText:"Επόμενος",currentText:"ΣήμεĎα",monthNames:["ΙανουάĎιος","ΦεβĎουάĎιος","ΜάĎτιος","ΑπĎίλιος","Μάιος","Ιούνιος","Ιούλιος","ΑύγουĎτος","ΣεπτέμβĎιος","ΟκτώβĎιος","ΝοέμβĎιος","ΔεκέμβĎιος"],monthNamesShort:["Ιαν","Φεβ","ΜαĎ","ΑπĎ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["ΚυĎιακή","ΔευτέĎα","ΤĎίτη","ΤετάĎτη","Πέμπτη","ΠαĎαĎκευή","Σάββατο"],dayNamesShort:["ΚυĎ","Δευ","ΤĎÎą","Τετ","Πεμ","ΠαĎ","Σαβ"],dayNamesMin:["Κυ","Δε","ΤĎ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"ΗμέĎα",list:"Ατζέντα"},allDayText:"ΟλοήμεĎÎż",eventLimitText:"πεĎÎąĎĎότεĎα",noEventsMessage:"Δεν υπάĎχουν γεγονότα για να εμφανιĎτεί"})}(),function(){!function(){var e=a.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-au")}(),function(){!function(){var e=a.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t}});return e}(),e.fullCalendar.locale("en-ca")}(),function(){!function(){var e=a.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-gb")}(),function(){!function(){var e=a.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.locale("en-ie")}(),function(){!function(){var e=a.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-nz")}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es",{ -months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miĂ©rcoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._miĂ©._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĂ­a",dd:"%d dĂ­as",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miĂ©rcoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","miĂ©","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es",{buttonText:{month:"Mes",week:"Semana",day:"DĂ­a",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es-do","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es-do",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
osoa",eventLimitText:"gehiago",noEventsMessage:"Ez dago ekitaldirik erakusteko"})}(),function(){!function(){var e={1:"۱",2:"۲",3:"Űł",4:"Ű´",5:"۵",6:"۶",7:"Ű·",8:"۸",9:"Űą",0:"Ű°"},t={"۱":"1","۲":"2","Űł":"3","Ű´":"4","۵":"5","۶":"6","Ű·":"7","۸":"8","Űą":"9","Ű°":"0"},n=a.defineLocale("fa",{months:"ÚانŮیه_ŮŮریه_مارس_آŮریل_مه_ÚŮئن_ÚŮئیه_اŮŘŞ_سپتامبر_اکتبر_نŮامبر_دسامبر".split("_"),monthsShort:"ÚانŮیه_ŮŮریه_مارس_آŮریل_مه_ÚŮئن_ÚŮئیه_اŮŘŞ_سپتامبر_اکتبر_نŮامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_ŘŻŮشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_ŘŻŮشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ŰŚ_ŘŻ_Řł_Ú†_Ůľ_ج_Ř´".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,a,t){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امرŮز ساعت] LT",nextDay:"[Ůردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیرŮز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"ŰŚÚ© دقیقه",mm:"%d دقیقه",h:"ŰŚÚ© ساعت",hh:"%d ساعت",d:"ŰŚÚ© رŮز",dd:"%d رŮز",M:"ŰŚÚ© ماه",MM:"%d ماه",y:"ŰŚÚ© سال",yy:"%d سال"},preparse:function(e){return e.replace(/[Ű°-Űą]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},ordinalParse:/\d{1,2}Ů…/,ordinal:"%dŮ…",week:{dow:6,doy:12}});return n}(),e.fullCalendar.datepickerLocale("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امرŮز",monthNames:["ÚانŮیه","ŮŮریه","مارس","آŮریل","مه","ÚŮئن","ÚŮئیه","اŮŘŞ","سپتامبر","اکتبر","نŮامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","ŘŻŮشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ŰŚ","ŘŻ","Řł","Ú†","Ůľ","ج","Ř´"],dayNamesMin:["ŰŚ","ŘŻ","Řł","Ú†","Ůľ","ج","Ř´"],weekHeader:"هŮ",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fa",{buttonText:{month:"ماه",week:"هŮته",day:"رŮز",list:"برنامه"},allDayText:"تمام رŮز",eventLimitText:function(e){return"بیش از "+e},noEventsMessage:"هیچ رŮیدادی به نمایش"})}(),function(){!function(){function e(e,a,n,r){var s="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"m":return r?"minuutin":"minuutti";case"mm":s=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":s=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":s=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":s=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":s=r?"vuoden":"vuotta"}return s=t(e,r)+" "+s}function t(e,a){return e<10?a?r[e]:n[e]:e}var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),r=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]],s=a.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää",noEventsMessage:"Ei tapahtumia näytettäviä"})}(),function(){!function(){var e=a.defineLocale("fr",{months:"janvier_fĂ©vrier_mars_avril_mai_juin_juillet_aoĂ»t_septembre_octobre_novembre_dĂ©cembre".split("_"),monthsShort:"janv._fĂ©vr._mars_avr._mai_juin_juil._aoĂ»t_sept._oct._nov._dĂ©c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui Ă ] LT",nextDay:"[Demain Ă ] LT",nextWeek:"dddd [Ă ] LT",lastDay:"[Hier Ă ] LT",lastWeek:"dddd [dernier Ă ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr","fr",{closeText:"Fermer",prevText:"PrĂ©cĂ©dent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","fĂ©vrier","mars","avril","mai","juin","juillet","aoĂ»t","septembre","octobre","novembre","dĂ©cembre"],monthNamesShort:["janv.","fĂ©vr.","mars","avr.","mai","juin","juil.","aoĂ»t","sept.","oct.","nov.","dĂ©c."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr",{buttonText:{year:"AnnĂ©e",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")}});return e}(),e.fullCalendar.datepickerLocale("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("gl",{months:"Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro".split("_"),monthsShort:"Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.".split("_"),monthsParseExact:!0,weekdays:"Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado".split("_"),weekdaysShort:"Dom._Lun._Mar._Mér._Xov._Ven._Sáb.".split("_"),weekdaysMin:"Do_Lu_Ma_Mé_Xo_Ve_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return"uns segundos"===e?"nuns segundos":"en "+e},past:"hai %s",s:"uns segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
o dĂ­a",eventLimitText:"máis",noEventsMessage:"Non hai eventos para amosar"})}(),function(){!function(){var e=a.defineLocale("he",{months:"ינו×ר_פברו×ר_מרץ_×פריל_מ××™_יוני_יולי_×וגוס×_ספ×מבר_×וק×ובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_×פר׳_מ××™_יוני_יולי_×וג׳_ספ×׳_×וק׳_נוב׳_דצמ׳".split("_"),weekdays:"ר×שון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"×׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"×_ב_×’_ד_×”_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[×תמול ב־]LT",lastWeek:"[ביום] dddd [×”×חרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10===0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/××—×”"צ|לפנה"צ|×חרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(××—×”"צ|×חרי הצהריים|בערב)$/.test(e)},meridiem:function(e,a,t){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?t?'לפנה"צ':"לפני הצהריים":e<18?t?'××—×”"צ':"×חרי הצהריים":"בערב"}});return e}(),e.fullCalendar.datepickerLocale("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הב×>",currentText:"היום",monthNames:["ינו×ר","פברו×ר","מרץ","×פריל","מ××™","יוני","יולי","×וגוס×","ספ×מבר","×וק×ובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","×פר","מ××™","יוני","יולי","×וג","ספ×","×וק","נוב","דצמ"],dayNames:["ר×שון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["×'","ב'","×’'","ד'","×”'","ו'","שבת"],dayNamesMin:["×'","ב'","×’'","ד'","×”'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("he",{buttonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",eventLimitText:"×חר",noEventsMessage:"×ין ×ירועים להצגה",weekNumberTitle:"שבוע"})}(),function(){!function(){var e={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},t={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},n=a.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रŕĄŕ¤˛_मŕ¤_जून_जŕĄŕ¤˛ŕ¤ľŕ¤_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रŕĄ._मŕ¤_जून_जŕĄŕ¤˛._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बŕĄŕ¤§ŕ¤µŕ¤ľŕ¤°_गŕĄŕ¤°ŕĄ‚वार_शŕĄŕ¤•ŕĄŤŕ¤°ŕ¤µŕ¤ľŕ¤°_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बŕĄŕ¤§_गŕĄŕ¤°ŕĄ‚_शŕĄŕ¤•ŕĄŤŕ¤°_शनि".split("_"),weekdaysMin:"र_सो_मं_बŕĄ_गŕĄ_शŕĄ_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कŕĄŕ¤› ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक ŕ¤ŕ¤‚टा",hh:"%d ŕ¤ŕ¤‚टे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return t[e]})},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]})},meridiemParse:/रात|सŕĄŕ¤¬ŕ¤ą|दोपहर|शाम/,meridiemHour:function(e,a){return 12===e&&(e=0),"रात"===a?e<4?e:e+12:"सŕĄŕ¤¬ŕ¤ą"===a?e:"दोपहर"===a?e>=10?e:e+12:"शाम"===a?e+12:void 0},meridiem:function(e,a,t){return e<4?"रात":e<10?"सŕĄŕ¤¬ŕ¤ą":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}});return n}(),e.fullCalendar.datepickerLocale("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मŕ¤","जून","जूलाŕ¤","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मŕ¤","जून","जूलाŕ¤","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बŕĄŕ¤§ŕ¤µŕ¤ľŕ¤°","गŕĄŕ¤°ŕĄŕ¤µŕ¤ľŕ¤°","शŕĄŕ¤•ŕĄŤŕ¤°ŕ¤µŕ¤ľŕ¤°","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बŕĄŕ¤§","गŕĄŕ¤°ŕĄ","शŕĄŕ¤•ŕĄŤŕ¤°","शनि"],dayNamesMin:["रवि","सोम","मंगल","बŕĄŕ¤§","गŕĄŕ¤°ŕĄ","शŕĄŕ¤•ŕĄŤŕ¤°","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e},noEventsMessage:"कोठŕ¤ŕ¤źŕ¤¨ŕ¤ľŕ¤“ं को प्रदर्शित करने के लिए"})}(),function(){!function(){function e(e,a,t){var n=e+" ";switch(t){case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}var t=a.defineLocale("hr",{months:{format:"sijeÄŤnja_veljaÄŤe_oĹľujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"sijeÄŤanj_veljaÄŤa_oĹľujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._oĹľu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_ÄŤetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._ÄŤet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_ÄŤe_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄŤer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["SijeÄŤanj","VeljaÄŤa","OĹľujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","OĹľu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","ÄŚetvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","ÄŚet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","ÄŚe","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema dogaÄ‘aja za prikaz"})}(),function(){!function(){function e(e,a,t,n){var r=e;switch(t){case"s":return n||a?"nĂ©hány másodperc":"nĂ©hány másodperce";case"m":return"egy"+(n||a?" perc":" perce");case"mm":return r+(n||a?" perc":" perce");case"h":return"egy"+(n||a?" Ăłra":" Ăłrája");case"hh":return r+(n||a?" Ăłra":" Ăłrája");case"d":return"egy"+(n||a?" nap":" napja");case"dd":return r+(n||a?" nap":" napja");case"M":return"egy"+(n||a?" hĂłnap":" hĂłnapja");case"MM":return r+(n||a?" hĂłnap":" hĂłnapja");case"y":return"egy"+(n||a?" Ă©v":" Ă©ve");case"yy":return r+(n||a?" Ă©v":" Ă©ve")}return""}function t(e){return(e?"":"[mĂşlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hĂ©tfĹ‘n kedden szerdán csĂĽtörtökön pĂ©nteken szombaton".split(" "),r=a.defineLocale("hu",{months:"január_február_március_április_május_jĂşnius_jĂşlius_augusztus_szeptember_oktĂłber_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jĂşn_jĂşl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hĂ©tfĹ‘_kedd_szerda_csĂĽtörtök_pĂ©ntek_szombat".split("_"),weekdaysShort:"vas_hĂ©t_kedd_sze_csĂĽt_pĂ©n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,a,t){return e<12?t===!0?"de":"DE":t===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return t.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return t.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s mĂşlva",past:"%s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return r}(),e.fullCalendar.datepickerLocale("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"elĹ‘re",currentText:"ma",monthNames:["Január","Február","Március","Ăprilis","Május","JĂşnius","JĂşlius","Augusztus","Szeptember","OktĂłber","November","December"],monthNamesShort:["Jan","Feb","Már","Ăpr","Máj","JĂşn","JĂşl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","HĂ©tfĹ‘","Kedd","Szerda","CsĂĽtörtök","PĂ©ntek","Szombat"],dayNamesShort:["Vas","HĂ©t","Ked","Sze","CsĂĽ","PĂ©n","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"HĂ©t",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("hu",{buttonText:{month:"HĂłnap",week:"HĂ©t",day:"Nap",list:"NaplĂł"},allDayText:"EgĂ©sz nap",eventLimitText:"további",noEventsMessage:"Nincs megjelenĂ­thetĹ‘ esemĂ©nyek"})}(),function(){!function(){var e=a.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"siang"===a?e>=11?e:e+12:"sore"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih",noEventsMessage:"Tidak ada acara untuk ditampilkan"})}(),function(){!function(){function e(e){return e%100===11||e%10!==1}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"nokkrar sekĂşndur":"nokkrum sekĂşndum";case"m":return t?"mĂ­nĂşta":"mĂ­nĂştu";case"mm":return e(a)?s+(t||r?"mĂ­nĂştur":"mĂ­nĂştum"):t?s+"mĂ­nĂşta":s+"mĂ­nĂştu";case"hh":return e(a)?s+(t||r?"klukkustundir":"klukkustundum"):s+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return e(a)?t?s+"dagar":s+(r?"daga":"dögum"):t?s+"dagur":s+(r?"dag":"degi");case"M":return t?"mánuĂ°ur":r?"mánuĂ°":"mánuĂ°i";case"MM":return e(a)?t?s+"mánuĂ°ir":s+(r?"mánuĂ°i":"mánuĂ°um"):t?s+"mánuĂ°ur":s+(r?"mánuĂ°":"mánuĂ°i");case"y":return t||r?"ár":"ári";case"yy":return e(a)?s+(t||r?"ár":"árum"):s+(t||r?"ár":"ári")}}var n=a.defineLocale("is",{months:"janĂşar_febrĂşar_mars_aprĂ­l_maĂ­_jĂşnĂ­_jĂşlĂ­_ágĂşst_september_oktĂłber_nĂłvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maĂ­_jĂşn_jĂşl_ágĂş_sep_okt_nĂłv_des".split("_"),weekdays:"sunnudagur_mánudagur_ĂľriĂ°judagur_miĂ°vikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_Ăľri_miĂ°_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Ăžr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{ -sameDay:"[Ă­ dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Ă­ gær kl.] LT",lastWeek:"[sĂ­Ă°asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s sĂ­Ă°an",s:t,m:t,mm:t,h:"klukkustund",hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"ĂŤ dag",monthNames:["JanĂşar","FebrĂşar","Mars","AprĂ­l","MaĂ­","JĂşnĂ­","JĂşlĂ­","ĂgĂşst","September","OktĂłber","NĂłvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","MaĂ­","JĂşn","JĂşl","ĂgĂş","Sep","Okt","NĂłv","Des"],dayNames:["Sunnudagur","Mánudagur","ĂžriĂ°judagur","MiĂ°vikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Ăžri","MiĂ°","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Ăžr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("is",{buttonText:{month:"MánuĂ°ur",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira",noEventsMessage:"Engir viðburðir til að sýna"})}(),function(){!function(){var e=a.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"Do_Lu_Ma_Me_Gi_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e},noEventsMessage:"Non ci sono eventi da visualizzare"})}(),function(){!function(){var e=a.defineLocale("ja",{months:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),monthsShort:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),weekdays:"日曜日_ćść›ść—Ą_ç«ć›ść—Ą_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"ć—Ą_ćś_ç«_ć°´_木_金_ĺśź".split("_"),weekdaysMin:"ć—Ą_ćś_ç«_ć°´_木_金_ĺśź".split("_"),longDateFormat:{LT:"Ah時mĺ†",LTS:"Ah時mĺ†s秒",L:"YYYY/MM/DD",LL:"YYYYĺą´MćśDć—Ą",LLL:"YYYYĺą´MćśDć—ĄAh時mĺ†",LLLL:"YYYYĺą´MćśDć—ĄAh時mĺ† dddd"},meridiemParse:/ĺŤĺ‰Ť|ĺŤĺľŚ/i,isPM:function(e){return"ĺŤĺľŚ"===e},meridiem:function(e,a,t){return e<12?"ĺŤĺ‰Ť":"ĺŤĺľŚ"},calendar:{sameDay:"[今日] LT",nextDay:"[ćŽć—Ą] LT",nextWeek:"[来週]dddd LT",lastDay:"[ć¨ć—Ą] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},ordinalParse:/\d{1,2}ć—Ą/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"ć—Ą";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1ĺ†",mm:"%dĺ†",h:"1時間",hh:"%d時間",d:"1ć—Ą",dd:"%dć—Ą",M:"1ă¶ćś",MM:"%dă¶ćś",y:"1ĺą´",yy:"%dĺą´"}});return e}(),e.fullCalendar.datepickerLocale("ja","ja",{closeText:"é–‰ăă‚‹",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1ćś","2ćś","3ćś","4ćś","5ćś","6ćś","7ćś","8ćś","9ćś","10ćś","11ćś","12ćś"],monthNamesShort:["1ćś","2ćś","3ćś","4ćś","5ćś","6ćś","7ćś","8ćś","9ćś","10ćś","11ćś","12ćś"],dayNames:["日曜日","ćść›ść—Ą","ç«ć›ść—Ą","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["ć—Ą","ćś","ç«","ć°´","木","金","ĺśź"],dayNamesMin:["ć—Ą","ćś","ç«","ć°´","木","金","ĺśź"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ĺą´"}),e.fullCalendar.locale("ja",{buttonText:{month:"ćś",week:"週",day:"ć—Ą",list:"äşĺ®šăŞă‚ąă"},allDayText:"終日",eventLimitText:function(e){return"ä»– "+e+" 件"},noEventsMessage:"イă™ăłăăŚčˇ¨ç¤şă•ă‚ŚăŞă„ă‚ă†ă«"})}(),function(){!function(){var e=a.defineLocale("ko",{months:"1ě›”_2ě›”_3ě›”_4ě›”_5ě›”_6ě›”_7ě›”_8ě›”_9ě›”_10ě›”_11ě›”_12ě›”".split("_"),monthsShort:"1ě›”_2ě›”_3ě›”_4ě›”_5ě›”_6ě›”_7ě›”_8ě›”_9ě›”_10ě›”_11ě›”_12ě›”".split("_"),weekdays:"일요일_월요일_화요일_ě요일_목요일_ę¸ěš”일_토요일".split("_"),weekdaysShort:"일_ě›”_í™”_ě_목_ę¸_토".split("_"),weekdaysMin:"일_ě›”_í™”_ě_목_ę¸_토".split("_"),longDateFormat:{LT:"A hě‹ś m분",LTS:"A hě‹ś m분 sě´",L:"YYYY.MM.DD",LL:"YYYYë…„ MMMM D일",LLL:"YYYYë…„ MMMM D일 A hě‹ś m분",LLLL:"YYYYë…„ MMMM D일 dddd A hě‹ś m분"},calendar:{sameDay:"ě¤ëŠ LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"ě–´ě ś LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s ě „",s:"몇 ě´",ss:"%dě´",m:"일분",mm:"%d분",h:"í•ś ě‹śę°„",hh:"%dě‹śę°„",d:"í•ëŁ¨",dd:"%d일",M:"í•ś 달",MM:"%d달",y:"일 ë…„",yy:"%dë…„"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/ě¤ě „|ě¤í›„/,isPM:function(e){return"ě¤í›„"===e},meridiem:function(e,a,t){return e<12?"ě¤ě „":"ě¤í›„"}});return e}(),e.fullCalendar.datepickerLocale("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"ě¤ëŠ",monthNames:["1ě›”","2ě›”","3ě›”","4ě›”","5ě›”","6ě›”","7ě›”","8ě›”","9ě›”","10ě›”","11ě›”","12ě›”"],monthNamesShort:["1ě›”","2ě›”","3ě›”","4ě›”","5ě›”","6ě›”","7ě›”","8ě›”","9ě›”","10ě›”","11ě›”","12ě›”"],dayNames:["일요일","월요일","화요일","ě요일","목요일","ę¸ěš”일","토요일"],dayNamesShort:["일","ě›”","í™”","ě","목","ę¸","토"],dayNamesMin:["일","ě›”","í™”","ě","목","ę¸","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ë…„"}),e.fullCalendar.locale("ko",{buttonText:{month:"ě›”",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"ę°ś",noEventsMessage:"일정이 í‘śě‹ś 없습ë‹ë‹¤"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return a?r[t][0]:r[t][1]}function t(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"a "+e:"an "+e}function n(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"viru "+e:"virun "+e}function r(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var a=e%10,t=e/10;return r(0===a?t:a)}if(e<1e4){for(;e>=10;)e/=10;return r(e)}return e/=1e3,r(e)}var s=a.defineLocale("lb",{months:"Januar_Februar_Mäerz_AbrĂ«ll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_MĂ©indeg_DĂ«nschdeg_MĂ«ttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._MĂ©._DĂ«._MĂ«._Do._Fr._Sa.".split("_"),weekdaysMin:"So_MĂ©_DĂ«_MĂ«_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[GĂ«schter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:n,s:"e puer Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d MĂ©int",y:e,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("lb","lb",{closeText:"Fäerdeg",prevText:"ZrĂ©ck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","AbrĂ«ll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","MĂ©indeg","DĂ«nschdeg","MĂ«ttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","MĂ©i","DĂ«n","MĂ«t","Don","Fre","Sam"],dayNamesMin:["So","MĂ©","DĂ«","MĂ«","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"mĂ©i",noEventsMessage:"Nee Evenementer ze affichĂ©ieren"})}(),function(){!function(){function e(e,a,t,n){return a?"kelios sekundÄ—s":n?"keliĹł sekundĹľiĹł":"kelias sekundes"}function t(e,a,t,n){return a?r(t)[0]:n?r(t)[1]:r(t)[2]}function n(e){return e%10===0||e>10&&e<20}function r(e){return d[e].split("_")}function s(e,a,s,d){var i=e+" ";return 1===e?i+t(e,a,s[0],d):a?i+(n(e)?r(s)[1]:r(s)[0]):d?i+r(s)[1]:i+(n(e)?r(s)[1]:r(s)[2])}var d={m:"minutÄ—_minutÄ—s_minutÄ™",mm:"minutÄ—s_minuÄŤiĹł_minutes",h:"valanda_valandos_valandÄ…",hh:"valandos_valandĹł_valandas",d:"diena_dienos_dienÄ…",dd:"dienos_dienĹł_dienas",M:"mÄ—nuo_mÄ—nesio_mÄ—nesÄŻ",MM:"mÄ—nesiai_mÄ—nesiĹł_mÄ—nesius",y:"metai_metĹł_metus",yy:"metai_metĹł_metus"},i=a.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandĹľio_gegužės_birĹľelio_liepos_rugpjĹ«ÄŤio_rugsÄ—jo_spalio_lapkriÄŤio_gruodĹľio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birĹľelis_liepa_rugpjĹ«tis_rugsÄ—jis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?|MMMM?(\[[^\[\]]*\]|\s+)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienÄŻ_pirmadienÄŻ_antradienÄŻ_treÄŤiadienÄŻ_ketvirtadienÄŻ_penktadienÄŻ_šeštadienÄŻ".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_treÄŤiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Ĺ eš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Ĺ ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Ĺ iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[PraÄ—jusÄŻ] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:e,m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}});return i}(),e.fullCalendar.datepickerLocale("lt","lt",{closeText:"UĹľdaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Ĺ iandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","BirĹľelis","Liepa","RugpjĹ«tis","RugsÄ—jis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","treÄŤiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Ĺ e"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("lt",{buttonText:{month:"MÄ—nuo",week:"SavaitÄ—",day:"Diena",list:"DarbotvarkÄ—"},allDayText:"VisÄ… dienÄ…",eventLimitText:"daugiau",noEventsMessage:"NÄ—ra ÄŻvykiĹł rodyti"})}(),function(){!function(){function e(e,a,t){return t?a%10===1&&a%100!==11?e[2]:e[3]:a%10===1&&a%100!==11?e[0]:e[1]}function t(a,t,n){return a+" "+e(s[n],a,t)}function n(a,t,n){return e(s[n],a,t)}function r(e,a){return a?"daĹľas sekundes":"daĹľÄm sekundÄ“m"}var s={m:"minĹ«tes_minĹ«tÄ“m_minĹ«te_minĹ«tes".split("_"),mm:"minĹ«tes_minĹ«tÄ“m_minĹ«te_minĹ«tes".split("_"),h:"stundas_stundÄm_stunda_stundas".split("_"),hh:"stundas_stundÄm_stunda_stundas".split("_"),d:"dienas_dienÄm_diena_dienas".split("_"),dd:"dienas_dienÄm_diena_dienas".split("_"),M:"mÄ“neša_mÄ“nešiem_mÄ“nesis_mÄ“neši".split("_"),MM:"mÄ“neša_mÄ“nešiem_mÄ“nesis_mÄ“neši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")},d=a.defineLocale("lv",{months:"janvÄris_februÄris_marts_aprÄ«lis_maijs_jĹ«nijs_jĹ«lijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jĹ«n_jĹ«l_aug_sep_okt_nov_dec".split("_"),weekdays:"svÄ“tdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Ĺ odien pulksten] LT",nextDay:"[RÄ«t pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[PagÄjušÄ] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pÄ“c %s",past:"pirms %s",s:r,m:n,mm:t,h:n,hh:t,d:n,dd:t,M:n,MM:t,y:n,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return d}(),e.fullCalendar.datepickerLocale("lv","lv",{closeText:"AizvÄ“rt",prevText:"Iepr.",nextText:"NÄk.",currentText:"Ĺ odien",monthNames:["JanvÄris","FebruÄris","Marts","AprÄ«lis","Maijs","JĹ«nijs","JĹ«lijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","JĹ«n","JĹ«l","Aug","Sep","Okt","Nov","Dec"],dayNames:["svÄ“tdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lv",{buttonText:{month:"MÄ“nesis",week:"NedÄ“ÄĽa",day:"Diena",list:"Dienas kÄrtÄ«ba"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vÄ“l "+e},noEventsMessage:"Nav notikumu, lai parÄdÄ«tu"})}(),function(){!function(){var e=a.defineLocale("mk",{months:"ŃĐ°Đ˝Ńари_феврŃари_март_април_ĐĽĐ°Ń_ŃŃни_ŃŃли_авгŃŃŃ‚_Ńептември_октомври_ноември_декември".split("_"),monthsShort:"ŃĐ°Đ˝_фев_ĐĽĐ°Ń€_апр_ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авг_Ńеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_Ńреда_четврток_петок_Ńабота".split("_"),weekdaysShort:"нед_пон_вто_Ńре_чет_пет_Ńаб".split("_"),weekdaysMin:"Đ˝e_Đżo_вт_ŃŃ€_че_пе_Ńa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Đ”ĐµĐ˝ĐµŃ Đ˛Đľ] LT",nextDay:"[Утре во] LT",nextWeek:"[Đ’Đľ] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Đзминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Đзминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"поŃле %s",past:"пред %s",s:"Đ˝ĐµĐşĐľĐ»ĐşŃ ŃекŃнди",m:"минŃŃ‚Đ°",mm:"%d минŃти",h:"чаŃ",hh:"%d чаŃĐ°",d:"ден",dd:"%d дена",M:"меŃец",MM:"%d меŃеци",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("mk","mk",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДенеŃ",monthNames:["ĐĐ°Đ˝Ńари","ФеврŃари","Март","Đприл","МаŃ","ĐŃни","ĐŃли","ĐвгŃŃŃ‚","Септември","Октомври","Ноември","Декември"],monthNamesShort:["ĐĐ°Đ˝","Фев","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Đ’Ń‚Đľ","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Đ’Ń‚","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("mk",{buttonText:{month:"МеŃец",week:"Недела",day:"Ден",list:"График"},allDayText:"Цел ден",eventLimitText:function(e){return"+повеќе "+e},noEventsMessage:"Нема наŃтани Đ·Đ° прикажŃвање"})}(),function(){!function(){var e=a.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms-my","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms-my",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i gĂĄr kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en mĂĄned",MM:"%d mĂĄneder",y:"ett ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nb",{buttonText:{month:"MĂĄned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser ĂĄ vise"})}(),function(){!function(){var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=a.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"Ă©Ă©n minuut",mm:"%d minuten",h:"Ă©Ă©n uur",hh:"%d uur",d:"Ă©Ă©n dag",dd:"%d dagen",M:"Ă©Ă©n maand",MM:"%d maanden",y:"Ă©Ă©n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("nl","nl",{closeText:"Sluiten",prevText:"â†",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})}(),function(){!function(){var e=a.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_mĂĄndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mĂĄn_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_mĂĄ_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I gĂĄr klokka] LT",lastWeek:"[FøregĂĄande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein mĂĄnad",MM:"%d mĂĄnader",y:"eit ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nn","nn",{closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mĂĄn","tys","ons","tor","fre","lau"],dayNames:["sundag","mĂĄndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","mĂĄ","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nn",{buttonText:{month:"MĂĄnad",week:"Veke",day:"Dag",list:"Agenda"},allDayText:"Heile dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser ĂĄ vise"})}(),function(){!function(){function e(e){return e%10<5&&e%10>1&&~~(e/10)%10!==1}function t(a,t,n){var r=a+" ";switch(n){case"m":return t?"minuta":"minutÄ™";case"mm":return r+(e(a)?"minuty":"minut");case"h":return t?"godzina":"godzinÄ™";case"hh":return r+(e(a)?"godziny":"godzin");case"MM":return r+(e(a)?"miesiÄ…ce":"miesiÄ™cy");case"yy":return r+(e(a)?"lata":"lat")}}var n="styczeĹ„_luty_marzec_kwiecieĹ„_maj_czerwiec_lipiec_sierpieĹ„_wrzesieĹ„_paĹşdziernik_listopad_grudzieĹ„".split("_"),r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrzeĹ›nia_paĹşdziernika_listopada_grudnia".split("_"),s=a.defineLocale("pl",{months:function(e,a){return""===a?"("+r[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(a)?r[e.month()]:n[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paĹş_lis_gru".split("_"),weekdays:"niedziela_poniedziaĹ‚ek_wtorek_Ĺ›roda_czwartek_piÄ…tek_sobota".split("_"),weekdaysShort:"nie_pon_wt_Ĺ›r_czw_pt_sb".split("_"),weekdaysMin:"Nd_Pn_Wt_Ĺšr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DziĹ› o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszĹ‚Ä… niedzielÄ™ o] LT";case 3:return"[W zeszĹ‚Ä… Ĺ›rodÄ™ o] LT";case 6:return"[W zeszĹ‚Ä… sobotÄ™ o] LT";default:return"[W zeszĹ‚y] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:t,mm:t,h:t,hh:t,d:"1 dzieĹ„",dd:"%d dni",M:"miesiÄ…c",MM:t,y:"rok",yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"NastÄ™pny>",currentText:"DziĹ›",monthNames:["StyczeĹ„","Luty","Marzec","KwiecieĹ„","Maj","Czerwiec","Lipiec","SierpieĹ„","WrzesieĹ„","PaĹşdziernik","Listopad","GrudzieĹ„"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","PoniedziaĹ‚ek","Wtorek","Ĺšroda","Czwartek","PiÄ…tek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Ĺšr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Ĺšr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pl",{buttonText:{month:"MiesiÄ…c",week:"TydzieĹ„",day:"DzieĹ„",list:"Plan dnia"},allDayText:"CaĹ‚y dzieĹ„",eventLimitText:"wiÄ™cej",noEventsMessage:"Brak wydarzeĹ„ do wyĹ›wietlenia"})}(),function(){!function(){var e=a.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ÂŞ_3ÂŞ_4ÂŞ_5ÂŞ_6ÂŞ_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje Ă s] LT",nextDay:"[AmanhĂŁ Ă s] LT",nextWeek:"dddd [Ă s] LT",lastDay:"[Ontem Ă s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Ăšltimo] dddd [Ă s] LT":"[Ăšltima] dddd [Ă s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mĂŞs",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt",{buttonText:{month:"MĂŞs",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais",noEventsMessage:"NĂŁo há eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ÂŞ_3ÂŞ_4ÂŞ_5ÂŞ_6ÂŞ_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [Ă s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [Ă s] HH:mm"},calendar:{sameDay:"[Hoje Ă s] LT",nextDay:"[AmanhĂŁ Ă s] LT",nextWeek:"dddd [Ă s] LT",lastDay:"[Ontem Ă s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Ăšltimo] dddd [Ă s] LT":"[Ăšltima] dddd [Ă s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mĂŞs",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş"});return e}(),e.fullCalendar.datepickerLocale("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"PrĂłximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"], -weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt-br",{buttonText:{month:"MĂŞs",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e},noEventsMessage:"NĂŁo há eventos para mostrar"})}(),function(){!function(){function e(e,a,t){var n={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&e%100===0)&&(r=" de "),e+r+n[t]}var t=a.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminicÄ_luni_marČ›i_miercuri_joi_vineri_sâmbÄtÄ".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s Ă®n urmÄ",s:"câteva secunde",m:"un minut",mm:e,h:"o orÄ",hh:e,d:"o zi",dd:e,M:"o lunÄ",MM:e,y:"un an",yy:e},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("ro","ro",{closeText:"ĂŽnchide",prevText:"« Luna precedentÄ",nextText:"Luna urmÄtoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["DuminicÄ","Luni","MarĹŁi","Miercuri","Joi","Vineri","SâmbÄtÄ"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"SÄpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ro",{buttonText:{prev:"precedentÄ",next:"urmÄtoare",month:"LunÄ",week:"SÄptÄmânÄ",day:"Zi",list:"AgendÄ"},allDayText:"ToatÄ ziua",eventLimitText:function(e){return"+alte "+e},noEventsMessage:"Nu existÄ evenimente de afiČ™at"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"минŃŃ‚Đ°_минŃŃ‚Ń‹_минŃŃ‚":"минŃŃ‚Ń_минŃŃ‚Ń‹_минŃŃ‚",hh:"чаŃ_чаŃĐ°_чаŃов",dd:"день_дня_дней",MM:"меŃяц_меŃяца_меŃяцев",yy:"год_года_лет"};return"m"===n?t?"минŃŃ‚Đ°":"минŃŃ‚Ń":a+" "+e(r[n],+a)}var n=[/^янв/i,/^фев/i,/^ĐĽĐ°Ń€/i,/^апр/i,/^ĐĽĐ°[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^Ńен/i,/^окт/i,/^ноя/i,/^дек/i],r=a.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_ĐĽĐ°ŃŹ_июня_июля_авгŃŃŃ‚Đ°_Ńентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_ĐĽĐ°Đą_июнь_июль_авгŃŃŃ‚_Ńентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._ĐĽĐ°Ń€._апр._ĐĽĐ°ŃŹ_июня_июля_авг._Ńент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._ĐĽĐ°Đą_июнь_июль_авг._Ńент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воŃкреŃенье_понедельник_вторник_Ńреда_четверг_пятница_ŃŃббота".split("_"),format:"воŃкреŃенье_понедельник_вторник_ŃредŃ_четверг_пятницŃ_ŃŃбботŃ".split("_"),isFormat:/\[ ?[Вв] ?(?:проŃĐ»ŃŃŽ|ŃледŃющŃŃŽ|ŃŤŃ‚Ń)? ?\] ?dddd/},weekdaysShort:"вŃ_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),weekdaysMin:"вŃ_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ŃŚŃŹ]|янв\.?|феврал[ŃŚŃŹ]|февр?\.?|марта?|ĐĽĐ°Ń€\.?|апрел[ŃŚŃŹ]|апр\.?|ĐĽĐ°[йя]|июн[ŃŚŃŹ]|июн\.?|июл[ŃŚŃŹ]|июл\.?|авгŃŃŃ‚Đ°?|авг\.?|Ńентябр[ŃŚŃŹ]|Ńент?\.?|октябр[ŃŚŃŹ]|окт\.?|ноябр[ŃŚŃŹ]|нояб?\.?|декабр[ŃŚŃŹ]|дек\.?)/i,monthsShortRegex:/^(январ[ŃŚŃŹ]|янв\.?|феврал[ŃŚŃŹ]|февр?\.?|марта?|ĐĽĐ°Ń€\.?|апрел[ŃŚŃŹ]|апр\.?|ĐĽĐ°[йя]|июн[ŃŚŃŹ]|июн\.?|июл[ŃŚŃŹ]|июл\.?|авгŃŃŃ‚Đ°?|авг\.?|Ńентябр[ŃŚŃŹ]|Ńент?\.?|октябр[ŃŚŃŹ]|окт\.?|ноябр[ŃŚŃŹ]|нояб?\.?|декабр[ŃŚŃŹ]|дек\.?)/i,monthsStrictRegex:/^(январ[ŃŹŃŚ]|феврал[ŃŹŃŚ]|марта?|апрел[ŃŹŃŚ]|ĐĽĐ°[ŃŹĐą]|июн[ŃŹŃŚ]|июл[ŃŹŃŚ]|авгŃŃŃ‚Đ°?|Ńентябр[ŃŹŃŚ]|октябр[ŃŹŃŚ]|ноябр[ŃŹŃŚ]|декабр[ŃŹŃŚ])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|ĐĽĐ°Ń€[Ń‚.]|апр\.|ĐĽĐ°[ŃŹĐą]|июн[ŃŚŃŹ.]|июл[ŃŚŃŹ.]|авг\.|Ńент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Đł.",LLL:"D MMMM YYYY Đł., HH:mm",LLLL:"dddd, D MMMM YYYY Đł., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Đ’Đľ] dddd [в] LT":"[Đ’] dddd [в] LT";switch(this.day()){case 0:return"[Đ’ ŃледŃющее] dddd [в] LT";case 1:case 2:case 4:return"[Đ’ ŃледŃющий] dddd [в] LT";case 3:case 5:case 6:return"[Đ’ ŃледŃющŃŃŽ] dddd [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Đ’Đľ] dddd [в] LT":"[Đ’] dddd [в] LT";switch(this.day()){case 0:return"[Đ’ проŃлое] dddd [в] LT";case 1:case 2:case 4:return"[Đ’ проŃлый] dddd [в] LT";case 3:case 5:case 6:return"[Đ’ проŃĐ»ŃŃŽ] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"неŃколько ŃекŃнд",m:t,mm:t,h:"чаŃ",hh:t,d:"день",dd:t,M:"меŃяц",MM:t,y:"год",yy:t},meridiemParse:/ночи|Ńтра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночи":e<12?"Ńтра":e<17?"дня":"вечера"},ordinalParse:/\d{1,2}-(Đą|го|ŃŹ)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":return e+"-Đą";case"D":return e+"-го";case"w":case"W":return e+"-ŃŹ";default:return e}},week:{dow:1,doy:7}});return r}(),e.fullCalendar.datepickerLocale("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Đпрель","Май","Đюнь","Đюль","ĐвгŃŃŃ‚","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Đпр","Май","ĐŃŽĐ˝","ĐŃŽĐ»","Đвг","Сен","Окт","Ноя","Дек"],dayNames:["воŃкреŃенье","понедельник","вторник","Ńреда","четверг","пятница","ŃŃббота"],dayNamesShort:["вŃĐş","пнд","втр","Ńрд","чтв","птн","Ńбт"],dayNamesMin:["Đ’Ń","Пн","Đ’Ń‚","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ru",{buttonText:{month:"МеŃяц",week:"Неделя",day:"День",list:"ПовеŃтка дня"},allDayText:"ВеŃŃŚ день",eventLimitText:function(e){return"+ ещё "+e},noEventsMessage:"Нет Ńобытий для отображения"})}(),function(){!function(){function e(e){return e>1&&e<5}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekĂşnd":"pár sekundami";case"m":return t?"minĂşta":r?"minĂştu":"minĂştou";case"mm":return t||r?s+(e(a)?"minĂşty":"minĂşt"):s+"minĂştami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodĂ­n"):s+"hodinami";case"d":return t||r?"deĹ":"dĹom";case"dd":return t||r?s+(e(a)?"dni":"dnĂ­"):s+"dĹami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?s+(e(a)?"mesiace":"mesiacov"):s+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?s+(e(a)?"roky":"rokov"):s+"rokmi"}}var n="január_február_marec_aprĂ­l_máj_jĂşn_jĂşl_august_september_oktĂłber_november_december".split("_"),r="jan_feb_mar_apr_máj_jĂşn_jĂşl_aug_sep_okt_nov_dec".split("_"),s=a.defineLocale("sk",{months:n,monthsShort:r,weekdays:"nedeÄľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeÄľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[vÄŤera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulĂş nedeÄľu o] LT";case 1:case 2:return"[minulĂ˝] dddd [o] LT";case 3:return"[minulĂş stredu o] LT";case 4:case 5:return"[minulĂ˝] dddd [o] LT";case 6:return"[minulĂş sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("sk","sk",{closeText:"ZavrieĹĄ",prevText:"<PredchádzajĂşci",nextText:"NasledujĂşci>",currentText:"Dnes",monthNames:["január","február","marec","aprĂ­l","máj","jĂşn","jĂşl","august","september","oktĂłber","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","JĂşn","JĂşl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeÄľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Ĺ tv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Ĺ t","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sk",{buttonText:{month:"Mesiac",week:"TýždeĹ",day:"DeĹ",list:"Rozvrh"},allDayText:"CelĂ˝ deĹ",eventLimitText:function(e){return"+ÄŹalšie: "+e},noEventsMessage:"Ĺ˝iadne akcie na zobrazenie"})}(),function(){!function(){function e(e,a,t,n){var r=e+" ";switch(t){case"s":return a||n?"nekaj sekund":"nekaj sekundami";case"m":return a?"ena minuta":"eno minuto";case"mm":return r+=1===e?a?"minuta":"minuto":2===e?a||n?"minuti":"minutama":e<5?a||n?"minute":"minutami":a||n?"minut":"minutami";case"h":return a?"ena ura":"eno uro";case"hh":return r+=1===e?a?"ura":"uro":2===e?a||n?"uri":"urama":e<5?a||n?"ure":"urami":a||n?"ur":"urami";case"d":return a||n?"en dan":"enim dnem";case"dd":return r+=1===e?a||n?"dan":"dnem":2===e?a||n?"dni":"dnevoma":a||n?"dni":"dnevi";case"M":return a||n?"en mesec":"enim mesecem";case"MM":return r+=1===e?a||n?"mesec":"mesecem":2===e?a||n?"meseca":"mesecema":e<5?a||n?"mesece":"meseci":a||n?"mesecev":"meseci";case"y":return a||n?"eno leto":"enim letom";case"yy":return r+=1===e?a||n?"leto":"letom":2===e?a||n?"leti":"letoma":e<5?a||n?"leta":"leti":a||n?"let":"leti"}}var t=a.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_ÄŤetrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._ÄŤet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_ÄŤe_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[vÄŤeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"ÄŤez %s",past:"pred %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","ÄŚetrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","ÄŚet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","ÄŚe","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"veÄŤ",noEventsMessage:"Ni dogodkov za prikaz"})}(),function(){!function(){var e={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_ÄŤetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._ÄŤet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_ÄŤe_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄŤe u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [ÄŤetvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mesec",MM:e.translate,y:"godinu",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДанаŃ",monthNames:["ĐĐ°Đ˝ŃĐ°Ń€","ФебрŃĐ°Ń€","Март","Đприл","МаŃ","ĐŃĐ˝","ĐŃĐ»","ĐвгŃŃŃ‚","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["ĐĐ°Đ˝","Феб","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","СŃбота"],dayNamesShort:["Нед","Пон","ĐŁŃ‚Đľ","Сре","Чет","Пет","СŃб"],dayNamesMin:["Не","По","ĐŁŃ‚","Ср","Че","Пе","СŃ"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr",{buttonText:{month:"МеŃец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео Đ´Đ°Đ˝",eventLimitText:function(e){return"+ ŃĐľŃ "+e},noEventsMessage:"Нема догађаŃĐ° Đ·Đ° приказ"})}(),function(){!function(){var e={words:{m:["Ńедан минŃŃ‚","Ńедне минŃте"],mm:["минŃŃ‚","минŃте","минŃŃ‚Đ°"],h:["Ńедан ŃĐ°Ń‚","Ńедног ŃĐ°Ń‚Đ°"],hh:["ŃĐ°Ń‚","ŃĐ°Ń‚Đ°","Ńати"],dd:["Đ´Đ°Đ˝","дана","дана"],MM:["меŃец","меŃеца","меŃеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr-cyrl",{months:"ŃĐ°Đ˝ŃĐ°Ń€_фебрŃĐ°Ń€_март_април_ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авгŃŃŃ‚_Ńептембар_октобар_новембар_децембар".split("_"),monthsShort:"ŃĐ°Đ˝._феб._ĐĽĐ°Ń€._апр._ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авг._Ńеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_Ńторак_Ńреда_четвртак_петак_ŃŃбота".split("_"),weekdaysShort:"нед._пон._ŃŃ‚Đľ._Ńре._чет._пет._ŃŃб.".split("_"),weekdaysMin:"не_по_ŃŃ‚_ŃŃ€_че_пе_ŃŃ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Đ´Đ°Đ˝Đ°Ń Ń] LT",nextDay:"[ŃŃтра Ń] LT",nextWeek:function(){switch(this.day()){case 0:return"[Ń] [недељŃ] [Ń] LT";case 3:return"[Ń] [ŃредŃ] [Ń] LT";case 6:return"[Ń] [ŃŃботŃ] [Ń] LT";case 1:case 2:case 4:case 5:return"[Ń] dddd [Ń] LT"}},lastDay:"[ŃŃче Ń] LT",lastWeek:function(){var e=["[проŃле] [недеље] [Ń] LT","[проŃлог] [понедељка] [Ń] LT","[проŃлог] [Ńторка] [Ń] LT","[проŃле] [Ńреде] [Ń] LT","[проŃлог] [четвртка] [Ń] LT","[проŃлог] [петка] [Ń] LT","[проŃле] [ŃŃботе] [Ń] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"Đ·Đ° %s",past:"пре %s",s:"неколико ŃекŃнди",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"Đ´Đ°Đ˝",dd:e.translate,M:"меŃец",MM:e.translate,y:"годинŃ",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДанаŃ",monthNames:["ĐĐ°Đ˝ŃĐ°Ń€","ФебрŃĐ°Ń€","Март","Đприл","МаŃ","ĐŃĐ˝","ĐŃĐ»","ĐвгŃŃŃ‚","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["ĐĐ°Đ˝","Феб","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","СŃбота"],dayNamesShort:["Нед","Пон","ĐŁŃ‚Đľ","Сре","Чет","Пет","СŃб"],dayNamesMin:["Не","По","ĐŁŃ‚","Ср","Че","Пе","СŃ"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr-cyrl",{buttonText:{month:"МеŃец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео Đ´Đ°Đ˝",eventLimitText:function(e){return"+ ŃĐľŃ "+e},noEventsMessage:"Нема догађаŃĐ° Đ·Đ° приказ"})}(),function(){!function(){var e=a.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_mĂĄndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mĂĄn_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_mĂĄ_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[IgĂĄr] LT",nextWeek:"[PĂĄ] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"nĂĄgra sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en mĂĄnad",MM:"%d mĂĄnader",y:"ett ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"e":1===a?"a":2===a?"a":"e";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","MĂĄn","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","MĂĄndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","MĂĄ","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sv",{buttonText:{month:"MĂĄnad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till",noEventsMessage:"Inga händelser att visa"})}(),function(){!function(){var e=a.defineLocale("th",{months:"มŕ¸ŕ¸Łŕ¸˛ŕ¸„ม_ŕ¸ŕ¸¸ŕ¸ˇŕ¸ ŕ¸˛ŕ¸žŕ¸±ŕ¸™ŕ¸ŕąŚ_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_ŕ¸ŕ¸Łŕ¸ŕ¸Žŕ¸˛ŕ¸„ม_สิงหาคม_ŕ¸ŕ¸±ŕ¸™ŕ¸˘ŕ¸˛ŕ¸˘ŕ¸™_ตุลาคม_พฤศŕ¸ŕ¸´ŕ¸ŕ¸˛ŕ¸˘ŕ¸™_ŕ¸ŕ¸±ŕ¸™ŕ¸§ŕ¸˛ŕ¸„ม".split("_"),monthsShort:"ม.ค._ŕ¸.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ŕ¸.ค._ส.ค._ŕ¸.ย._ต.ค._พ.ย._ŕ¸.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์_อังคาร_พุŕ¸_พฤหัสบดี_ศุŕ¸ŕ¸ŁŕąŚ_เสาร์".split("_"),weekdaysShort:"อาทิตย์_ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์_อังคาร_พุŕ¸_พฤหัส_ศุŕ¸ŕ¸ŁŕąŚ_เสาร์".split("_"),weekdaysMin:"อา._ŕ¸._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H นาฬิŕ¸ŕ¸˛ m นาที",LTS:"H นาฬิŕ¸ŕ¸˛ m นาที s วินาที",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H นาฬิŕ¸ŕ¸˛ m นาที",LLLL:"วันddddที๠D MMMM YYYY เวลา H นาฬิŕ¸ŕ¸˛ m นาที"},meridiemParse:/ŕ¸ŕąŕ¸­ŕ¸™ŕą€ŕ¸—ีŕąŕ¸˘ŕ¸‡|หลังเทีŕąŕ¸˘ŕ¸‡/,isPM:function(e){return"หลังเทีŕąŕ¸˘ŕ¸‡"===e},meridiem:function(e,a,t){return e<12?"ŕ¸ŕąŕ¸­ŕ¸™ŕą€ŕ¸—ีŕąŕ¸˘ŕ¸‡":"หลังเทีŕąŕ¸˘ŕ¸‡"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุŕąŕ¸‡ŕ¸™ŕ¸µŕą‰ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมืŕąŕ¸­ŕ¸§ŕ¸˛ŕ¸™ŕ¸™ŕ¸µŕą‰ เวลา] LT",lastWeek:"[วัน]dddd[ทีŕąŕąŕ¸Ąŕą‰ŕ¸§ เวลา] LT",sameElse:"L"},relativeTime:{future:"อีภ%s",past:"%sทีŕąŕąŕ¸Ąŕą‰ŕ¸§",s:"ไมŕąŕ¸ŕ¸µŕąŕ¸§ŕ¸´ŕ¸™ŕ¸˛ŕ¸—ี",m:"1 นาที",mm:"%d นาที",h:"1 ชัŕąŕ¸§ŕą‚มง",hh:"%d ชัŕąŕ¸§ŕą‚มง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}});return e}(),e.fullCalendar.datepickerLocale("th","th",{closeText:"ปิด",prevText:"« ŕ¸˘ŕą‰ŕ¸­ŕ¸™",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มŕ¸ŕ¸Łŕ¸˛ŕ¸„ม","ŕ¸ŕ¸¸ŕ¸ˇŕ¸ ŕ¸˛ŕ¸žŕ¸±ŕ¸™ŕ¸ŕąŚ","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","ŕ¸ŕ¸Łŕ¸ŕ¸Žŕ¸˛ŕ¸„ม","สิงหาคม","ŕ¸ŕ¸±ŕ¸™ŕ¸˘ŕ¸˛ŕ¸˘ŕ¸™","ตุลาคม","พฤศŕ¸ŕ¸´ŕ¸ŕ¸˛ŕ¸˘ŕ¸™","ŕ¸ŕ¸±ŕ¸™ŕ¸§ŕ¸˛ŕ¸„ม"],monthNamesShort:["ม.ค.","ŕ¸.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ŕ¸.ค.","ส.ค.","ŕ¸.ย.","ต.ค.","พ.ย.","ŕ¸.ค."],dayNames:["อาทิตย์","ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์","อังคาร","พุŕ¸","พฤหัสบดี","ศุŕ¸ŕ¸ŁŕąŚ","เสาร์"],dayNamesShort:["อา.","ŕ¸.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","ŕ¸.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"ŕąŕ¸śŕ¸™ŕ¸‡ŕ¸˛ŕ¸™"},allDayText:"ตลอดวัน",eventLimitText:"เพิŕąŕ¸ˇŕą€ŕ¸•ŕ¸´ŕ¸ˇ",noEventsMessage:"ไมŕąŕ¸ˇŕ¸µŕ¸ŕ¸´ŕ¸ŕ¸ŕ¸Łŕ¸Łŕ¸ˇŕ¸—ีŕąŕ¸ŕ¸°ŕąŕ¸Şŕ¸”ง"})}(),function(){!function(){var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'ĂĽncĂĽ",4:"'ĂĽncĂĽ",100:"'ĂĽncĂĽ",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},t=a.defineLocale("tr",{months:"Ocak_Ĺžubat_Mart_Nisan_Mayıs_Haziran_Temmuz_AÄźustos_EylĂĽl_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Ĺžub_Mar_Nis_May_Haz_Tem_AÄźu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_ÇarĹźamba_PerĹźembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugĂĽn saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dĂĽn] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gĂĽn",dd:"%d gĂĽn",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|ĂĽncĂĽ|ncı|uncu|ıncı)/,ordinal:function(a){if(0===a)return a+"'ıncı";var t=a%10,n=a%100-t,r=a>=100?100:null;return a+(e[t]||e[n]||e[r])},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugĂĽn",monthNames:["Ocak","Ĺžubat","Mart","Nisan","Mayıs","Haziran","Temmuz","AÄźustos","EylĂĽl","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Ĺžub","Mar","Nis","May","Haz","Tem","AÄźu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","ÇarĹźamba","PerĹźembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"GĂĽn",list:"Ajanda"},allDayText:"TĂĽm gĂĽn",eventLimitText:"daha fazla",noEventsMessage:"Herhangi bir etkinlik görĂĽntĂĽlemek için"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"хвилина_хвилини_хвилин":"хвилинŃ_хвилини_хвилин",hh:t?"година_години_годин":"годинŃ_години_годин",dd:"день_дні_днів",MM:"ĐĽŃ–Ńяць_ĐĽŃ–Ńяці_ĐĽŃ–Ńяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилинŃ":"h"===n?t?"година":"годинŃ":a+" "+e(r[n],+a)}function n(e,a){var t={nominative:"неділя_понеділок_вівторок_Ńереда_четвер_п’ятниця_ŃŃбота".split("_"),accusative:"неділю_понеділок_вівторок_ŃередŃ_четвер_п’ятницю_ŃŃботŃ".split("_"),genitive:"неділі_понеділка_вівторка_Ńереди_четверга_п’ятниці_ŃŃботи".split("_")},n=/(\[[ВвУŃ]\]) ?dddd/.test(a)?"accusative":/\[?(?:минŃлої|наŃŃ‚Ńпної)? ?\] ?dddd/.test(a)?"genitive":"nominative";return t[n][e.day()]}function r(e){return function(){return e+"Đľ"+(11===this.hours()?"б":"")+"] LT"}}var s=a.defineLocale("uk",{months:{format:"Ńічня_лютого_березня_квітня_травня_червня_липня_Ńерпня_вереŃня_жовтня_лиŃтопада_грŃдня".split("_"),standalone:"Ńічень_лютий_березень_квітень_травень_червень_липень_Ńерпень_вереŃень_жовтень_лиŃтопад_грŃдень".split("_")},monthsShort:"Ńіч_лют_бер_квіт_трав_черв_лип_Ńерп_вер_жовт_лиŃŃ‚_грŃĐ´".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),weekdaysMin:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Ń€.",LLL:"D MMMM YYYY Ń€., HH:mm",LLLL:"dddd, D MMMM YYYY Ń€., HH:mm"},calendar:{sameDay:r("[Сьогодні "),nextDay:r("[Завтра "),lastDay:r("[Вчора "),nextWeek:r("[ĐŁ] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return r("[МинŃлої] dddd [").call(this);case 1:case 2:case 4:return r("[МинŃлого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"Đ·Đ° %s",past:"%s томŃ",s:"декілька ŃекŃнд",m:t,mm:t,h:"годинŃ",hh:t,d:"день",dd:t,M:"ĐĽŃ–Ńяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранкŃ|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночі":e<12?"ранкŃ":e<17?"дня":"вечора"},ordinalParse:/\d{1,2}-(Đą|го)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":case"w":case"W":return e+"-Đą";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}});return s}(),e.fullCalendar.datepickerLocale("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","ВереŃень","Жовтень","ЛиŃтопад","Đ“Ń€Ńдень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","ЛиŃ","Đ“Ń€Ń"],dayNames:["неділя","понеділок","вівторок","Ńереда","четвер","п’ятниця","ŃŃбота"],dayNamesShort:["нед","пнд","вів","Ńрд","чтв","птн","Ńбт"],dayNamesMin:["Нд","Пн","Đ’Ń‚","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("uk",{buttonText:{month:"МіŃяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"УвеŃŃŚ день",eventLimitText:function(e){return"+ще "+e+"..."},noEventsMessage:"Немає подій для відображення"})}(),function(){!function(){var e=a.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nháş­t_thứ hai_thứ ba_thứ tĆ°_thứ nÄm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"sa":"SA":t?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [nÄm] YYYY",LLL:"D MMMM [nÄm] YYYY HH:mm",LLLL:"dddd, D MMMM [nÄm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[HĂ´m nay lĂşc] LT",nextDay:"[NgĂ y mai lĂşc] LT",nextWeek:"dddd [tuần tá»›i lĂşc] LT",lastDay:"[HĂ´m qua lĂşc] LT",lastWeek:"dddd [tuần rồi lĂşc] LT",sameElse:"L"},relativeTime:{future:"%s tá»›i",past:"%s trĆ°á»›c",s:"vĂ i giây",m:"má»™t phĂşt",mm:"%d phĂşt",h:"má»™t giờ",hh:"%d giờ",d:"má»™t ngĂ y",dd:"%d ngĂ y",M:"má»™t tháng",MM:"%d tháng",y:"má»™t nÄm",yy:"%d nÄm"},ordinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("vi","vi",{closeText:"ÄĂłng",prevText:"<TrĆ°á»›c",nextText:"Tiáşżp>",currentText:"HĂ´m nay",monthNames:["Tháng Má»™t","Tháng Hai","Tháng Ba","Tháng TĆ°","Tháng NÄm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng ChĂ­n","Tháng Mười","Tháng Mười Má»™t","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nháş­t","Thứ Hai","Thứ Ba","Thứ TĆ°","Thứ NÄm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"NgĂ y",list:"Lịch biá»u"},allDayText:"Cả ngĂ y",eventLimitText:function(e){return"+ thĂŞm "+e},noEventsMessage:"KhĂ´ng cĂł sá»± kiện Ä‘á» hiá»n thị"})}(),function(){!function(){var e=a.defineLocale("zh-cn",{months:"一ćś_二ćś_三ćś_ĺ››ćś_äş”ćś_ĺ…­ćś_ä¸ćś_ĺ…«ćś_äąťćś_ĺŤćś_ĺŤä¸€ćś_ĺŤäşŚćś".split("_"),monthsShort:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),weekdays:"ćźćśźć—Ą_ćźćśźä¸€_ćźćśźäşŚ_ćźćśźä¸‰_ćźćśźĺ››_ćźćśźäş”_ćźćśźĺ…­".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"ć—Ą_一_二_三_ĺ››_äş”_ĺ…­".split("_"),longDateFormat:{LT:"Ahç‚ąmmĺ†",LTS:"Ahç‚ąmĺ†s秒",L:"YYYY-MM-DD",LL:"YYYYĺą´MMMDć—Ą",LLL:"YYYYĺą´MMMDć—ĄAhç‚ąmmĺ†",LLLL:"YYYYĺą´MMMDć—ĄddddAhç‚ąmmĺ†",l:"YYYY-MM-DD",ll:"YYYYĺą´MMMDć—Ą",lll:"YYYYĺą´MMMDć—ĄAhç‚ąmmĺ†",llll:"YYYYĺą´MMMDć—ĄddddAhç‚ąmmĺ†"},meridiemParse:/凌晨|早上|上ĺŤ|中ĺŤ|下ĺŤ|晚上/,meridiemHour:function(e,a){return 12===e&&(e=0),"凌晨"===a||"早上"===a||"上ĺŤ"===a?e:"下ĺŤ"===a||"晚上"===a?e+12:e>=11?e:e+12},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上ĺŤ":n<1230?"中ĺŤ":n<1800?"下ĺŤ":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[ç‚ąć•´]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[ćŽĺ¤©]Ah[ç‚ąć•´]":"[ćŽĺ¤©]LT"},lastDay:function(){return 0===this.minutes()?"[ć¨ĺ¤©]Ah[ç‚ąć•´]":"[ć¨ĺ¤©]LT"},nextWeek:function(){var e,t;return e=a().startOf("week"),t=this.diff(e,"days")>=7?"[下]":"[本]",0===this.minutes()?t+"dddAhç‚ąć•´":t+"dddAhç‚ąmm"},lastWeek:function(){var e,t;return e=a().startOf("week"),t=this.unix()=11?e:e+12:"下ĺŤ"===a||"晚上"===a?e+12:void 0},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上ĺŤ":n<1230?"中ĺŤ":n<1800?"下ĺŤ":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[ćŽĺ¤©]LT",nextWeek:"[下]ddddLT",lastDay:"[ć¨ĺ¤©]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(ć—Ą|ćś|週)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"ć—Ą";case"M":return e+"ćś";case"w":case"W":return e+"週"; -default:return e}},relativeTime:{future:"%sĺ…§",past:"%s前",s:"幾秒",m:"1 ĺ†é",mm:"%d ĺ†é",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個ćś",MM:"%d 個ćś",y:"1 ĺą´",yy:"%d ĺą´"}});return e}(),e.fullCalendar.datepickerLocale("zh-tw","zh-TW",{closeText:"é—śé–‰",prevText:"<上ćś",nextText:"下ćś>",currentText:"今天",monthNames:["一ćś","二ćś","三ćś","ĺ››ćś","äş”ćś","ĺ…­ćś","ä¸ćś","ĺ…«ćś","äąťćś","ĺŤćś","ĺŤä¸€ćś","ĺŤäşŚćś"],monthNamesShort:["一ćś","二ćś","三ćś","ĺ››ćś","äş”ćś","ĺ…­ćś","ä¸ćś","ĺ…«ćś","äąťćś","ĺŤćś","ĺŤä¸€ćś","ĺŤäşŚćś"],dayNames:["ćźćśźć—Ą","ćźćśźä¸€","ćźćśźäşŚ","ćźćśźä¸‰","ćźćśźĺ››","ćźćśźäş”","ćźćśźĺ…­"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["ć—Ą","一","二","三","ĺ››","äş”","ĺ…­"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ĺą´"}),e.fullCalendar.locale("zh-tw",{buttonText:{month:"ćś",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多",noEventsMessage:"没有事件ćľç¤ş"})}(),a.locale("en"),e.fullCalendar.locale("en"),e.datepicker&&e.datepicker.setDefaults(e.datepicker.regional[""])}); \ No newline at end of file +!function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):"object"==typeof exports?module.exports=e(require("jquery"),require("moment")):e(jQuery,moment)}(function(e,a){!function(){!function(){var e=a.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"vm":"VM":t?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[MĂ´re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("af","af",{closeText:"Selekteer",prevText:"Vorige",nextText:"Volgende",currentText:"Vandag",monthNames:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],dayNamesShort:["Son","Maa","Din","Woe","Don","Vry","Sat"],dayNamesMin:["So","Ma","Di","Wo","Do","Vr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("af",{buttonText:{year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayHtml:"Heeldag",eventLimitText:"Addisionele",noEventsMessage:"Daar is geen gebeurtenis"})}(),function(){!function(){var e={1:"١",2:"٢",3:"ŮŁ",4:"٤",5:"ŮĄ",6:"٦",7:"٧",8:"٨",9:"Ů©",0:"Ů "},t={"١":"1","٢":"2","ŮŁ":"3","٤":"4","ŮĄ":"5","٦":"6","٧":"7","٨":"8","Ů©":"9","Ů ":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:["ŘŁŮ‚Ů„ من ثانية","ثانية Ůاحدة",["ثانيتان","ثانيتين"],"%d Ř«Ůان","%d ثانية","%d ثانية"],m:["ŘŁŮ‚Ů„ من ŘŻŮ‚ŮŠŮ‚Ř©","ŘŻŮ‚ŮŠŮ‚Ř© Ůاحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d ŘŻŮ‚ŮŠŮ‚Ř©","%d ŘŻŮ‚ŮŠŮ‚Ř©"],h:["ŘŁŮ‚Ů„ من ساعة","ساعة Ůاحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["ŘŁŮ‚Ů„ من ŮŠŮŮ…","ŮŠŮŮ… Ůاحد",["ŮŠŮمان","ŮŠŮمين"],"%d أيام","%d ŮŠŮمًا","%d ŮŠŮŮ…"],M:["ŘŁŮ‚Ů„ من شهر","شهر Ůاحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["ŘŁŮ‚Ů„ من عام","عام Ůاحد",["عامان","عامين"],"%d ŘŁŘąŮام","%d عامًا","%d عام"]},s=function(e){return function(a,t,s,d){var i=n(a),o=r[e][n(a)];return 2===i&&(o=o[t?0:1]),o.replace(/%d/i,a)}},d=["ŮانŮن الثاني يناير","شباط Ůبراير","آذار مارس","نيسان أبريل","أيار مايŮ","حزيران ŮŠŮنيŮ","ŘŞŮ…Ůز ŮŠŮŮ„ŮŠŮ","آب أغسطس","ŘŁŮŠŮ„ŮŮ„ سبتمبر","تشرين الأŮŮ„ ŘŁŮŘŞŮبر","تشرين الثاني نŮŮمبر","ŮانŮن الأŮŮ„ ديسمبر"],i=a.defineLocale("ar",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ů…/,isPM:function(e){return"Ů…"===e},meridiem:function(e,a,t){return e<12?"ص":"Ů…"},calendar:{sameDay:"[اليŮŮ… عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[ŘŁŮ…Řł عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/\u200f/g,"").replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},week:{dow:6,doy:12}});return i}(),e.fullCalendar.datepickerLocale("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-dz",{months:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),monthsShort:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ŘŁŘ­_ŘĄŘ«_ثلا_أر_خم_جم_سب".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},week:{dow:0,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ar-dz","ar-DZ",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["جانŮŮŠ","ŮŮŠŮري","مارس","ŘŁŮريل","ماي","جŮان","جŮŮŠŮ„ŮŠŘ©","ŘŁŮŘŞ","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-dz",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},t=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["ŘŁŮ‚Ů„ من ثانية","ثانية Ůاحدة",["ثانيتان","ثانيتين"],"%d Ř«Ůان","%d ثانية","%d ثانية"],m:["ŘŁŮ‚Ů„ من ŘŻŮ‚ŮŠŮ‚Ř©","ŘŻŮ‚ŮŠŮ‚Ř© Ůاحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d ŘŻŮ‚ŮŠŮ‚Ř©","%d ŘŻŮ‚ŮŠŮ‚Ř©"],h:["ŘŁŮ‚Ů„ من ساعة","ساعة Ůاحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["ŘŁŮ‚Ů„ من ŮŠŮŮ…","ŮŠŮŮ… Ůاحد",["ŮŠŮمان","ŮŠŮمين"],"%d أيام","%d ŮŠŮمًا","%d ŮŠŮŮ…"],M:["ŘŁŮ‚Ů„ من شهر","شهر Ůاحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["ŘŁŮ‚Ů„ من عام","عام Ůاحد",["عامان","عامين"],"%d ŘŁŘąŮام","%d عامًا","%d عام"]},r=function(e){return function(a,r,s,d){var i=t(a),o=n[e][t(a)];return 2===i&&(o=o[r?0:1]),o.replace(/%d/i,a)}},s=["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],d=a.defineLocale("ar-ly",{months:s,monthsShort:s,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ů…/,isPM:function(e){return"Ů…"===e},meridiem:function(e,a,t){return e<12?"ص":"Ů…"},calendar:{sameDay:"[اليŮŮ… عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[ŘŁŮ…Řł عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},preparse:function(e){return e.replace(/\u200f/g,"").replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},week:{dow:6,doy:12}});return d}(),e.fullCalendar.datepickerLocale("ar-ly","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-ly",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-ma",{months:"يناير_Ůبراير_مارس_أبريل_ماي_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮز_غشت_شتنبر_ŘŁŮŘŞŮبر_نŮنبر_دجنبر".split("_"),monthsShort:"يناير_Ůبراير_مارس_أبريل_ماي_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮز_غشت_شتنبر_ŘŁŮŘŞŮبر_نŮنبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},week:{dow:6,doy:12}});return e}(),e.fullCalendar.datepickerLocale("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-ma",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e={1:"١",2:"٢",3:"ŮŁ",4:"٤",5:"ŮĄ",6:"٦",7:"٧",8:"٨",9:"Ů©",0:"Ů "},t={"١":"1","٢":"2","ŮŁ":"3","٤":"4","ŮĄ":"5","٦":"6","٧":"7","٨":"8","Ů©":"9","Ů ":"0"},n=a.defineLocale("ar-sa",{months:"يناير_Ůبراير_مارس_أبريل_مايŮ_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮ_أغسطس_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),monthsShort:"يناير_Ůبراير_مارس_أبريل_مايŮ_ŮŠŮنيŮ_ŮŠŮŮ„ŮŠŮ_أغسطس_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|Ů…/,isPM:function(e){return"Ů…"===e},meridiem:function(e,a,t){return e<12?"ص":"Ů…"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},week:{dow:0,doy:6}});return n}(),e.fullCalendar.datepickerLocale("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-sa",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("ar-tn",{months:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),monthsShort:"جانŮŮŠ_ŮŮŠŮري_مارس_ŘŁŮريل_ماي_جŮان_جŮŮŠŮ„ŮŠŘ©_ŘŁŮŘŞ_سبتمبر_ŘŁŮŘŞŮبر_نŮŮمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"ŘŁŘ­ŘŻ_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"Ř­_ن_Ř«_ر_Ř®_ج_Řł".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليŮŮ… على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[ŘŁŮ…Řł على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"ŮŮŠ %s",past:"منذ %s",s:"Ř«Ůان",m:"ŘŻŮ‚ŮŠŮ‚Ř©",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"ŮŠŮŮ…",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنŮات"},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليŮŮ…",monthNames:["يناير","Ůبراير","مارس","أبريل","مايŮ","ŮŠŮنيŮ","ŮŠŮŮ„ŮŠŮ","أغسطس","سبتمبر","ŘŁŮŘŞŮبر","نŮŮمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["ŘŁŘ­ŘŻ","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["Ř­","ن","Ř«","ر","Ř®","ج","Řł"],weekHeader:"أسبŮŘą",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ar-tn",{buttonText:{month:"شهر",week:"أسبŮŘą",day:"ŮŠŮŮ…",list:"أجندة"},allDayText:"اليŮŮ… Ůله",eventLimitText:"أخرى",noEventsMessage:"ŘŁŮŠ أحداث لعرض"})}(),function(){!function(){var e=a.defineLocale("bg",{months:"ŃŹĐ˝Ńари_феврŃари_март_април_ĐĽĐ°Đą_юни_юли_авгŃŃŃ‚_Ńептември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_ĐĽĐ°Ń€_апр_ĐĽĐ°Đą_юни_юли_авг_Ńеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_Ńряда_четвъртък_петък_Ńъбота".split("_"),weekdaysShort:"нед_пон_вто_Ńря_чет_пет_Ńъб".split("_"),weekdaysMin:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Đ”Đ˝ĐµŃ Đ˛] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Đ’ изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[Đ’ изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"Ńлед %s",past:"преди %s",s:"няколко ŃекŃнди",m:"минŃŃ‚Đ°",mm:"%d минŃти",h:"чаŃ",hh:"%d чаŃĐ°",d:"ден",dd:"%d дни",M:"меŃец",MM:"%d меŃеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днеŃ",monthNames:["ĐŻĐ˝Ńари","ФеврŃари","Март","Đприл","Май","Юни","Юли","ĐвгŃŃŃ‚","Септември","Октомври","Ноември","Декември"],monthNamesShort:["ĐŻĐ˝Ń","Фев","Мар","Đпр","Май","Юни","Юли","Đвг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Đ’Ń‚Đľ","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Đ’Ń‚","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("bg",{buttonText:{month:"МеŃец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e},noEventsMessage:"Няма Ńъбития Đ·Đ° показване"})}(),function(){!function(){var e=a.defineLocale("ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demĂ  a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquĂ­ %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,a){var t=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==a&&"W"!==a||(t="a"),e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"SegĂĽent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"mĂ©s",noEventsMessage:"No hi ha esdeveniments per mostrar"})}(),function(){!function(){function e(e){return e>1&&e<5&&1!==~~(e/10)}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?s+(e(a)?"minuty":"minut"):s+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodin"):s+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?s+(e(a)?"dny":"dnĂ­"):s+"dny";case"M":return t||r?"mÄ›sĂ­c":"mÄ›sĂ­cem";case"MM":return t||r?s+(e(a)?"mÄ›sĂ­ce":"mÄ›sĂ­cĹŻ"):s+"mÄ›sĂ­ci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?s+(e(a)?"roky":"let"):s+"lety"}}var n="leden_Ăşnor_bĹ™ezen_duben_kvÄ›ten_ÄŤerven_ÄŤervenec_srpen_září_říjen_listopad_prosinec".split("_"),r="led_Ăşno_bĹ™e_dub_kvÄ›_ÄŤvn_ÄŤvc_srp_zář_říj_lis_pro".split("_"),s=a.defineLocale("cs",{months:n,monthsShort:r,monthsParse:function(e,a){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$|^"+a[t]+"$","i");return n}(n,r),shortMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(r),longMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(n),weekdays:"nedÄ›le_pondÄ›lĂ­_ĂşterĂ˝_stĹ™eda_ÄŤtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_Ăşt_st_ÄŤt_pá_so".split("_"),weekdaysMin:"ne_po_Ăşt_st_ÄŤt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zĂ­tra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedÄ›li v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve stĹ™edu v] LT";case 4:return"[ve ÄŤtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[vÄŤera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou nedÄ›li v] LT";case 1:case 2:return"[minulĂ©] dddd [v] LT";case 3:return"[minulou stĹ™edu v] LT";case 4:case 5:return"[minulĂ˝] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pĹ™ed %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"PozdÄ›ji>",currentText:"NynĂ­",monthNames:["leden","Ăşnor","bĹ™ezen","duben","kvÄ›ten","ÄŤerven","ÄŤervenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","Ăşno","bĹ™e","dub","kvÄ›","ÄŤer","ÄŤvc","srp","zář","říj","lis","pro"],dayNames:["nedÄ›le","pondÄ›lĂ­","ĂşterĂ˝","stĹ™eda","ÄŤtvrtek","pátek","sobota"],dayNamesShort:["ne","po","Ăşt","st","ÄŤt","pá","so"],dayNamesMin:["ne","po","Ăşt","st","ÄŤt","pá","so"],weekHeader:"TĂ˝d",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("cs",{buttonText:{month:"MÄ›sĂ­c",week:"TĂ˝den",day:"Den",list:"Agenda"},allDayText:"CelĂ˝ den",eventLimitText:function(e){return"+další: "+e},noEventsMessage:"ŽádnĂ© akce k zobrazenĂ­"})}(),function(){!function(){var e=a.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY HH:mm"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I gĂĄr kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"fĂĄ sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en mĂĄned",MM:"%d mĂĄneder",y:"et ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("da",{buttonText:{month:"MĂĄned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere",noEventsMessage:"Ingen arrangementer at vise"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de","de",{closeText:"SchlieĂźen",prevText:"<ZurĂĽck",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"TerminĂĽbersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}var t=a.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:e,mm:"%d Minuten",h:e,hh:"%d Stunden",d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("de-at","de",{closeText:"SchlieĂźen",prevText:"<ZurĂĽck",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"TerminĂĽbersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})}(),function(){!function(){function e(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}var t=a.defineLocale("el",{monthsNominativeEl:"ΙανουάĎιος_ΦεβĎουάĎιος_ΜάĎτιος_ΑπĎίλιος_Μάιος_Ιούνιος_Ιούλιος_ΑύγουĎτος_ΣεπτέμβĎιος_ΟκτώβĎιος_ΝοέμβĎιος_ΔεκέμβĎιος".split("_"),monthsGenitiveEl:"ΙανουαĎίου_ΦεβĎουαĎίου_ΜαĎτίου_ΑπĎιλίου_ΜαÎου_Ιουνίου_Ιουλίου_ΑυγούĎτου_ΣεπτεμβĎίου_ΟκτωβĎίου_ΝοεμβĎίου_ΔεκεμβĎίου".split("_"),months:function(e,a){return/D/.test(a.substring(0,a.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]},monthsShort:"Ιαν_Φεβ_ΜαĎ_ΑπĎ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"ΚυĎιακή_ΔευτέĎα_ΤĎίτη_ΤετάĎτη_Πέμπτη_ΠαĎαĎκευή_Σάββατο".split("_"),weekdaysShort:"ΚυĎ_Δευ_ΤĎÎą_Τετ_Πεμ_ΠαĎ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_ΤĎ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,a,t){return e>11?t?"ÎĽÎĽ":"ΜΜ":t?"πμ":"ΠΜ"},isPM:function(e){return"ÎĽ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Îś?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[ΣήμεĎα {}] LT",nextDay:"[ΑύĎιο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[Ď„Îż Ď€Ďοηγούμενο] dddd [{}] LT";default:return"[την Ď€Ďοηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(a,t){var n=this._calendarEl[a],r=t&&t.hours();return e(n)&&(n=n.apply(t)),n.replace("{}",r%12===1?"Ďτη":"Ďτις")},relativeTime:{future:"Ďε %s",past:"%s Ď€Ďιν",s:"λίγα δευτεĎόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ĎŽĎα",hh:"%d ĎŽĎες",d:"μία μέĎα",dd:"%d μέĎες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χĎόνος",yy:"%d χĎόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}});return t}(),e.fullCalendar.datepickerLocale("el","el",{closeText:"ΚλείĎιμο",prevText:"ΠĎοηγούμενος",nextText:"Επόμενος",currentText:"ΣήμεĎα",monthNames:["ΙανουάĎιος","ΦεβĎουάĎιος","ΜάĎτιος","ΑπĎίλιος","Μάιος","Ιούνιος","Ιούλιος","ΑύγουĎτος","ΣεπτέμβĎιος","ΟκτώβĎιος","ΝοέμβĎιος","ΔεκέμβĎιος"],monthNamesShort:["Ιαν","Φεβ","ΜαĎ","ΑπĎ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["ΚυĎιακή","ΔευτέĎα","ΤĎίτη","ΤετάĎτη","Πέμπτη","ΠαĎαĎκευή","Σάββατο"],dayNamesShort:["ΚυĎ","Δευ","ΤĎÎą","Τετ","Πεμ","ΠαĎ","Σαβ"],dayNamesMin:["Κυ","Δε","ΤĎ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"ΗμέĎα",list:"Ατζέντα"},allDayText:"ΟλοήμεĎÎż",eventLimitText:"πεĎÎąĎĎότεĎα",noEventsMessage:"Δεν υπάĎχουν γεγονότα για να εμφανιĎτεί"})}(),function(){!function(){var e=a.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{ +dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-au")}(),function(){!function(){var e=a.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t}});return e}(),e.fullCalendar.locale("en-ca")}(),function(){!function(){var e=a.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-gb")}(),function(){!function(){var e=a.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.locale("en-ie")}(),function(){!function(){var e=a.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("en-nz")}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miĂ©rcoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._miĂ©._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un dĂ­a",dd:"%d dĂ­as",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miĂ©rcoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","miĂ©","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es",{buttonText:{month:"Mes",week:"Semana",day:"DĂ­a",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=a.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("es-do","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("es-do",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
osoa",eventLimitText:"gehiago",noEventsMessage:"Ez dago ekitaldirik erakusteko"})}(),function(){!function(){var e={1:"۱",2:"۲",3:"Űł",4:"Ű´",5:"۵",6:"۶",7:"Ű·",8:"۸",9:"Űą",0:"Ű°"},t={"۱":"1","۲":"2","Űł":"3","Ű´":"4","۵":"5","۶":"6","Ű·":"7","۸":"8","Űą":"9","Ű°":"0"},n=a.defineLocale("fa",{months:"ÚانŮیه_ŮŮریه_مارس_آŮریل_مه_ÚŮئن_ÚŮئیه_اŮŘŞ_سپتامبر_اکتبر_نŮامبر_دسامبر".split("_"),monthsShort:"ÚانŮیه_ŮŮریه_مارس_آŮریل_مه_ÚŮئن_ÚŮئیه_اŮŘŞ_سپتامبر_اکتبر_نŮامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_ŘŻŮشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_ŘŻŮشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ŰŚ_ŘŻ_Řł_Ú†_Ůľ_ج_Ř´".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,a,t){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امرŮز ساعت] LT",nextDay:"[Ůردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیرŮز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"ŰŚÚ© دقیقه",mm:"%d دقیقه",h:"ŰŚÚ© ساعت",hh:"%d ساعت",d:"ŰŚÚ© رŮز",dd:"%d رŮز",M:"ŰŚÚ© ماه",MM:"%d ماه",y:"ŰŚÚ© سال",yy:"%d سال"},preparse:function(e){return e.replace(/[Ű°-Űą]/g,function(e){return t[e]}).replace(/ŘŚ/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]}).replace(/,/g,"ŘŚ")},ordinalParse:/\d{1,2}Ů…/,ordinal:"%dŮ…",week:{dow:6,doy:12}});return n}(),e.fullCalendar.datepickerLocale("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امرŮز",monthNames:["ÚانŮیه","ŮŮریه","مارس","آŮریل","مه","ÚŮئن","ÚŮئیه","اŮŘŞ","سپتامبر","اکتبر","نŮامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","ŘŻŮشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ŰŚ","ŘŻ","Řł","Ú†","Ůľ","ج","Ř´"],dayNamesMin:["ŰŚ","ŘŻ","Řł","Ú†","Ůľ","ج","Ř´"],weekHeader:"هŮ",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fa",{buttonText:{month:"ماه",week:"هŮته",day:"رŮز",list:"برنامه"},allDayText:"تمام رŮز",eventLimitText:function(e){return"بیش از "+e},noEventsMessage:"هیچ رŮیدادی به نمایش"})}(),function(){!function(){function e(e,a,n,r){var s="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"m":return r?"minuutin":"minuutti";case"mm":s=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":s=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":s=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":s=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":s=r?"vuoden":"vuotta"}return s=t(e,r)+" "+s}function t(e,a){return e<10?a?r[e]:n[e]:e}var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),r=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]],s=a.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää",noEventsMessage:"Ei tapahtumia näytettäviä"})}(),function(){!function(){var e=a.defineLocale("fr",{months:"janvier_fĂ©vrier_mars_avril_mai_juin_juillet_aoĂ»t_septembre_octobre_novembre_dĂ©cembre".split("_"),monthsShort:"janv._fĂ©vr._mars_avr._mai_juin_juil._aoĂ»t_sept._oct._nov._dĂ©c.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui Ă ] LT",nextDay:"[Demain Ă ] LT",nextWeek:"dddd [Ă ] LT",lastDay:"[Hier Ă ] LT",lastWeek:"dddd [dernier Ă ] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr","fr",{closeText:"Fermer",prevText:"PrĂ©cĂ©dent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","fĂ©vrier","mars","avril","mai","juin","juillet","aoĂ»t","septembre","octobre","novembre","dĂ©cembre"],monthNamesShort:["janv.","fĂ©vr.","mars","avr.","mai","juin","juil.","aoĂ»t","sept.","oct.","nov.","dĂ©c."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr",{buttonText:{year:"AnnĂ©e",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")}});return e}(),e.fullCalendar.datepickerLocale("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|e)/,ordinal:function(e){return e+(1===e?"er":"e")},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})}(),function(){!function(){var e=a.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
o dĂ­a",eventLimitText:"máis",noEventsMessage:"Non hai eventos para amosar"})}(),function(){!function(){var e=a.defineLocale("he",{months:"ינו×ר_פברו×ר_מרץ_×פריל_מ××™_יוני_יולי_×וגוס×_ספ×מבר_×וק×ובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_×פר׳_מ××™_יוני_יולי_×וג׳_ספ×׳_×וק׳_נוב׳_דצמ׳".split("_"),weekdays:"ר×שון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"×׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"×_ב_×’_ד_×”_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[×תמול ב־]LT",lastWeek:"[ביום] dddd [×”×חרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10===0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/××—×”"צ|לפנה"צ|×חרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(××—×”"צ|×חרי הצהריים|בערב)$/.test(e)},meridiem:function(e,a,t){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?t?'לפנה"צ':"לפני הצהריים":e<18?t?'××—×”"צ':"×חרי הצהריים":"בערב"}});return e}(),e.fullCalendar.datepickerLocale("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הב×>",currentText:"היום",monthNames:["ינו×ר","פברו×ר","מרץ","×פריל","מ××™","יוני","יולי","×וגוס×","ספ×מבר","×וק×ובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","×פר","מ××™","יוני","יולי","×וג","ספ×","×וק","נוב","דצמ"],dayNames:["ר×שון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["×'","ב'","×’'","ד'","×”'","ו'","שבת"],dayNamesMin:["×'","ב'","×’'","ד'","×”'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("he",{buttonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",eventLimitText:"×חר",noEventsMessage:"×ין ×ירועים להצגה",weekNumberTitle:"שבוע"})}(),function(){!function(){var e={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},t={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"},n=a.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रŕĄŕ¤˛_मŕ¤_जून_जŕĄŕ¤˛ŕ¤ľŕ¤_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रŕĄ._मŕ¤_जून_जŕĄŕ¤˛._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बŕĄŕ¤§ŕ¤µŕ¤ľŕ¤°_गŕĄŕ¤°ŕĄ‚वार_शŕĄŕ¤•ŕĄŤŕ¤°ŕ¤µŕ¤ľŕ¤°_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बŕĄŕ¤§_गŕĄŕ¤°ŕĄ‚_शŕĄŕ¤•ŕĄŤŕ¤°_शनि".split("_"),weekdaysMin:"र_सो_मं_बŕĄ_गŕĄ_शŕĄ_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कŕĄŕ¤› ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक ŕ¤ŕ¤‚टा",hh:"%d ŕ¤ŕ¤‚टे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return t[e]})},postformat:function(a){return a.replace(/\d/g,function(a){return e[a]})},meridiemParse:/रात|सŕĄŕ¤¬ŕ¤ą|दोपहर|शाम/,meridiemHour:function(e,a){return 12===e&&(e=0),"रात"===a?e<4?e:e+12:"सŕĄŕ¤¬ŕ¤ą"===a?e:"दोपहर"===a?e>=10?e:e+12:"शाम"===a?e+12:void 0},meridiem:function(e,a,t){return e<4?"रात":e<10?"सŕĄŕ¤¬ŕ¤ą":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}});return n}(),e.fullCalendar.datepickerLocale("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मŕ¤","जून","जूलाŕ¤","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मŕ¤","जून","जूलाŕ¤","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बŕĄŕ¤§ŕ¤µŕ¤ľŕ¤°","गŕĄŕ¤°ŕĄŕ¤µŕ¤ľŕ¤°","शŕĄŕ¤•ŕĄŤŕ¤°ŕ¤µŕ¤ľŕ¤°","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बŕĄŕ¤§","गŕĄŕ¤°ŕĄ","शŕĄŕ¤•ŕĄŤŕ¤°","शनि"],dayNamesMin:["रवि","सोम","मंगल","बŕĄŕ¤§","गŕĄŕ¤°ŕĄ","शŕĄŕ¤•ŕĄŤŕ¤°","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e},noEventsMessage:"कोठŕ¤ŕ¤źŕ¤¨ŕ¤ľŕ¤“ं को प्रदर्शित करने के लिए"})}(),function(){!function(){function e(e,a,t){var n=e+" ";switch(t){case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}var t=a.defineLocale("hr",{months:{format:"sijeÄŤnja_veljaÄŤe_oĹľujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"sijeÄŤanj_veljaÄŤa_oĹľujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._oĹľu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_ÄŤetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._ÄŤet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_ÄŤe_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄŤer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:e,mm:e,h:e,hh:e,d:"dan",dd:e,M:"mjesec",MM:e,y:"godinu",yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["SijeÄŤanj","VeljaÄŤa","OĹľujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"], +monthNamesShort:["Sij","Velj","OĹľu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","ÄŚetvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","ÄŚet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","ÄŚe","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema dogaÄ‘aja za prikaz"})}(),function(){!function(){function e(e,a,t,n){var r=e;switch(t){case"s":return n||a?"nĂ©hány másodperc":"nĂ©hány másodperce";case"m":return"egy"+(n||a?" perc":" perce");case"mm":return r+(n||a?" perc":" perce");case"h":return"egy"+(n||a?" Ăłra":" Ăłrája");case"hh":return r+(n||a?" Ăłra":" Ăłrája");case"d":return"egy"+(n||a?" nap":" napja");case"dd":return r+(n||a?" nap":" napja");case"M":return"egy"+(n||a?" hĂłnap":" hĂłnapja");case"MM":return r+(n||a?" hĂłnap":" hĂłnapja");case"y":return"egy"+(n||a?" Ă©v":" Ă©ve");case"yy":return r+(n||a?" Ă©v":" Ă©ve")}return""}function t(e){return(e?"":"[mĂşlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hĂ©tfĹ‘n kedden szerdán csĂĽtörtökön pĂ©nteken szombaton".split(" "),r=a.defineLocale("hu",{months:"január_február_március_április_május_jĂşnius_jĂşlius_augusztus_szeptember_oktĂłber_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jĂşn_jĂşl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hĂ©tfĹ‘_kedd_szerda_csĂĽtörtök_pĂ©ntek_szombat".split("_"),weekdaysShort:"vas_hĂ©t_kedd_sze_csĂĽt_pĂ©n_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,a,t){return e<12?t===!0?"de":"DE":t===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return t.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return t.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s mĂşlva",past:"%s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return r}(),e.fullCalendar.datepickerLocale("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"elĹ‘re",currentText:"ma",monthNames:["Január","Február","Március","Ăprilis","Május","JĂşnius","JĂşlius","Augusztus","Szeptember","OktĂłber","November","December"],monthNamesShort:["Jan","Feb","Már","Ăpr","Máj","JĂşn","JĂşl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","HĂ©tfĹ‘","Kedd","Szerda","CsĂĽtörtök","PĂ©ntek","Szombat"],dayNamesShort:["Vas","HĂ©t","Ked","Sze","CsĂĽ","PĂ©n","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"HĂ©t",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("hu",{buttonText:{month:"HĂłnap",week:"HĂ©t",day:"Nap",list:"NaplĂł"},allDayText:"EgĂ©sz nap",eventLimitText:"további",noEventsMessage:"Nincs megjelenĂ­thetĹ‘ esemĂ©nyek"})}(),function(){!function(){var e=a.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"siang"===a?e>=11?e:e+12:"sore"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih",noEventsMessage:"Tidak ada acara untuk ditampilkan"})}(),function(){!function(){function e(e){return e%100===11||e%10!==1}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"nokkrar sekĂşndur":"nokkrum sekĂşndum";case"m":return t?"mĂ­nĂşta":"mĂ­nĂştu";case"mm":return e(a)?s+(t||r?"mĂ­nĂştur":"mĂ­nĂştum"):t?s+"mĂ­nĂşta":s+"mĂ­nĂştu";case"hh":return e(a)?s+(t||r?"klukkustundir":"klukkustundum"):s+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return e(a)?t?s+"dagar":s+(r?"daga":"dögum"):t?s+"dagur":s+(r?"dag":"degi");case"M":return t?"mánuĂ°ur":r?"mánuĂ°":"mánuĂ°i";case"MM":return e(a)?t?s+"mánuĂ°ir":s+(r?"mánuĂ°i":"mánuĂ°um"):t?s+"mánuĂ°ur":s+(r?"mánuĂ°":"mánuĂ°i");case"y":return t||r?"ár":"ári";case"yy":return e(a)?s+(t||r?"ár":"árum"):s+(t||r?"ár":"ári")}}var n=a.defineLocale("is",{months:"janĂşar_febrĂşar_mars_aprĂ­l_maĂ­_jĂşnĂ­_jĂşlĂ­_ágĂşst_september_oktĂłber_nĂłvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maĂ­_jĂşn_jĂşl_ágĂş_sep_okt_nĂłv_des".split("_"),weekdays:"sunnudagur_mánudagur_ĂľriĂ°judagur_miĂ°vikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_Ăľri_miĂ°_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Ăžr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[Ă­ dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[Ă­ gær kl.] LT",lastWeek:"[sĂ­Ă°asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s sĂ­Ă°an",s:t,m:t,mm:t,h:"klukkustund",hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return n}(),e.fullCalendar.datepickerLocale("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"ĂŤ dag",monthNames:["JanĂşar","FebrĂşar","Mars","AprĂ­l","MaĂ­","JĂşnĂ­","JĂşlĂ­","ĂgĂşst","September","OktĂłber","NĂłvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","MaĂ­","JĂşn","JĂşl","ĂgĂş","Sep","Okt","NĂłv","Des"],dayNames:["Sunnudagur","Mánudagur","ĂžriĂ°judagur","MiĂ°vikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Ăžri","MiĂ°","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Ăžr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("is",{buttonText:{month:"MánuĂ°ur",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira",noEventsMessage:"Engir viðburðir til að sýna"})}(),function(){!function(){var e=a.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"Do_Lu_Ma_Me_Gi_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e},noEventsMessage:"Non ci sono eventi da visualizzare"})}(),function(){!function(){var e=a.defineLocale("ja",{months:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),monthsShort:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),weekdays:"日曜日_ćść›ść—Ą_ç«ć›ść—Ą_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"ć—Ą_ćś_ç«_ć°´_木_金_ĺśź".split("_"),weekdaysMin:"ć—Ą_ćś_ç«_ć°´_木_金_ĺśź".split("_"),longDateFormat:{LT:"Ah時mĺ†",LTS:"Ah時mĺ†s秒",L:"YYYY/MM/DD",LL:"YYYYĺą´MćśDć—Ą",LLL:"YYYYĺą´MćśDć—ĄAh時mĺ†",LLLL:"YYYYĺą´MćśDć—ĄAh時mĺ† dddd"},meridiemParse:/ĺŤĺ‰Ť|ĺŤĺľŚ/i,isPM:function(e){return"ĺŤĺľŚ"===e},meridiem:function(e,a,t){return e<12?"ĺŤĺ‰Ť":"ĺŤĺľŚ"},calendar:{sameDay:"[今日] LT",nextDay:"[ćŽć—Ą] LT",nextWeek:"[来週]dddd LT",lastDay:"[ć¨ć—Ą] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},ordinalParse:/\d{1,2}ć—Ą/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"ć—Ą";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1ĺ†",mm:"%dĺ†",h:"1時間",hh:"%d時間",d:"1ć—Ą",dd:"%dć—Ą",M:"1ă¶ćś",MM:"%dă¶ćś",y:"1ĺą´",yy:"%dĺą´"}});return e}(),e.fullCalendar.datepickerLocale("ja","ja",{closeText:"é–‰ăă‚‹",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1ćś","2ćś","3ćś","4ćś","5ćś","6ćś","7ćś","8ćś","9ćś","10ćś","11ćś","12ćś"],monthNamesShort:["1ćś","2ćś","3ćś","4ćś","5ćś","6ćś","7ćś","8ćś","9ćś","10ćś","11ćś","12ćś"],dayNames:["日曜日","ćść›ść—Ą","ç«ć›ść—Ą","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["ć—Ą","ćś","ç«","ć°´","木","金","ĺśź"],dayNamesMin:["ć—Ą","ćś","ç«","ć°´","木","金","ĺśź"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ĺą´"}),e.fullCalendar.locale("ja",{buttonText:{month:"ćś",week:"週",day:"ć—Ą",list:"äşĺ®šăŞă‚ąă"},allDayText:"終日",eventLimitText:function(e){return"ä»– "+e+" 件"},noEventsMessage:"イă™ăłăăŚčˇ¨ç¤şă•ă‚ŚăŞă„ă‚ă†ă«"})}(),function(){!function(){var e={0:"-ŃŃ–",1:"-ŃŃ–",2:"-ŃŃ–",3:"-ŃŃ–",4:"-ŃŃ–",5:"-ŃŃ–",6:"-ŃŃ‹",7:"-ŃŃ–",8:"-ŃŃ–",9:"-ŃŃ‹",10:"-ŃŃ‹",20:"-ŃŃ‹",30:"-ŃŃ‹",40:"-ŃŃ‹",50:"-ŃŃ–",60:"-ŃŃ‹",70:"-ŃŃ–",80:"-ŃŃ–",90:"-ŃŃ‹",100:"-ŃŃ–"},t=a.defineLocale("kk",{months:"қаңтар_ақпан_наŃрыз_ŃÓ™ŃŃ–Ń€_ĐĽĐ°ĐĽŃ‹Ń€_ĐĽĐ°ŃŃŃ‹ĐĽ_Ńілде_Ń‚Đ°ĐĽŃ‹Đ·_қыркүйек_қазан_қараŃĐ°_желтоқŃĐ°Đ˝".split("_"),monthsShort:"қаң_ақп_наŃ_ŃÓ™Ń_ĐĽĐ°ĐĽ_ĐĽĐ°Ń_ŃŃ–Đ»_Ń‚Đ°ĐĽ_қыр_қаз_қар_жел".split("_"),weekdays:"жекŃенбі_Đ´ŇŻĐąŃенбі_ŃейŃенбі_ŃәрŃенбі_бейŃенбі_жұма_Ńенбі".split("_"),weekdaysShort:"жек_Đ´ŇŻĐą_Ńей_Ńәр_бей_жұм_Ńен".split("_"),weekdaysMin:"жк_Đ´Đą_ŃĐą_ŃŃ€_бй_жм_ŃĐ˝".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін ŃĐ°Ň“Đ°Ń‚] LT",nextDay:"[Ертең ŃĐ°Ň“Đ°Ń‚] LT",nextWeek:"dddd [ŃĐ°Ň“Đ°Ń‚] LT",lastDay:"[КеŃе ŃĐ°Ň“Đ°Ń‚] LT",lastWeek:"[Өткен аптаның] dddd [ŃĐ°Ň“Đ°Ń‚] LT",sameElse:"L"},relativeTime:{future:"%s Ń–Ńінде",past:"%s бұрын",s:"бірнеŃе ŃекŃнд",m:"бір минŃŃ‚",mm:"%d минŃŃ‚",h:"бір ŃĐ°Ň“Đ°Ń‚",hh:"%d ŃĐ°Ň“Đ°Ń‚",d:"бір күн",dd:"%d күн",M:"бір Đ°Đą",MM:"%d Đ°Đą",y:"бір жыл",yy:"%d жыл"},ordinalParse:/\d{1,2}-(ŃŃ–|ŃŃ‹)/,ordinal:function(a){var t=a%10,n=a>=100?100:null;return a+(e[a]||e[t]||e[n])},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("kk","kk",{closeText:"ЖабŃ",prevText:"<Đлдыңғы",nextText:"КелеŃŃ–>",currentText:"Бүгін",monthNames:["Қаңтар","Đқпан","НаŃрыз","СәŃŃ–Ń€","Мамыр","МаŃŃŃ‹ĐĽ","Шілде","Тамыз","Қыркүйек","Қазан","ҚараŃĐ°","ЖелтоқŃĐ°Đ˝"],monthNamesShort:["Қаң","Đқп","НаŃ","СәŃ","Мам","МаŃ","Шіл","Там","Қыр","Қаз","Қар","Жел"],dayNames:["ЖекŃенбі","ДүйŃенбі","СейŃенбі","СәрŃенбі","БейŃенбі","Жұма","Сенбі"],dayNamesShort:["жкŃ","Đ´ŃĐ˝","ŃŃĐ˝","ŃŃ€Ń","бŃĐ˝","жма","Ńнб"],dayNamesMin:["Đ–Đş","Đ”Ń","СŃ","Ср","Đ‘Ń","Đ–ĐĽ","Сн"],weekHeader:"Не",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("kk",{buttonText:{month:"ĐĐą",week:"Đпта",day:"Күн",list:"Күн тәртібі"},allDayText:"Күні бойы",eventLimitText:function(e){return"+ Ń‚Đ°Ň“Ń‹ "+e},noEventsMessage:"ĐšÓ©Ń€ŃĐµŃ‚Ń ŇŻŃŃ–Đ˝ оқиғалар жоқ"})}(),function(){!function(){var e=a.defineLocale("ko",{months:"1ě›”_2ě›”_3ě›”_4ě›”_5ě›”_6ě›”_7ě›”_8ě›”_9ě›”_10ě›”_11ě›”_12ě›”".split("_"),monthsShort:"1ě›”_2ě›”_3ě›”_4ě›”_5ě›”_6ě›”_7ě›”_8ě›”_9ě›”_10ě›”_11ě›”_12ě›”".split("_"),weekdays:"일요일_월요일_화요일_ě요일_목요일_ę¸ěš”일_토요일".split("_"),weekdaysShort:"일_ě›”_í™”_ě_목_ę¸_토".split("_"),weekdaysMin:"일_ě›”_í™”_ě_목_ę¸_토".split("_"),longDateFormat:{LT:"A hě‹ś m분",LTS:"A hě‹ś m분 sě´",L:"YYYY.MM.DD",LL:"YYYYë…„ MMMM D일",LLL:"YYYYë…„ MMMM D일 A hě‹ś m분",LLLL:"YYYYë…„ MMMM D일 dddd A hě‹ś m분"},calendar:{sameDay:"ě¤ëŠ LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"ě–´ě ś LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s ě „",s:"몇 ě´",ss:"%dě´",m:"일분",mm:"%d분",h:"í•ś ě‹śę°„",hh:"%dě‹śę°„",d:"í•ëŁ¨",dd:"%d일",M:"í•ś 달",MM:"%d달",y:"일 ë…„",yy:"%dë…„"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/ě¤ě „|ě¤í›„/,isPM:function(e){return"ě¤í›„"===e},meridiem:function(e,a,t){return e<12?"ě¤ě „":"ě¤í›„"}});return e}(),e.fullCalendar.datepickerLocale("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"ě¤ëŠ",monthNames:["1ě›”","2ě›”","3ě›”","4ě›”","5ě›”","6ě›”","7ě›”","8ě›”","9ě›”","10ě›”","11ě›”","12ě›”"],monthNamesShort:["1ě›”","2ě›”","3ě›”","4ě›”","5ě›”","6ě›”","7ě›”","8ě›”","9ě›”","10ě›”","11ě›”","12ě›”"],dayNames:["일요일","월요일","화요일","ě요일","목요일","ę¸ěš”일","토요일"],dayNamesShort:["일","ě›”","í™”","ě","목","ę¸","토"],dayNamesMin:["일","ě›”","í™”","ě","목","ę¸","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ë…„"}),e.fullCalendar.locale("ko",{buttonText:{month:"ě›”",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"ę°ś",noEventsMessage:"일정이 í‘śě‹ś 없습ë‹ë‹¤"})}(),function(){!function(){function e(e,a,t,n){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return a?r[t][0]:r[t][1]}function t(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"a "+e:"an "+e}function n(e){var a=e.substr(0,e.indexOf(" "));return r(a)?"viru "+e:"virun "+e}function r(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var a=e%10,t=e/10;return r(0===a?t:a)}if(e<1e4){for(;e>=10;)e/=10;return r(e)}return e/=1e3,r(e)}var s=a.defineLocale("lb",{months:"Januar_Februar_Mäerz_AbrĂ«ll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_MĂ©indeg_DĂ«nschdeg_MĂ«ttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._MĂ©._DĂ«._MĂ«._Do._Fr._Sa.".split("_"),weekdaysMin:"So_MĂ©_DĂ«_MĂ«_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[GĂ«schter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:n,s:"e puer Sekonnen",m:e,mm:"%d Minutten",h:e,hh:"%d Stonnen",d:e,dd:"%d Deeg",M:e,MM:"%d MĂ©int",y:e,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("lb","lb",{closeText:"Fäerdeg",prevText:"ZrĂ©ck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","AbrĂ«ll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","MĂ©indeg","DĂ«nschdeg","MĂ«ttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","MĂ©i","DĂ«n","MĂ«t","Don","Fre","Sam"],dayNamesMin:["So","MĂ©","DĂ«","MĂ«","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"mĂ©i",noEventsMessage:"Nee Evenementer ze affichĂ©ieren"})}(),function(){!function(){function e(e,a,t,n){return a?"kelios sekundÄ—s":n?"keliĹł sekundĹľiĹł":"kelias sekundes"}function t(e,a,t,n){return a?r(t)[0]:n?r(t)[1]:r(t)[2]}function n(e){return e%10===0||e>10&&e<20}function r(e){return d[e].split("_")}function s(e,a,s,d){var i=e+" ";return 1===e?i+t(e,a,s[0],d):a?i+(n(e)?r(s)[1]:r(s)[0]):d?i+r(s)[1]:i+(n(e)?r(s)[1]:r(s)[2])}var d={m:"minutÄ—_minutÄ—s_minutÄ™",mm:"minutÄ—s_minuÄŤiĹł_minutes",h:"valanda_valandos_valandÄ…",hh:"valandos_valandĹł_valandas",d:"diena_dienos_dienÄ…",dd:"dienos_dienĹł_dienas",M:"mÄ—nuo_mÄ—nesio_mÄ—nesÄŻ",MM:"mÄ—nesiai_mÄ—nesiĹł_mÄ—nesius",y:"metai_metĹł_metus",yy:"metai_metĹł_metus"},i=a.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandĹľio_gegužės_birĹľelio_liepos_rugpjĹ«ÄŤio_rugsÄ—jo_spalio_lapkriÄŤio_gruodĹľio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birĹľelis_liepa_rugpjĹ«tis_rugsÄ—jis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienÄŻ_pirmadienÄŻ_antradienÄŻ_treÄŤiadienÄŻ_ketvirtadienÄŻ_penktadienÄŻ_šeštadienÄŻ".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_treÄŤiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Ĺ eš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Ĺ ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Ĺ iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[PraÄ—jusÄŻ] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:e,m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}});return i}(),e.fullCalendar.datepickerLocale("lt","lt",{closeText:"UĹľdaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Ĺ iandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","BirĹľelis","Liepa","RugpjĹ«tis","RugsÄ—jis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","treÄŤiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Ĺ e"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.locale("lt",{buttonText:{month:"MÄ—nuo",week:"SavaitÄ—",day:"Diena",list:"DarbotvarkÄ—"},allDayText:"VisÄ… dienÄ…",eventLimitText:"daugiau",noEventsMessage:"NÄ—ra ÄŻvykiĹł rodyti"})}(),function(){!function(){function e(e,a,t){return t?a%10===1&&a%100!==11?e[2]:e[3]:a%10===1&&a%100!==11?e[0]:e[1]}function t(a,t,n){return a+" "+e(s[n],a,t)}function n(a,t,n){return e(s[n],a,t)}function r(e,a){return a?"daĹľas sekundes":"daĹľÄm sekundÄ“m"}var s={m:"minĹ«tes_minĹ«tÄ“m_minĹ«te_minĹ«tes".split("_"),mm:"minĹ«tes_minĹ«tÄ“m_minĹ«te_minĹ«tes".split("_"),h:"stundas_stundÄm_stunda_stundas".split("_"),hh:"stundas_stundÄm_stunda_stundas".split("_"),d:"dienas_dienÄm_diena_dienas".split("_"),dd:"dienas_dienÄm_diena_dienas".split("_"),M:"mÄ“neša_mÄ“nešiem_mÄ“nesis_mÄ“neši".split("_"),MM:"mÄ“neša_mÄ“nešiem_mÄ“nesis_mÄ“neši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")},d=a.defineLocale("lv",{months:"janvÄris_februÄris_marts_aprÄ«lis_maijs_jĹ«nijs_jĹ«lijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jĹ«n_jĹ«l_aug_sep_okt_nov_dec".split("_"),weekdays:"svÄ“tdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Ĺ odien pulksten] LT",nextDay:"[RÄ«t pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[PagÄjušÄ] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pÄ“c %s",past:"pirms %s",s:r,m:n,mm:t,h:n,hh:t,d:n,dd:t,M:n,MM:t,y:n,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return d}(),e.fullCalendar.datepickerLocale("lv","lv",{closeText:"AizvÄ“rt",prevText:"Iepr.",nextText:"NÄk.",currentText:"Ĺ odien",monthNames:["JanvÄris","FebruÄris","Marts","AprÄ«lis","Maijs","JĹ«nijs","JĹ«lijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","JĹ«n","JĹ«l","Aug","Sep","Okt","Nov","Dec"],dayNames:["svÄ“tdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("lv",{buttonText:{month:"MÄ“nesis",week:"NedÄ“ÄĽa",day:"Diena",list:"Dienas kÄrtÄ«ba"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vÄ“l "+e},noEventsMessage:"Nav notikumu, lai parÄdÄ«tu"})}(),function(){!function(){var e=a.defineLocale("mk",{months:"ŃĐ°Đ˝Ńари_феврŃари_март_април_ĐĽĐ°Ń_ŃŃни_ŃŃли_авгŃŃŃ‚_Ńептември_октомври_ноември_декември".split("_"),monthsShort:"ŃĐ°Đ˝_фев_ĐĽĐ°Ń€_апр_ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авг_Ńеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_Ńреда_четврток_петок_Ńабота".split("_"),weekdaysShort:"нед_пон_вто_Ńре_чет_пет_Ńаб".split("_"),weekdaysMin:"Đ˝e_Đżo_вт_ŃŃ€_че_пе_Ńa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Đ”ĐµĐ˝ĐµŃ Đ˛Đľ] LT",nextDay:"[Утре во] LT",nextWeek:"[Đ’Đľ] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Đзминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Đзминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"поŃле %s",past:"пред %s",s:"Đ˝ĐµĐşĐľĐ»ĐşŃ ŃекŃнди",m:"минŃŃ‚Đ°",mm:"%d минŃти",h:"чаŃ",hh:"%d чаŃĐ°",d:"ден",dd:"%d дена",M:"меŃец",MM:"%d меŃеци",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("mk","mk",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДенеŃ",monthNames:["ĐĐ°Đ˝Ńари","ФеврŃари","Март","Đприл","МаŃ","ĐŃни","ĐŃли","ĐвгŃŃŃ‚","Септември","Октомври","Ноември","Декември"],monthNamesShort:["ĐĐ°Đ˝","Фев","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Đ’Ń‚Đľ","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Đ’Ń‚","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("mk",{buttonText:{month:"МеŃец",week:"Недела",day:"Ден",list:"График"},allDayText:"Цел ден",eventLimitText:function(e){return"+повеќе "+e},noEventsMessage:"Нема наŃтани Đ·Đ° прикажŃвање"})}(),function(){!function(){var e=a.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}});return e}(),e.fullCalendar.datepickerLocale("ms-my","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ms-my",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})}(),function(){!function(){var e=a.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i gĂĄr kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en mĂĄned",MM:"%d mĂĄneder",y:"ett ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nb",{buttonText:{month:"MĂĄned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser ĂĄ vise"})}(),function(){!function(){var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,s=a.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT", +lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"Ă©Ă©n minuut",mm:"%d minuten",h:"Ă©Ă©n uur",hh:"%d uur",d:"Ă©Ă©n dag",dd:"%d dagen",M:"Ă©Ă©n maand",MM:"%d maanden",y:"Ă©Ă©n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("nl","nl",{closeText:"Sluiten",prevText:"â†",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})}(),function(){!function(){var e="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,s=a.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(a,n){return/-MMM-/.test(n)?t[a.month()]:e[a.month()]},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"Ă©Ă©n minuut",mm:"%d minuten",h:"Ă©Ă©n uur",hh:"%d uur",d:"Ă©Ă©n dag",dd:"%d dagen",M:"Ă©Ă©n maand",MM:"%d maanden",y:"Ă©Ă©n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("nl-be","nl-BE",{closeText:"Sluiten",prevText:"â†",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nl-be",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})}(),function(){!function(){var e=a.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_mĂĄndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mĂĄn_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_mĂĄ_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I gĂĄr klokka] LT",lastWeek:"[FøregĂĄande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein mĂĄnad",MM:"%d mĂĄnader",y:"eit ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("nn","nn",{closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mĂĄn","tys","ons","tor","fre","lau"],dayNames:["sundag","mĂĄndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","mĂĄ","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("nn",{buttonText:{month:"MĂĄnad",week:"Veke",day:"Dag",list:"Agenda"},allDayText:"Heile dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser ĂĄ vise"})}(),function(){!function(){function e(e){return e%10<5&&e%10>1&&~~(e/10)%10!==1}function t(a,t,n){var r=a+" ";switch(n){case"m":return t?"minuta":"minutÄ™";case"mm":return r+(e(a)?"minuty":"minut");case"h":return t?"godzina":"godzinÄ™";case"hh":return r+(e(a)?"godziny":"godzin");case"MM":return r+(e(a)?"miesiÄ…ce":"miesiÄ™cy");case"yy":return r+(e(a)?"lata":"lat")}}var n="styczeĹ„_luty_marzec_kwiecieĹ„_maj_czerwiec_lipiec_sierpieĹ„_wrzesieĹ„_paĹşdziernik_listopad_grudzieĹ„".split("_"),r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrzeĹ›nia_paĹşdziernika_listopada_grudnia".split("_"),s=a.defineLocale("pl",{months:function(e,a){return""===a?"("+r[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(a)?r[e.month()]:n[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paĹş_lis_gru".split("_"),weekdays:"niedziela_poniedziaĹ‚ek_wtorek_Ĺ›roda_czwartek_piÄ…tek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_Ĺ›r_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Ĺšr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DziĹ› o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszĹ‚Ä… niedzielÄ™ o] LT";case 3:return"[W zeszĹ‚Ä… Ĺ›rodÄ™ o] LT";case 6:return"[W zeszĹ‚Ä… sobotÄ™ o] LT";default:return"[W zeszĹ‚y] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:t,mm:t,h:t,hh:t,d:"1 dzieĹ„",dd:"%d dni",M:"miesiÄ…c",MM:t,y:"rok",yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"NastÄ™pny>",currentText:"DziĹ›",monthNames:["StyczeĹ„","Luty","Marzec","KwiecieĹ„","Maj","Czerwiec","Lipiec","SierpieĹ„","WrzesieĹ„","PaĹşdziernik","Listopad","GrudzieĹ„"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","PoniedziaĹ‚ek","Wtorek","Ĺšroda","Czwartek","PiÄ…tek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Ĺšr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Ĺšr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pl",{buttonText:{month:"MiesiÄ…c",week:"TydzieĹ„",day:"DzieĹ„",list:"Plan dnia"},allDayText:"CaĹ‚y dzieĹ„",eventLimitText:"wiÄ™cej",noEventsMessage:"Brak wydarzeĹ„ do wyĹ›wietlenia"})}(),function(){!function(){var e=a.defineLocale("pt",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ÂŞ_3ÂŞ_4ÂŞ_5ÂŞ_6ÂŞ_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje Ă s] LT",nextDay:"[AmanhĂŁ Ă s] LT",nextWeek:"dddd [Ă s] LT",lastDay:"[Ontem Ă s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Ăšltimo] dddd [Ă s] LT":"[Ăšltima] dddd [Ă s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mĂŞs",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş",week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt",{buttonText:{month:"MĂŞs",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais",noEventsMessage:"NĂŁo há eventos para mostrar"})}(),function(){!function(){var e=a.defineLocale("pt-br",{months:"Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro".split("_"),monthsShort:"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Dom_2ÂŞ_3ÂŞ_4ÂŞ_5ÂŞ_6ÂŞ_Sáb".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [Ă s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [Ă s] HH:mm"},calendar:{sameDay:"[Hoje Ă s] LT",nextDay:"[AmanhĂŁ Ă s] LT",nextWeek:"dddd [Ă s] LT",lastDay:"[Ontem Ă s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Ăšltimo] dddd [Ă s] LT":"[Ăšltima] dddd [Ă s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mĂŞs",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}Âş/,ordinal:"%dÂş"});return e}(),e.fullCalendar.datepickerLocale("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"PrĂłximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("pt-br",{buttonText:{month:"MĂŞs",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e},noEventsMessage:"NĂŁo há eventos para mostrar"})}(),function(){!function(){function e(e,a,t){var n={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&e%100===0)&&(r=" de "),e+r+n[t]}var t=a.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminicÄ_luni_marČ›i_miercuri_joi_vineri_sâmbÄtÄ".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s Ă®n urmÄ",s:"câteva secunde",m:"un minut",mm:e,h:"o orÄ",hh:e,d:"o zi",dd:e,M:"o lunÄ",MM:e,y:"un an",yy:e},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("ro","ro",{closeText:"ĂŽnchide",prevText:"« Luna precedentÄ",nextText:"Luna urmÄtoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["DuminicÄ","Luni","MarĹŁi","Miercuri","Joi","Vineri","SâmbÄtÄ"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"SÄpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ro",{buttonText:{prev:"precedentÄ",next:"urmÄtoare",month:"LunÄ",week:"SÄptÄmânÄ",day:"Zi",list:"AgendÄ"},allDayText:"ToatÄ ziua",eventLimitText:function(e){return"+alte "+e},noEventsMessage:"Nu existÄ evenimente de afiČ™at"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"минŃŃ‚Đ°_минŃŃ‚Ń‹_минŃŃ‚":"минŃŃ‚Ń_минŃŃ‚Ń‹_минŃŃ‚",hh:"чаŃ_чаŃĐ°_чаŃов",dd:"день_дня_дней",MM:"меŃяц_меŃяца_меŃяцев",yy:"год_года_лет"};return"m"===n?t?"минŃŃ‚Đ°":"минŃŃ‚Ń":a+" "+e(r[n],+a)}var n=[/^янв/i,/^фев/i,/^ĐĽĐ°Ń€/i,/^апр/i,/^ĐĽĐ°[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^Ńен/i,/^окт/i,/^ноя/i,/^дек/i],r=a.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_ĐĽĐ°ŃŹ_июня_июля_авгŃŃŃ‚Đ°_Ńентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_ĐĽĐ°Đą_июнь_июль_авгŃŃŃ‚_Ńентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._ĐĽĐ°Ń€._апр._ĐĽĐ°ŃŹ_июня_июля_авг._Ńент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._ĐĽĐ°Đą_июнь_июль_авг._Ńент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воŃкреŃенье_понедельник_вторник_Ńреда_четверг_пятница_ŃŃббота".split("_"),format:"воŃкреŃенье_понедельник_вторник_ŃредŃ_четверг_пятницŃ_ŃŃбботŃ".split("_"),isFormat:/\[ ?[Вв] ?(?:проŃĐ»ŃŃŽ|ŃледŃющŃŃŽ|ŃŤŃ‚Ń)? ?\] ?dddd/},weekdaysShort:"вŃ_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),weekdaysMin:"вŃ_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ŃŚŃŹ]|янв\.?|феврал[ŃŚŃŹ]|февр?\.?|марта?|ĐĽĐ°Ń€\.?|апрел[ŃŚŃŹ]|апр\.?|ĐĽĐ°[йя]|июн[ŃŚŃŹ]|июн\.?|июл[ŃŚŃŹ]|июл\.?|авгŃŃŃ‚Đ°?|авг\.?|Ńентябр[ŃŚŃŹ]|Ńент?\.?|октябр[ŃŚŃŹ]|окт\.?|ноябр[ŃŚŃŹ]|нояб?\.?|декабр[ŃŚŃŹ]|дек\.?)/i,monthsShortRegex:/^(январ[ŃŚŃŹ]|янв\.?|феврал[ŃŚŃŹ]|февр?\.?|марта?|ĐĽĐ°Ń€\.?|апрел[ŃŚŃŹ]|апр\.?|ĐĽĐ°[йя]|июн[ŃŚŃŹ]|июн\.?|июл[ŃŚŃŹ]|июл\.?|авгŃŃŃ‚Đ°?|авг\.?|Ńентябр[ŃŚŃŹ]|Ńент?\.?|октябр[ŃŚŃŹ]|окт\.?|ноябр[ŃŚŃŹ]|нояб?\.?|декабр[ŃŚŃŹ]|дек\.?)/i,monthsStrictRegex:/^(январ[ŃŹŃŚ]|феврал[ŃŹŃŚ]|марта?|апрел[ŃŹŃŚ]|ĐĽĐ°[ŃŹĐą]|июн[ŃŹŃŚ]|июл[ŃŹŃŚ]|авгŃŃŃ‚Đ°?|Ńентябр[ŃŹŃŚ]|октябр[ŃŹŃŚ]|ноябр[ŃŹŃŚ]|декабр[ŃŹŃŚ])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|ĐĽĐ°Ń€[Ń‚.]|апр\.|ĐĽĐ°[ŃŹĐą]|июн[ŃŚŃŹ.]|июл[ŃŚŃŹ.]|авг\.|Ńент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Đł.",LLL:"D MMMM YYYY Đł., HH:mm",LLLL:"dddd, D MMMM YYYY Đł., HH:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Đ’Đľ] dddd [в] LT":"[Đ’] dddd [в] LT";switch(this.day()){case 0:return"[Đ’ ŃледŃющее] dddd [в] LT";case 1:case 2:case 4:return"[Đ’ ŃледŃющий] dddd [в] LT";case 3:case 5:case 6:return"[Đ’ ŃледŃющŃŃŽ] dddd [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Đ’Đľ] dddd [в] LT":"[Đ’] dddd [в] LT";switch(this.day()){case 0:return"[Đ’ проŃлое] dddd [в] LT";case 1:case 2:case 4:return"[Đ’ проŃлый] dddd [в] LT";case 3:case 5:case 6:return"[Đ’ проŃĐ»ŃŃŽ] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"неŃколько ŃекŃнд",m:t,mm:t,h:"чаŃ",hh:t,d:"день",dd:t,M:"меŃяц",MM:t,y:"год",yy:t},meridiemParse:/ночи|Ńтра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночи":e<12?"Ńтра":e<17?"дня":"вечера"},ordinalParse:/\d{1,2}-(Đą|го|ŃŹ)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":return e+"-Đą";case"D":return e+"-го";case"w":case"W":return e+"-ŃŹ";default:return e}},week:{dow:1,doy:7}});return r}(),e.fullCalendar.datepickerLocale("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Đпрель","Май","Đюнь","Đюль","ĐвгŃŃŃ‚","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Đпр","Май","ĐŃŽĐ˝","ĐŃŽĐ»","Đвг","Сен","Окт","Ноя","Дек"],dayNames:["воŃкреŃенье","понедельник","вторник","Ńреда","четверг","пятница","ŃŃббота"],dayNamesShort:["вŃĐş","пнд","втр","Ńрд","чтв","птн","Ńбт"],dayNamesMin:["Đ’Ń","Пн","Đ’Ń‚","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("ru",{buttonText:{month:"МеŃяц",week:"Неделя",day:"День",list:"ПовеŃтка дня"},allDayText:"ВеŃŃŚ день",eventLimitText:function(e){return"+ ещё "+e},noEventsMessage:"Нет Ńобытий для отображения"})}(),function(){!function(){function e(e){return e>1&&e<5}function t(a,t,n,r){var s=a+" ";switch(n){case"s":return t||r?"pár sekĂşnd":"pár sekundami";case"m":return t?"minĂşta":r?"minĂştu":"minĂştou";case"mm":return t||r?s+(e(a)?"minĂşty":"minĂşt"):s+"minĂştami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(e(a)?"hodiny":"hodĂ­n"):s+"hodinami";case"d":return t||r?"deĹ":"dĹom";case"dd":return t||r?s+(e(a)?"dni":"dnĂ­"):s+"dĹami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?s+(e(a)?"mesiace":"mesiacov"):s+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?s+(e(a)?"roky":"rokov"):s+"rokmi"}}var n="január_február_marec_aprĂ­l_máj_jĂşn_jĂşl_august_september_oktĂłber_november_december".split("_"),r="jan_feb_mar_apr_máj_jĂşn_jĂşl_aug_sep_okt_nov_dec".split("_"),s=a.defineLocale("sk",{months:n,monthsShort:r,weekdays:"nedeÄľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeÄľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[vÄŤera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulĂş nedeÄľu o] LT";case 1:case 2:return"[minulĂ˝] dddd [o] LT";case 3:return"[minulĂş stredu o] LT";case 4:case 5:return"[minulĂ˝] dddd [o] LT";case 6:return"[minulĂş sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});return s}(),e.fullCalendar.datepickerLocale("sk","sk",{closeText:"ZavrieĹĄ",prevText:"<PredchádzajĂşci",nextText:"NasledujĂşci>",currentText:"Dnes",monthNames:["január","február","marec","aprĂ­l","máj","jĂşn","jĂşl","august","september","oktĂłber","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","JĂşn","JĂşl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeÄľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Ĺ tv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Ĺ t","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sk",{buttonText:{month:"Mesiac",week:"TýždeĹ",day:"DeĹ",list:"Rozvrh"},allDayText:"CelĂ˝ deĹ",eventLimitText:function(e){return"+ÄŹalšie: "+e},noEventsMessage:"Ĺ˝iadne akcie na zobrazenie"})}(),function(){!function(){function e(e,a,t,n){var r=e+" ";switch(t){case"s":return a||n?"nekaj sekund":"nekaj sekundami";case"m":return a?"ena minuta":"eno minuto";case"mm":return r+=1===e?a?"minuta":"minuto":2===e?a||n?"minuti":"minutama":e<5?a||n?"minute":"minutami":a||n?"minut":"minutami";case"h":return a?"ena ura":"eno uro";case"hh":return r+=1===e?a?"ura":"uro":2===e?a||n?"uri":"urama":e<5?a||n?"ure":"urami":a||n?"ur":"urami";case"d":return a||n?"en dan":"enim dnem";case"dd":return r+=1===e?a||n?"dan":"dnem":2===e?a||n?"dni":"dnevoma":a||n?"dni":"dnevi";case"M":return a||n?"en mesec":"enim mesecem";case"MM":return r+=1===e?a||n?"mesec":"mesecem":2===e?a||n?"meseca":"mesecema":e<5?a||n?"mesece":"meseci":a||n?"mesecev":"meseci";case"y":return a||n?"eno leto":"enim letom";case"yy":return r+=1===e?a||n?"leto":"letom":2===e?a||n?"leti":"letoma":e<5?a||n?"leta":"leti":a||n?"let":"leti"}}var t=a.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_ÄŤetrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._ÄŤet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_ÄŤe_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[vÄŤeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"ÄŤez %s",past:"pred %s",s:e,m:e,mm:e,h:e,hh:e,d:e,dd:e,M:e,MM:e,y:e,yy:e},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","ÄŚetrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","ÄŚet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","ÄŚe","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"veÄŤ",noEventsMessage:"Ni dogodkov za prikaz"})}(),function(){!function(){var e={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_ÄŤetvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._ÄŤet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_ÄŤe_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juÄŤe u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [ÄŤetvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"dan",dd:e.translate,M:"mesec",MM:e.translate,y:"godinu",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДанаŃ",monthNames:["ĐĐ°Đ˝ŃĐ°Ń€","ФебрŃĐ°Ń€","Март","Đприл","МаŃ","ĐŃĐ˝","ĐŃĐ»","ĐвгŃŃŃ‚","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["ĐĐ°Đ˝","Феб","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","СŃбота"],dayNamesShort:["Нед","Пон","ĐŁŃ‚Đľ","Сре","Чет","Пет","СŃб"],dayNamesMin:["Не","По","ĐŁŃ‚","Ср","Че","Пе","СŃ"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr",{buttonText:{month:"МеŃец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео Đ´Đ°Đ˝",eventLimitText:function(e){return"+ ŃĐľŃ "+e},noEventsMessage:"Нема догађаŃĐ° Đ·Đ° приказ"})}(),function(){!function(){var e={words:{m:["Ńедан минŃŃ‚","Ńедне минŃте"],mm:["минŃŃ‚","минŃте","минŃŃ‚Đ°"],h:["Ńедан ŃĐ°Ń‚","Ńедног ŃĐ°Ń‚Đ°"],hh:["ŃĐ°Ń‚","ŃĐ°Ń‚Đ°","Ńати"],dd:["Đ´Đ°Đ˝","дана","дана"],MM:["меŃец","меŃеца","меŃеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(a,t,n){var r=e.words[n];return 1===n.length?t?r[0]:r[1]:a+" "+e.correctGrammaticalCase(a,r)}},t=a.defineLocale("sr-cyrl",{months:"ŃĐ°Đ˝ŃĐ°Ń€_фебрŃĐ°Ń€_март_април_ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авгŃŃŃ‚_Ńептембар_октобар_новембар_децембар".split("_"),monthsShort:"ŃĐ°Đ˝._феб._ĐĽĐ°Ń€._апр._ĐĽĐ°Ń_ŃŃĐ˝_ŃŃĐ»_авг._Ńеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_Ńторак_Ńреда_четвртак_петак_ŃŃбота".split("_"),weekdaysShort:"нед._пон._ŃŃ‚Đľ._Ńре._чет._пет._ŃŃб.".split("_"),weekdaysMin:"не_по_ŃŃ‚_ŃŃ€_че_пе_ŃŃ".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Đ´Đ°Đ˝Đ°Ń Ń] LT",nextDay:"[ŃŃтра Ń] LT",nextWeek:function(){switch(this.day()){case 0:return"[Ń] [недељŃ] [Ń] LT";case 3:return"[Ń] [ŃредŃ] [Ń] LT";case 6:return"[Ń] [ŃŃботŃ] [Ń] LT";case 1:case 2:case 4:case 5:return"[Ń] dddd [Ń] LT"}},lastDay:"[ŃŃче Ń] LT",lastWeek:function(){var e=["[проŃле] [недеље] [Ń] LT","[проŃлог] [понедељка] [Ń] LT","[проŃлог] [Ńторка] [Ń] LT","[проŃле] [Ńреде] [Ń] LT","[проŃлог] [четвртка] [Ń] LT","[проŃлог] [петка] [Ń] LT","[проŃле] [ŃŃботе] [Ń] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"Đ·Đ° %s",past:"пре %s",s:"неколико ŃекŃнди",m:e.translate,mm:e.translate,h:e.translate,hh:e.translate,d:"Đ´Đ°Đ˝",dd:e.translate,M:"меŃец",MM:e.translate,y:"годинŃ",yy:e.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"ДанаŃ",monthNames:["ĐĐ°Đ˝ŃĐ°Ń€","ФебрŃĐ°Ń€","Март","Đприл","МаŃ","ĐŃĐ˝","ĐŃĐ»","ĐвгŃŃŃ‚","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["ĐĐ°Đ˝","Феб","Мар","Đпр","МаŃ","ĐŃĐ˝","ĐŃĐ»","Đвг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","СŃбота"],dayNamesShort:["Нед","Пон","ĐŁŃ‚Đľ","Сре","Чет","Пет","СŃб"],dayNamesMin:["Не","По","ĐŁŃ‚","Ср","Че","Пе","СŃ"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sr-cyrl",{buttonText:{month:"МеŃец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео Đ´Đ°Đ˝",eventLimitText:function(e){return"+ ŃĐľŃ "+e},noEventsMessage:"Нема догађаŃĐ° Đ·Đ° приказ"})}(),function(){!function(){var e=a.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_mĂĄndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mĂĄn_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_mĂĄ_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[IgĂĄr] LT",nextWeek:"[PĂĄ] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"nĂĄgra sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en mĂĄnad",MM:"%d mĂĄnader",y:"ett ĂĄr",yy:"%d ĂĄr"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var a=e%10,t=1===~~(e%100/10)?"e":1===a?"a":2===a?"a":"e";return e+t},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","MĂĄn","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","MĂĄndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","MĂĄ","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("sv",{buttonText:{month:"MĂĄnad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till",noEventsMessage:"Inga händelser att visa"})}(),function(){!function(){var e=a.defineLocale("th",{months:"มŕ¸ŕ¸Łŕ¸˛ŕ¸„ม_ŕ¸ŕ¸¸ŕ¸ˇŕ¸ ŕ¸˛ŕ¸žŕ¸±ŕ¸™ŕ¸ŕąŚ_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_ŕ¸ŕ¸Łŕ¸ŕ¸Žŕ¸˛ŕ¸„ม_สิงหาคม_ŕ¸ŕ¸±ŕ¸™ŕ¸˘ŕ¸˛ŕ¸˘ŕ¸™_ตุลาคม_พฤศŕ¸ŕ¸´ŕ¸ŕ¸˛ŕ¸˘ŕ¸™_ŕ¸ŕ¸±ŕ¸™ŕ¸§ŕ¸˛ŕ¸„ม".split("_"),monthsShort:"ม.ค._ŕ¸.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ŕ¸.ค._ส.ค._ŕ¸.ย._ต.ค._พ.ย._ŕ¸.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์_อังคาร_พุŕ¸_พฤหัสบดี_ศุŕ¸ŕ¸ŁŕąŚ_เสาร์".split("_"),weekdaysShort:"อาทิตย์_ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์_อังคาร_พุŕ¸_พฤหัส_ศุŕ¸ŕ¸ŁŕąŚ_เสาร์".split("_"),weekdaysMin:"อา._ŕ¸._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที๠D MMMM YYYY เวลา H:mm"},meridiemParse:/ŕ¸ŕąŕ¸­ŕ¸™ŕą€ŕ¸—ีŕąŕ¸˘ŕ¸‡|หลังเทีŕąŕ¸˘ŕ¸‡/,isPM:function(e){return"หลังเทีŕąŕ¸˘ŕ¸‡"===e},meridiem:function(e,a,t){return e<12?"ŕ¸ŕąŕ¸­ŕ¸™ŕą€ŕ¸—ีŕąŕ¸˘ŕ¸‡":"หลังเทีŕąŕ¸˘ŕ¸‡"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุŕąŕ¸‡ŕ¸™ŕ¸µŕą‰ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมืŕąŕ¸­ŕ¸§ŕ¸˛ŕ¸™ŕ¸™ŕ¸µŕą‰ เวลา] LT",lastWeek:"[วัน]dddd[ทีŕąŕąŕ¸Ąŕą‰ŕ¸§ เวลา] LT",sameElse:"L"},relativeTime:{future:"อีภ%s",past:"%sทีŕąŕąŕ¸Ąŕą‰ŕ¸§",s:"ไมŕąŕ¸ŕ¸µŕąŕ¸§ŕ¸´ŕ¸™ŕ¸˛ŕ¸—ี",m:"1 นาที",mm:"%d นาที",h:"1 ชัŕąŕ¸§ŕą‚มง",hh:"%d ชัŕąŕ¸§ŕą‚มง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี" +}});return e}(),e.fullCalendar.datepickerLocale("th","th",{closeText:"ปิด",prevText:"« ŕ¸˘ŕą‰ŕ¸­ŕ¸™",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มŕ¸ŕ¸Łŕ¸˛ŕ¸„ม","ŕ¸ŕ¸¸ŕ¸ˇŕ¸ ŕ¸˛ŕ¸žŕ¸±ŕ¸™ŕ¸ŕąŚ","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","ŕ¸ŕ¸Łŕ¸ŕ¸Žŕ¸˛ŕ¸„ม","สิงหาคม","ŕ¸ŕ¸±ŕ¸™ŕ¸˘ŕ¸˛ŕ¸˘ŕ¸™","ตุลาคม","พฤศŕ¸ŕ¸´ŕ¸ŕ¸˛ŕ¸˘ŕ¸™","ŕ¸ŕ¸±ŕ¸™ŕ¸§ŕ¸˛ŕ¸„ม"],monthNamesShort:["ม.ค.","ŕ¸.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ŕ¸.ค.","ส.ค.","ŕ¸.ย.","ต.ค.","พ.ย.","ŕ¸.ค."],dayNames:["อาทิตย์","ŕ¸ŕ¸±ŕ¸™ŕ¸—ร์","อังคาร","พุŕ¸","พฤหัสบดี","ศุŕ¸ŕ¸ŁŕąŚ","เสาร์"],dayNamesShort:["อา.","ŕ¸.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","ŕ¸.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"ŕąŕ¸śŕ¸™ŕ¸‡ŕ¸˛ŕ¸™"},allDayText:"ตลอดวัน",eventLimitText:"เพิŕąŕ¸ˇŕą€ŕ¸•ŕ¸´ŕ¸ˇ",noEventsMessage:"ไมŕąŕ¸ˇŕ¸µŕ¸ŕ¸´ŕ¸ŕ¸ŕ¸Łŕ¸Łŕ¸ˇŕ¸—ีŕąŕ¸ŕ¸°ŕąŕ¸Şŕ¸”ง"})}(),function(){!function(){var e={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'ĂĽncĂĽ",4:"'ĂĽncĂĽ",100:"'ĂĽncĂĽ",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"},t=a.defineLocale("tr",{months:"Ocak_Ĺžubat_Mart_Nisan_Mayıs_Haziran_Temmuz_AÄźustos_EylĂĽl_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Ĺžub_Mar_Nis_May_Haz_Tem_AÄźu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_ÇarĹźamba_PerĹźembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugĂĽn saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dĂĽn] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gĂĽn",dd:"%d gĂĽn",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|ĂĽncĂĽ|ncı|uncu|ıncı)/,ordinal:function(a){if(0===a)return a+"'ıncı";var t=a%10,n=a%100-t,r=a>=100?100:null;return a+(e[t]||e[n]||e[r])},week:{dow:1,doy:7}});return t}(),e.fullCalendar.datepickerLocale("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugĂĽn",monthNames:["Ocak","Ĺžubat","Mart","Nisan","Mayıs","Haziran","Temmuz","AÄźustos","EylĂĽl","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Ĺžub","Mar","Nis","May","Haz","Tem","AÄźu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","ÇarĹźamba","PerĹźembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"GĂĽn",list:"Ajanda"},allDayText:"TĂĽm gĂĽn",eventLimitText:"daha fazla",noEventsMessage:"Herhangi bir etkinlik görĂĽntĂĽlemek için"})}(),function(){!function(){function e(e,a){var t=e.split("_");return a%10===1&&a%100!==11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(a,t,n){var r={mm:t?"хвилина_хвилини_хвилин":"хвилинŃ_хвилини_хвилин",hh:t?"година_години_годин":"годинŃ_години_годин",dd:"день_дні_днів",MM:"ĐĽŃ–Ńяць_ĐĽŃ–Ńяці_ĐĽŃ–Ńяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилинŃ":"h"===n?t?"година":"годинŃ":a+" "+e(r[n],+a)}function n(e,a){var t={nominative:"неділя_понеділок_вівторок_Ńереда_четвер_п’ятниця_ŃŃбота".split("_"),accusative:"неділю_понеділок_вівторок_ŃередŃ_четвер_п’ятницю_ŃŃботŃ".split("_"),genitive:"неділі_понеділка_вівторка_Ńереди_четверга_п’ятниці_ŃŃботи".split("_")},n=/(\[[ВвУŃ]\]) ?dddd/.test(a)?"accusative":/\[?(?:минŃлої|наŃŃ‚Ńпної)? ?\] ?dddd/.test(a)?"genitive":"nominative";return t[n][e.day()]}function r(e){return function(){return e+"Đľ"+(11===this.hours()?"б":"")+"] LT"}}var s=a.defineLocale("uk",{months:{format:"Ńічня_лютого_березня_квітня_травня_червня_липня_Ńерпня_вереŃня_жовтня_лиŃтопада_грŃдня".split("_"),standalone:"Ńічень_лютий_березень_квітень_травень_червень_липень_Ńерпень_вереŃень_жовтень_лиŃтопад_грŃдень".split("_")},monthsShort:"Ńіч_лют_бер_квіт_трав_черв_лип_Ńерп_вер_жовт_лиŃŃ‚_грŃĐ´".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),weekdaysMin:"нд_пн_вт_ŃŃ€_чт_пт_Ńб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY Ń€.",LLL:"D MMMM YYYY Ń€., HH:mm",LLLL:"dddd, D MMMM YYYY Ń€., HH:mm"},calendar:{sameDay:r("[Сьогодні "),nextDay:r("[Завтра "),lastDay:r("[Вчора "),nextWeek:r("[ĐŁ] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return r("[МинŃлої] dddd [").call(this);case 1:case 2:case 4:return r("[МинŃлого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"Đ·Đ° %s",past:"%s томŃ",s:"декілька ŃекŃнд",m:t,mm:t,h:"годинŃ",hh:t,d:"день",dd:t,M:"ĐĽŃ–Ńяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранкŃ|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночі":e<12?"ранкŃ":e<17?"дня":"вечора"},ordinalParse:/\d{1,2}-(Đą|го)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":case"w":case"W":return e+"-Đą";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}});return s}(),e.fullCalendar.datepickerLocale("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","ВереŃень","Жовтень","ЛиŃтопад","Đ“Ń€Ńдень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","ЛиŃ","Đ“Ń€Ń"],dayNames:["неділя","понеділок","вівторок","Ńереда","четвер","п’ятниця","ŃŃбота"],dayNamesShort:["нед","пнд","вів","Ńрд","чтв","птн","Ńбт"],dayNamesMin:["Нд","Пн","Đ’Ń‚","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("uk",{buttonText:{month:"МіŃяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"УвеŃŃŚ день",eventLimitText:function(e){return"+ще "+e+"..."},noEventsMessage:"Немає подій для відображення"})}(),function(){!function(){var e=a.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nháş­t_thứ hai_thứ ba_thứ tĆ°_thứ nÄm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"sa":"SA":t?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [nÄm] YYYY",LLL:"D MMMM [nÄm] YYYY HH:mm",LLLL:"dddd, D MMMM [nÄm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[HĂ´m nay lĂşc] LT",nextDay:"[NgĂ y mai lĂşc] LT",nextWeek:"dddd [tuần tá»›i lĂşc] LT",lastDay:"[HĂ´m qua lĂşc] LT",lastWeek:"dddd [tuần rồi lĂşc] LT",sameElse:"L"},relativeTime:{future:"%s tá»›i",past:"%s trĆ°á»›c",s:"vĂ i giây",m:"má»™t phĂşt",mm:"%d phĂşt",h:"má»™t giờ",hh:"%d giờ",d:"má»™t ngĂ y",dd:"%d ngĂ y",M:"má»™t tháng",MM:"%d tháng",y:"má»™t nÄm",yy:"%d nÄm"},ordinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}});return e}(),e.fullCalendar.datepickerLocale("vi","vi",{closeText:"ÄĂłng",prevText:"<TrĆ°á»›c",nextText:"Tiáşżp>",currentText:"HĂ´m nay",monthNames:["Tháng Má»™t","Tháng Hai","Tháng Ba","Tháng TĆ°","Tháng NÄm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng ChĂ­n","Tháng Mười","Tháng Mười Má»™t","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nháş­t","Thứ Hai","Thứ Ba","Thứ TĆ°","Thứ NÄm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.locale("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"NgĂ y",list:"Lịch biá»u"},allDayText:"Cả ngĂ y",eventLimitText:function(e){return"+ thĂŞm "+e},noEventsMessage:"KhĂ´ng cĂł sá»± kiện Ä‘á» hiá»n thị"})}(),function(){!function(){var e=a.defineLocale("zh-cn",{months:"一ćś_二ćś_三ćś_ĺ››ćś_äş”ćś_ĺ…­ćś_ä¸ćś_ĺ…«ćś_äąťćś_ĺŤćś_ĺŤä¸€ćś_ĺŤäşŚćś".split("_"),monthsShort:"1ćś_2ćś_3ćś_4ćś_5ćś_6ćś_7ćś_8ćś_9ćś_10ćś_11ćś_12ćś".split("_"),weekdays:"ćźćśźć—Ą_ćźćśźä¸€_ćźćśźäşŚ_ćźćśźä¸‰_ćźćśźĺ››_ćźćśźäş”_ćźćśźĺ…­".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"ć—Ą_一_二_三_ĺ››_äş”_ĺ…­".split("_"),longDateFormat:{LT:"Ahç‚ąmmĺ†",LTS:"Ahç‚ąmĺ†s秒",L:"YYYY-MM-DD",LL:"YYYYĺą´MMMDć—Ą",LLL:"YYYYĺą´MMMDć—ĄAhç‚ąmmĺ†",LLLL:"YYYYĺą´MMMDć—ĄddddAhç‚ąmmĺ†",l:"YYYY-MM-DD",ll:"YYYYĺą´MMMDć—Ą",lll:"YYYYĺą´MMMDć—ĄAhç‚ąmmĺ†",llll:"YYYYĺą´MMMDć—ĄddddAhç‚ąmmĺ†"},meridiemParse:/凌晨|早上|上ĺŤ|中ĺŤ|下ĺŤ|晚上/,meridiemHour:function(e,a){return 12===e&&(e=0),"凌晨"===a||"早上"===a||"上ĺŤ"===a?e:"下ĺŤ"===a||"晚上"===a?e+12:e>=11?e:e+12},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上ĺŤ":n<1230?"中ĺŤ":n<1800?"下ĺŤ":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[ç‚ąć•´]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[ćŽĺ¤©]Ah[ç‚ąć•´]":"[ćŽĺ¤©]LT"},lastDay:function(){return 0===this.minutes()?"[ć¨ĺ¤©]Ah[ç‚ąć•´]":"[ć¨ĺ¤©]LT"},nextWeek:function(){var e,t;return e=a().startOf("week"),t=this.diff(e,"days")>=7?"[下]":"[本]",0===this.minutes()?t+"dddAhç‚ąć•´":t+"dddAhç‚ąmm"},lastWeek:function(){var e,t;return e=a().startOf("week"),t=this.unix()=11?e:e+12:"下ĺŤ"===a||"晚上"===a?e+12:void 0},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上ĺŤ":n<1230?"中ĺŤ":n<1800?"下ĺŤ":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[ćŽĺ¤©]LT",nextWeek:"[下]ddddLT",lastDay:"[ć¨ĺ¤©]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(ć—Ą|ćś|週)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"ć—Ą";case"M":return e+"ćś";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%sĺ…§",past:"%s前",s:"幾秒",m:"1 ĺ†é",mm:"%d ĺ†é",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個ćś",MM:"%d 個ćś",y:"1 ĺą´",yy:"%d ĺą´"}});return e}(),e.fullCalendar.datepickerLocale("zh-tw","zh-TW",{closeText:"é—śé–‰",prevText:"<上ćś",nextText:"下ćś>",currentText:"今天",monthNames:["一ćś","二ćś","三ćś","ĺ››ćś","äş”ćś","ĺ…­ćś","ä¸ćś","ĺ…«ćś","äąťćś","ĺŤćś","ĺŤä¸€ćś","ĺŤäşŚćś"],monthNamesShort:["一ćś","二ćś","三ćś","ĺ››ćś","äş”ćś","ĺ…­ćś","ä¸ćś","ĺ…«ćś","äąťćś","ĺŤćś","ĺŤä¸€ćś","ĺŤäşŚćś"],dayNames:["ćźćśźć—Ą","ćźćśźä¸€","ćźćśźäşŚ","ćźćśźä¸‰","ćźćśźĺ››","ćźćśźäş”","ćźćśźĺ…­"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["ć—Ą","一","二","三","ĺ››","äş”","ĺ…­"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"ĺą´"}),e.fullCalendar.locale("zh-tw",{buttonText:{month:"ćś",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多",noEventsMessage:"没有事件ćľç¤ş"})}(),a.locale("en"),e.fullCalendar.locale("en"),e.datepicker&&e.datepicker.setDefaults(e.datepicker.regional[""])}); \ No newline at end of file -- cgit v1.2.3 From 38dd1c342a5d86989a2773f6499c7fbd005e241d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 10 Jan 2017 10:19:22 +0100 Subject: font awesome 4.7.0 --- library/font_awesome/CONTRIBUTING.md | 2 +- library/font_awesome/Gemfile | 1 + library/font_awesome/Gemfile.lock | 6 +- library/font_awesome/README.md | 10 +- library/font_awesome/_config.yml | 6 +- library/font_awesome/component.json | 2 +- library/font_awesome/composer.json | 2 +- library/font_awesome/css/font-awesome.css | 167 +- library/font_awesome/css/font-awesome.min.css | 4 +- library/font_awesome/fonts/FontAwesome.otf | Bin 123112 -> 134808 bytes library/font_awesome/fonts/fontawesome-webfont.eot | Bin 75220 -> 165742 bytes library/font_awesome/fonts/fontawesome-webfont.svg | 3350 ++++++++++++++++---- library/font_awesome/fonts/fontawesome-webfont.ttf | Bin 150920 -> 165548 bytes .../font_awesome/fonts/fontawesome-webfont.woff | Bin 89076 -> 98024 bytes .../font_awesome/fonts/fontawesome-webfont.woff2 | Bin 70728 -> 77160 bytes library/font_awesome/less/font-awesome.less | 2 +- library/font_awesome/less/icons.less | 67 +- library/font_awesome/less/variables.less | 71 +- library/font_awesome/package.json | 2 +- library/font_awesome/scss/_icons.scss | 67 +- library/font_awesome/scss/_variables.scss | 71 +- library/font_awesome/scss/font-awesome.scss | 2 +- library/font_awesome/src/3.2.1/CNAME | 1 + library/font_awesome/src/3.2.1/Makefile | 36 + .../font_awesome/src/3.2.1/assets/css/prettify.css | 30 + .../font_awesome/src/3.2.1/assets/css/pygments.css | 71 + library/font_awesome/src/3.2.1/assets/css/site.css | 1154 +++++++ .../font_awesome/src/3.2.1/assets/font-awesome.zip | Bin 0 -> 276410 bytes .../assets/font-awesome/css/font-awesome-ie7.css | 1203 +++++++ .../font-awesome/css/font-awesome-ie7.min.css | 384 +++ .../3.2.1/assets/font-awesome/css/font-awesome.css | 1479 +++++++++ .../assets/font-awesome/css/font-awesome.min.css | 403 +++ .../3.2.1/assets/font-awesome/font/FontAwesome.otf | Bin 0 -> 61896 bytes .../font-awesome/font/fontawesome-webfont.eot | Bin 0 -> 37405 bytes .../font-awesome/font/fontawesome-webfont.svg | 399 +++ .../font-awesome/font/fontawesome-webfont.ttf | Bin 0 -> 79076 bytes .../font-awesome/font/fontawesome-webfont.woff | Bin 0 -> 43572 bytes .../3.2.1/assets/font-awesome/less/bootstrap.less | 84 + .../src/3.2.1/assets/font-awesome/less/core.less | 129 + .../src/3.2.1/assets/font-awesome/less/extras.less | 93 + .../assets/font-awesome/less/font-awesome-ie7.less | 1953 ++++++++++++ .../assets/font-awesome/less/font-awesome.less | 33 + .../src/3.2.1/assets/font-awesome/less/icons.less | 381 +++ .../src/3.2.1/assets/font-awesome/less/mixins.less | 48 + .../src/3.2.1/assets/font-awesome/less/path.less | 14 + .../3.2.1/assets/font-awesome/less/variables.less | 735 +++++ .../3.2.1/assets/font-awesome/scss/_bootstrap.scss | 84 + .../src/3.2.1/assets/font-awesome/scss/_core.scss | 129 + .../3.2.1/assets/font-awesome/scss/_extras.scss | 93 + .../src/3.2.1/assets/font-awesome/scss/_icons.scss | 381 +++ .../3.2.1/assets/font-awesome/scss/_mixins.scss | 48 + .../src/3.2.1/assets/font-awesome/scss/_path.scss | 14 + .../3.2.1/assets/font-awesome/scss/_variables.scss | 734 +++++ .../assets/font-awesome/scss/font-awesome-ie7.scss | 1953 ++++++++++++ .../assets/font-awesome/scss/font-awesome.scss | 33 + .../src/3.2.1/assets/img/contribution-sample.png | Bin 0 -> 2290 bytes .../src/3.2.1/assets/img/fort_awesome.jpg | Bin 0 -> 114822 bytes .../assets/img/glyphicons-halflings-white.png | Bin 0 -> 8777 bytes .../src/3.2.1/assets/img/glyphicons-halflings.png | Bin 0 -> 12764 bytes .../src/3.2.1/assets/img/icon-flag.pdf | 1355 ++++++++ .../src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js | 8 + .../src/3.2.1/assets/js/ZeroClipboard-1.1.7.swf | Bin 0 -> 1635 bytes .../src/3.2.1/assets/js/backbone.min.js | 37 + .../src/3.2.1/assets/js/bootstrap-2.3.1.min.js | 6 + .../src/3.2.1/assets/js/bootstrap-222.min.js | 6 + .../src/3.2.1/assets/js/jquery-1.7.1.min.js | 4 + .../src/3.2.1/assets/js/prettify.min.js | 28 + library/font_awesome/src/3.2.1/assets/js/site.js | 38 + .../src/3.2.1/assets/js/underscore.min.js | 31 + .../assets/less/bootstrap-2.3.2/accordion.less | 34 + .../3.2.1/assets/less/bootstrap-2.3.2/alerts.less | 79 + .../assets/less/bootstrap-2.3.2/bootstrap.less | 63 + .../assets/less/bootstrap-2.3.2/breadcrumbs.less | 24 + .../assets/less/bootstrap-2.3.2/button-groups.less | 229 ++ .../3.2.1/assets/less/bootstrap-2.3.2/buttons.less | 228 ++ .../assets/less/bootstrap-2.3.2/carousel.less | 158 + .../3.2.1/assets/less/bootstrap-2.3.2/close.less | 32 + .../3.2.1/assets/less/bootstrap-2.3.2/code.less | 61 + .../less/bootstrap-2.3.2/component-animations.less | 22 + .../assets/less/bootstrap-2.3.2/dropdowns.less | 248 ++ .../3.2.1/assets/less/bootstrap-2.3.2/forms.less | 690 ++++ .../3.2.1/assets/less/bootstrap-2.3.2/grid.less | 21 + .../assets/less/bootstrap-2.3.2/hero-unit.less | 25 + .../assets/less/bootstrap-2.3.2/labels-badges.less | 84 + .../3.2.1/assets/less/bootstrap-2.3.2/layouts.less | 16 + .../3.2.1/assets/less/bootstrap-2.3.2/media.less | 55 + .../3.2.1/assets/less/bootstrap-2.3.2/mixins.less | 702 ++++ .../3.2.1/assets/less/bootstrap-2.3.2/modals.less | 95 + .../3.2.1/assets/less/bootstrap-2.3.2/navbar.less | 497 +++ .../3.2.1/assets/less/bootstrap-2.3.2/navs.less | 409 +++ .../3.2.1/assets/less/bootstrap-2.3.2/pager.less | 43 + .../assets/less/bootstrap-2.3.2/pagination.less | 123 + .../assets/less/bootstrap-2.3.2/popovers.less | 133 + .../assets/less/bootstrap-2.3.2/progress-bars.less | 122 + .../3.2.1/assets/less/bootstrap-2.3.2/reset.less | 216 ++ .../bootstrap-2.3.2/responsive-1200px-min.less | 28 + .../less/bootstrap-2.3.2/responsive-767px-max.less | 193 ++ .../bootstrap-2.3.2/responsive-768px-979px.less | 19 + .../less/bootstrap-2.3.2/responsive-navbar.less | 189 ++ .../less/bootstrap-2.3.2/responsive-utilities.less | 59 + .../assets/less/bootstrap-2.3.2/responsive.less | 48 + .../assets/less/bootstrap-2.3.2/scaffolding.less | 53 + .../3.2.1/assets/less/bootstrap-2.3.2/sprites.less | 197 ++ .../3.2.1/assets/less/bootstrap-2.3.2/tables.less | 244 ++ .../assets/less/bootstrap-2.3.2/thumbnails.less | 53 + .../3.2.1/assets/less/bootstrap-2.3.2/tooltip.less | 70 + .../3.2.1/assets/less/bootstrap-2.3.2/type.less | 247 ++ .../assets/less/bootstrap-2.3.2/utilities.less | 30 + .../assets/less/bootstrap-2.3.2/variables.less | 301 ++ .../3.2.1/assets/less/bootstrap-2.3.2/wells.less | 29 + .../font_awesome/src/3.2.1/assets/less/lazy.less | 85 + .../font_awesome/src/3.2.1/assets/less/mixins.less | 58 + .../3.2.1/assets/less/responsive-1200px-min.less | 56 + .../3.2.1/assets/less/responsive-767px-max.less | 83 + .../3.2.1/assets/less/responsive-768px-979px.less | 67 + .../src/3.2.1/assets/less/responsive-navbar.less | 11 + .../src/3.2.1/assets/less/responsive.less | 53 + .../font_awesome/src/3.2.1/assets/less/site.less | 352 ++ .../src/3.2.1/assets/less/sticky-footer.less | 17 + .../src/3.2.1/assets/less/variables.less | 347 ++ .../font_awesome/src/3.2.1/cheatsheet/index.html | 2388 ++++++++++++++ .../font_awesome/src/3.2.1/community/index.html | 363 +++ library/font_awesome/src/3.2.1/design.html | 1 + library/font_awesome/src/3.2.1/examples/index.html | 680 ++++ .../font_awesome/src/3.2.1/get-started/index.html | 308 ++ .../font_awesome/src/3.2.1/icon/adjust/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/adn/index.html | 208 ++ .../src/3.2.1/icon/align-center/index.html | 208 ++ .../src/3.2.1/icon/align-justify/index.html | 208 ++ .../src/3.2.1/icon/align-left/index.html | 208 ++ .../src/3.2.1/icon/align-right/index.html | 208 ++ .../src/3.2.1/icon/ambulance/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/anchor/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/android/index.html | 208 ++ .../src/3.2.1/icon/angle-down/index.html | 208 ++ .../src/3.2.1/icon/angle-left/index.html | 208 ++ .../src/3.2.1/icon/angle-right/index.html | 208 ++ .../src/3.2.1/icon/angle-up/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/apple/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/archive/index.html | 208 ++ .../src/3.2.1/icon/arrow-down/index.html | 208 ++ .../src/3.2.1/icon/arrow-left/index.html | 208 ++ .../src/3.2.1/icon/arrow-right/index.html | 208 ++ .../src/3.2.1/icon/arrow-up/index.html | 208 ++ .../src/3.2.1/icon/asterisk/index.html | 208 ++ .../src/3.2.1/icon/backward/index.html | 208 ++ .../src/3.2.1/icon/ban-circle/index.html | 208 ++ .../src/3.2.1/icon/bar-chart/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/barcode/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/beaker/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/beer/index.html | 208 ++ .../src/3.2.1/icon/bell-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/bell/index.html | 208 ++ .../src/3.2.1/icon/bitbucket-sign/index.html | 208 ++ .../src/3.2.1/icon/bitbucket/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/bold/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/bolt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/book/index.html | 208 ++ .../src/3.2.1/icon/bookmark-empty/index.html | 208 ++ .../src/3.2.1/icon/bookmark/index.html | 208 ++ .../src/3.2.1/icon/briefcase/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/btc/index.html | 215 ++ library/font_awesome/src/3.2.1/icon/bug/index.html | 208 ++ .../src/3.2.1/icon/building/index.html | 208 ++ .../src/3.2.1/icon/bullhorn/index.html | 208 ++ .../src/3.2.1/icon/bullseye/index.html | 208 ++ .../src/3.2.1/icon/calendar-empty/index.html | 208 ++ .../src/3.2.1/icon/calendar/index.html | 208 ++ .../src/3.2.1/icon/camera-retro/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/camera/index.html | 208 ++ .../src/3.2.1/icon/caret-down/index.html | 208 ++ .../src/3.2.1/icon/caret-left/index.html | 208 ++ .../src/3.2.1/icon/caret-right/index.html | 208 ++ .../src/3.2.1/icon/caret-up/index.html | 208 ++ .../src/3.2.1/icon/certificate/index.html | 208 ++ .../src/3.2.1/icon/check-empty/index.html | 213 ++ .../src/3.2.1/icon/check-minus/index.html | 208 ++ .../src/3.2.1/icon/check-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/check/index.html | 208 ++ .../src/3.2.1/icon/chevron-down/index.html | 208 ++ .../src/3.2.1/icon/chevron-left/index.html | 208 ++ .../src/3.2.1/icon/chevron-right/index.html | 208 ++ .../src/3.2.1/icon/chevron-sign-down/index.html | 208 ++ .../src/3.2.1/icon/chevron-sign-left/index.html | 208 ++ .../src/3.2.1/icon/chevron-sign-right/index.html | 208 ++ .../src/3.2.1/icon/chevron-sign-up/index.html | 208 ++ .../src/3.2.1/icon/chevron-up/index.html | 208 ++ .../src/3.2.1/icon/circle-arrow-down/index.html | 208 ++ .../src/3.2.1/icon/circle-arrow-left/index.html | 208 ++ .../src/3.2.1/icon/circle-arrow-right/index.html | 208 ++ .../src/3.2.1/icon/circle-arrow-up/index.html | 208 ++ .../src/3.2.1/icon/circle-blank/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/circle/index.html | 208 ++ .../src/3.2.1/icon/cloud-download/index.html | 208 ++ .../src/3.2.1/icon/cloud-upload/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/cloud/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/cny/index.html | 213 ++ .../src/3.2.1/icon/code-fork/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/code/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/coffee/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/cog/index.html | 213 ++ .../font_awesome/src/3.2.1/icon/cogs/index.html | 213 ++ .../src/3.2.1/icon/collapse-alt/index.html | 208 ++ .../src/3.2.1/icon/collapse-top/index.html | 208 ++ .../src/3.2.1/icon/collapse/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/columns/index.html | 208 ++ .../src/3.2.1/icon/comment-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/comment/index.html | 208 ++ .../src/3.2.1/icon/comments-alt/index.html | 208 ++ .../src/3.2.1/icon/comments/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/compass/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/copy/index.html | 208 ++ .../src/3.2.1/icon/credit-card/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/crop/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/css3/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/cut/index.html | 208 ++ .../src/3.2.1/icon/dashboard/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/desktop/index.html | 208 ++ .../src/3.2.1/icon/double-angle-down/index.html | 208 ++ .../src/3.2.1/icon/double-angle-left/index.html | 208 ++ .../src/3.2.1/icon/double-angle-right/index.html | 208 ++ .../src/3.2.1/icon/double-angle-up/index.html | 208 ++ .../src/3.2.1/icon/download-alt/index.html | 208 ++ .../src/3.2.1/icon/download/index.html | 208 ++ .../src/3.2.1/icon/dribbble/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/dropbox/index.html | 208 ++ .../src/3.2.1/icon/edit-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/edit/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/eject/index.html | 208 ++ .../src/3.2.1/icon/ellipsis-horizontal/index.html | 208 ++ .../src/3.2.1/icon/ellipsis-vertical/index.html | 208 ++ .../src/3.2.1/icon/envelope-alt/index.html | 208 ++ .../src/3.2.1/icon/envelope/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/eraser/index.html | 210 ++ library/font_awesome/src/3.2.1/icon/eur/index.html | 213 ++ .../src/3.2.1/icon/exchange/index.html | 208 ++ .../src/3.2.1/icon/exclamation-sign/index.html | 208 ++ .../src/3.2.1/icon/exclamation/index.html | 208 ++ .../src/3.2.1/icon/expand-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/expand/index.html | 208 ++ .../src/3.2.1/icon/external-link-sign/index.html | 208 ++ .../src/3.2.1/icon/external-link/index.html | 208 ++ .../src/3.2.1/icon/eye-close/index.html | 208 ++ .../src/3.2.1/icon/eye-open/index.html | 208 ++ .../src/3.2.1/icon/facebook-sign/index.html | 208 ++ .../src/3.2.1/icon/facebook/index.html | 208 ++ .../src/3.2.1/icon/facetime-video/index.html | 208 ++ .../src/3.2.1/icon/fast-backward/index.html | 208 ++ .../src/3.2.1/icon/fast-forward/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/female/index.html | 208 ++ .../src/3.2.1/icon/fighter-jet/index.html | 208 ++ .../src/3.2.1/icon/file-alt/index.html | 208 ++ .../src/3.2.1/icon/file-text-alt/index.html | 208 ++ .../src/3.2.1/icon/file-text/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/file/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/film/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/filter/index.html | 208 ++ .../src/3.2.1/icon/fire-extinguisher/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/fire/index.html | 208 ++ .../src/3.2.1/icon/flag-alt/index.html | 208 ++ .../src/3.2.1/icon/flag-checkered/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/flag/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/flickr/index.html | 208 ++ .../src/3.2.1/icon/folder-close-alt/index.html | 208 ++ .../src/3.2.1/icon/folder-close/index.html | 208 ++ .../src/3.2.1/icon/folder-open-alt/index.html | 208 ++ .../src/3.2.1/icon/folder-open/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/font/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/food/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/forward/index.html | 208 ++ .../src/3.2.1/icon/foursquare/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/frown/index.html | 208 ++ .../src/3.2.1/icon/fullscreen/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/gamepad/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/gbp/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/gift/index.html | 208 ++ .../src/3.2.1/icon/github-alt/index.html | 208 ++ .../src/3.2.1/icon/github-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/github/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/gittip/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/glass/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/globe/index.html | 208 ++ .../src/3.2.1/icon/google-plus-sign/index.html | 208 ++ .../src/3.2.1/icon/google-plus/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/group/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/h-sign/index.html | 208 ++ .../src/3.2.1/icon/hand-down/index.html | 208 ++ .../src/3.2.1/icon/hand-left/index.html | 208 ++ .../src/3.2.1/icon/hand-right/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/hand-up/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/hdd/index.html | 208 ++ .../src/3.2.1/icon/headphones/index.html | 208 ++ .../src/3.2.1/icon/heart-empty/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/heart/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/home/index.html | 208 ++ .../src/3.2.1/icon/hospital/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/html5/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/inbox/index.html | 208 ++ .../src/3.2.1/icon/indent-left/index.html | 208 ++ .../src/3.2.1/icon/indent-right/index.html | 208 ++ .../src/3.2.1/icon/info-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/info/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/inr/index.html | 213 ++ .../src/3.2.1/icon/instagram/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/italic/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/jpy/index.html | 213 ++ library/font_awesome/src/3.2.1/icon/key/index.html | 208 ++ .../src/3.2.1/icon/keyboard/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/krw/index.html | 213 ++ .../font_awesome/src/3.2.1/icon/laptop/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/leaf/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/legal/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/lemon/index.html | 208 ++ .../src/3.2.1/icon/level-down/index.html | 208 ++ .../src/3.2.1/icon/level-up/index.html | 208 ++ .../src/3.2.1/icon/lightbulb/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/link/index.html | 208 ++ .../src/3.2.1/icon/linkedin-sign/index.html | 208 ++ .../src/3.2.1/icon/linkedin/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/linux/index.html | 208 ++ .../src/3.2.1/icon/list-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/list-ol/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/list-ul/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/list/index.html | 208 ++ .../src/3.2.1/icon/location-arrow/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/lock/index.html | 208 ++ .../src/3.2.1/icon/long-arrow-down/index.html | 208 ++ .../src/3.2.1/icon/long-arrow-left/index.html | 208 ++ .../src/3.2.1/icon/long-arrow-right/index.html | 208 ++ .../src/3.2.1/icon/long-arrow-up/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/magic/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/magnet/index.html | 208 ++ .../src/3.2.1/icon/mail-reply-all/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/male/index.html | 208 ++ .../src/3.2.1/icon/map-marker/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/maxcdn/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/medkit/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/meh/index.html | 208 ++ .../src/3.2.1/icon/microphone-off/index.html | 208 ++ .../src/3.2.1/icon/microphone/index.html | 208 ++ .../src/3.2.1/icon/minus-sign-alt/index.html | 208 ++ .../src/3.2.1/icon/minus-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/minus/index.html | 208 ++ .../src/3.2.1/icon/mobile-phone/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/money/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/moon/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/move/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/music/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/off/index.html | 213 ++ .../src/3.2.1/icon/ok-circle/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/ok-sign/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/ok/index.html | 208 ++ .../src/3.2.1/icon/paper-clip/index.html | 213 ++ .../font_awesome/src/3.2.1/icon/paste/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/pause/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/pencil/index.html | 208 ++ .../src/3.2.1/icon/phone-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/phone/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/picture/index.html | 208 ++ .../src/3.2.1/icon/pinterest-sign/index.html | 208 ++ .../src/3.2.1/icon/pinterest/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/plane/index.html | 208 ++ .../src/3.2.1/icon/play-circle/index.html | 208 ++ .../src/3.2.1/icon/play-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/play/index.html | 208 ++ .../src/3.2.1/icon/plus-sign-alt/index.html | 210 ++ .../src/3.2.1/icon/plus-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/plus/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/print/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/pushpin/index.html | 208 ++ .../src/3.2.1/icon/puzzle-piece/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/qrcode/index.html | 208 ++ .../src/3.2.1/icon/question-sign/index.html | 208 ++ .../src/3.2.1/icon/question/index.html | 208 ++ .../src/3.2.1/icon/quote-left/index.html | 208 ++ .../src/3.2.1/icon/quote-right/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/random/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/refresh/index.html | 208 ++ .../src/3.2.1/icon/remove-circle/index.html | 208 ++ .../src/3.2.1/icon/remove-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/remove/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/renren/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/reorder/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/repeat/index.html | 213 ++ .../src/3.2.1/icon/reply-all/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/reply/index.html | 213 ++ .../src/3.2.1/icon/resize-full/index.html | 208 ++ .../src/3.2.1/icon/resize-horizontal/index.html | 208 ++ .../src/3.2.1/icon/resize-small/index.html | 208 ++ .../src/3.2.1/icon/resize-vertical/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/retweet/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/road/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/rocket/index.html | 208 ++ .../src/3.2.1/icon/rss-sign/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/rss/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/save/index.html | 208 ++ .../src/3.2.1/icon/screenshot/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/search/index.html | 208 ++ .../src/3.2.1/icon/share-alt/index.html | 213 ++ .../src/3.2.1/icon/share-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/share/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/shield/index.html | 208 ++ .../src/3.2.1/icon/shopping-cart/index.html | 208 ++ .../src/3.2.1/icon/sign-blank/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/signal/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/signin/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/signout/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/sitemap/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/skype/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/smile/index.html | 208 ++ .../src/3.2.1/icon/sort-by-alphabet-alt/index.html | 208 ++ .../src/3.2.1/icon/sort-by-alphabet/index.html | 208 ++ .../3.2.1/icon/sort-by-attributes-alt/index.html | 208 ++ .../src/3.2.1/icon/sort-by-attributes/index.html | 208 ++ .../src/3.2.1/icon/sort-by-order-alt/index.html | 208 ++ .../src/3.2.1/icon/sort-by-order/index.html | 208 ++ .../src/3.2.1/icon/sort-down/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/sort-up/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/sort/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/spinner/index.html | 208 ++ .../src/3.2.1/icon/stackexchange/index.html | 208 ++ .../src/3.2.1/icon/star-empty/index.html | 208 ++ .../src/3.2.1/icon/star-half-empty/index.html | 213 ++ .../src/3.2.1/icon/star-half/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/star/index.html | 208 ++ .../src/3.2.1/icon/step-backward/index.html | 208 ++ .../src/3.2.1/icon/step-forward/index.html | 208 ++ .../src/3.2.1/icon/stethoscope/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/stop/index.html | 208 ++ .../src/3.2.1/icon/strikethrough/index.html | 208 ++ .../src/3.2.1/icon/subscript/index.html | 208 ++ .../src/3.2.1/icon/suitcase/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/sun/index.html | 208 ++ .../src/3.2.1/icon/superscript/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/table/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/tablet/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/tag/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/tags/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/tasks/index.html | 208 ++ .../src/3.2.1/icon/terminal/index.html | 208 ++ .../src/3.2.1/icon/text-height/index.html | 208 ++ .../src/3.2.1/icon/text-width/index.html | 208 ++ .../src/3.2.1/icon/th-large/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/th-list/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/th/index.html | 208 ++ .../src/3.2.1/icon/thumbs-down-alt/index.html | 208 ++ .../src/3.2.1/icon/thumbs-down/index.html | 208 ++ .../src/3.2.1/icon/thumbs-up-alt/index.html | 208 ++ .../src/3.2.1/icon/thumbs-up/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/ticket/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/time/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/tint/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/trash/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/trello/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/trophy/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/truck/index.html | 208 ++ .../src/3.2.1/icon/tumblr-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/tumblr/index.html | 208 ++ .../src/3.2.1/icon/twitter-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/twitter/index.html | 208 ++ .../src/3.2.1/icon/umbrella/index.html | 208 ++ .../src/3.2.1/icon/underline/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/undo/index.html | 213 ++ .../font_awesome/src/3.2.1/icon/unlink/index.html | 208 ++ .../src/3.2.1/icon/unlock-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/unlock/index.html | 208 ++ .../src/3.2.1/icon/upload-alt/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/upload/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/usd/index.html | 213 ++ .../font_awesome/src/3.2.1/icon/user-md/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/user/index.html | 208 ++ library/font_awesome/src/3.2.1/icon/vk/index.html | 208 ++ .../src/3.2.1/icon/volume-down/index.html | 208 ++ .../src/3.2.1/icon/volume-off/index.html | 208 ++ .../src/3.2.1/icon/volume-up/index.html | 208 ++ .../src/3.2.1/icon/warning-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/weibo/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/windows/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/wrench/index.html | 208 ++ .../src/3.2.1/icon/xing-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/xing/index.html | 208 ++ .../src/3.2.1/icon/youtube-play/index.html | 210 ++ .../src/3.2.1/icon/youtube-sign/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/youtube/index.html | 208 ++ .../font_awesome/src/3.2.1/icon/zoom-in/index.html | 208 ++ .../src/3.2.1/icon/zoom-out/index.html | 208 ++ library/font_awesome/src/3.2.1/icons.yml | 2590 +++++++++++++++ library/font_awesome/src/3.2.1/icons/index.html | 1211 +++++++ library/font_awesome/src/3.2.1/index.html | 329 ++ library/font_awesome/src/3.2.1/license/index.html | 270 ++ library/font_awesome/src/3.2.1/test/index.html | 1056 ++++++ .../font_awesome/src/3.2.1/whats-new/index.html | 442 +++ library/font_awesome/src/README.md-nobuild | 6 +- .../accessibility/accessibility-facdn.html | 21 + .../accessibility/accessibility-manual.html | 121 + .../src/_includes/accessibility/background.html | 6 +- .../src/_includes/accessibility/cta-cdn-ally.html | 11 + .../src/_includes/accessibility/other.html | 6 +- .../accessibility/using-with-accessibility.html | 127 - .../font_awesome/src/_includes/brand-license.html | 1 + .../_includes/community/requesting-new-icons.html | 2 +- .../src/_includes/examples/accessible.html | 40 +- .../src/_includes/examples/animated.html | 10 +- .../font_awesome/src/_includes/examples/basic.html | 4 +- .../src/_includes/examples/bootstrap.html | 34 +- .../src/_includes/examples/bordered-pulled.html | 4 +- .../font_awesome/src/_includes/examples/list.html | 16 +- library/font_awesome/src/_includes/footer.html | 11 +- .../font_awesome/src/_includes/icons/brand.html | 8 +- .../src/_includes/jumbotron-carousel.html | 6 +- .../src/_includes/modals/download.html | 2 +- .../src/_includes/modals/kickstarter.html | 24 + library/font_awesome/src/_includes/navbar.html | 23 +- library/font_awesome/src/_includes/thanks-to.html | 2 +- library/font_awesome/src/_layouts/base.html | 38 +- library/font_awesome/src/accessibility.html | 35 +- .../src/assets/font-awesome/fonts/FontAwesome.otf | Bin 123112 -> 134808 bytes .../font-awesome/fonts/fontawesome-webfont.eot | Bin 75220 -> 165742 bytes .../font-awesome/fonts/fontawesome-webfont.svg | 3350 ++++++++++++++++---- .../font-awesome/fonts/fontawesome-webfont.ttf | Bin 150920 -> 165548 bytes .../font-awesome/fonts/fontawesome-webfont.woff | Bin 89076 -> 98024 bytes .../font-awesome/fonts/fontawesome-webfont.woff2 | Bin 70728 -> 77160 bytes .../font_awesome/src/assets/img/logo-approveme.png | Bin 35128 -> 0 bytes .../font_awesome/src/assets/img/logo-themeisle.png | Bin 5547 -> 14209 bytes .../src/assets/img/logo-wpbeginner.png | Bin 7461 -> 8268 bytes library/font_awesome/src/assets/js/monetization.js | 1 + library/font_awesome/src/assets/js/site.js | 104 +- library/font_awesome/src/assets/less/site.less | 1 + .../src/assets/less/site/banner-ad.less | 122 +- .../src/assets/less/site/bootstrap/jumbotron.less | 11 - .../src/assets/less/site/bootstrap/navbar.less | 5 +- .../font_awesome/src/assets/less/site/footer.less | 12 + .../src/assets/less/site/jumbotron-carousel.less | 10 + .../src/assets/less/site/kickstarter.less | 3 + .../font_awesome/src/assets/less/site/lazy.less | 3 +- .../src/assets/less/site/responsive/screen-xs.less | 18 +- .../font_awesome/src/assets/less/site/views.less | 26 +- library/font_awesome/src/cdn/error.html | 56 +- library/font_awesome/src/cdn/new.html | 265 -- library/font_awesome/src/cdn/success.html | 57 +- library/font_awesome/src/examples.html | 11 +- library/font_awesome/src/get-started.html | 347 +- library/font_awesome/src/icons.yml | 515 ++- library/font_awesome/src/test/all.html | 13 +- library/font_awesome/src/thanks.html | 2 +- library/font_awesome/src/whats-new.html | 2 +- 546 files changed, 112870 insertions(+), 2183 deletions(-) create mode 100644 library/font_awesome/src/3.2.1/CNAME create mode 100644 library/font_awesome/src/3.2.1/Makefile create mode 100644 library/font_awesome/src/3.2.1/assets/css/prettify.css create mode 100644 library/font_awesome/src/3.2.1/assets/css/pygments.css create mode 100644 library/font_awesome/src/3.2.1/assets/css/site.css create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome.zip create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss create mode 100644 library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss create mode 100644 library/font_awesome/src/3.2.1/assets/img/contribution-sample.png create mode 100644 library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg create mode 100644 library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png create mode 100644 library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png create mode 100644 library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf create mode 100644 library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.swf create mode 100644 library/font_awesome/src/3.2.1/assets/js/backbone.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/bootstrap-2.3.1.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/bootstrap-222.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/jquery-1.7.1.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/prettify.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/site.js create mode 100644 library/font_awesome/src/3.2.1/assets/js/underscore.min.js create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/accordion.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/alerts.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/bootstrap.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/breadcrumbs.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/button-groups.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/buttons.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/carousel.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/close.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/code.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/dropdowns.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/forms.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/grid.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/hero-unit.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/labels-badges.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/layouts.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/media.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/mixins.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/modals.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/navbar.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/navs.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/pager.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/pagination.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/popovers.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/progress-bars.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/reset.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive-1200px-min.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive-767px-max.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive-768px-979px.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive-navbar.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive-utilities.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/responsive.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/scaffolding.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/sprites.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tables.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/thumbnails.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/type.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/utilities.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/variables.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/wells.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/lazy.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/mixins.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/responsive-1200px-min.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/responsive-767px-max.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/responsive-768px-979px.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/responsive-navbar.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/responsive.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/site.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/sticky-footer.less create mode 100644 library/font_awesome/src/3.2.1/assets/less/variables.less create mode 100644 library/font_awesome/src/3.2.1/cheatsheet/index.html create mode 100644 library/font_awesome/src/3.2.1/community/index.html create mode 100644 library/font_awesome/src/3.2.1/design.html create mode 100644 library/font_awesome/src/3.2.1/examples/index.html create mode 100644 library/font_awesome/src/3.2.1/get-started/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/adjust/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/adn/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/align-center/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/align-justify/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/align-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/align-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ambulance/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/anchor/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/android/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/angle-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/angle-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/angle-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/angle-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/apple/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/archive/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/arrow-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/arrow-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/arrow-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/arrow-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/asterisk/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/backward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ban-circle/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bar-chart/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/barcode/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/beaker/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/beer/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bell-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bell/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bitbucket/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bold/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bolt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/book/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bookmark/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/briefcase/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/btc/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bug/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/building/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bullhorn/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/bullseye/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/calendar-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/calendar/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/camera-retro/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/camera/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/caret-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/caret-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/caret-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/caret-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/certificate/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/check-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/check-minus/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/check-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/check/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/chevron-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle-blank/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/circle/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cloud-download/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cloud-upload/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cloud/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cny/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/code-fork/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/code/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/coffee/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cog/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cogs/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/collapse-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/collapse-top/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/collapse/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/columns/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/comment-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/comment/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/comments-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/comments/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/compass/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/copy/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/credit-card/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/crop/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/css3/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/cut/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/dashboard/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/desktop/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/double-angle-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/double-angle-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/double-angle-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/double-angle-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/download-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/download/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/dribbble/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/dropbox/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/edit-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/edit/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/eject/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/envelope-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/envelope/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/eraser/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/eur/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/exchange/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/exclamation/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/expand-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/expand/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/external-link-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/external-link/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/eye-close/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/eye-open/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/facebook-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/facebook/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/facetime-video/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fast-backward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fast-forward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/female/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fighter-jet/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/file-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/file-text-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/file-text/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/file/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/film/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/filter/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fire/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/flag-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/flag-checkered/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/flag/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/flickr/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/folder-close/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/folder-open/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/font/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/food/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/forward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/foursquare/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/frown/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/fullscreen/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/gamepad/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/gbp/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/gift/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/github-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/github-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/github/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/gittip/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/glass/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/globe/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/google-plus/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/group/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/h-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hand-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hand-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hand-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hand-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hdd/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/headphones/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/heart-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/heart/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/home/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/hospital/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/html5/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/inbox/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/indent-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/indent-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/info-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/info/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/inr/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/instagram/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/italic/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/jpy/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/key/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/keyboard/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/krw/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/laptop/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/leaf/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/legal/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/lemon/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/level-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/level-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/lightbulb/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/link/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/linkedin/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/linux/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/list-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/list-ol/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/list-ul/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/list/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/location-arrow/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/lock/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/magic/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/magnet/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/male/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/map-marker/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/maxcdn/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/medkit/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/meh/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/microphone-off/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/microphone/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/minus-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/minus/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/mobile-phone/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/money/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/moon/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/move/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/music/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/off/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ok-circle/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ok-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ok/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/paper-clip/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/paste/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/pause/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/pencil/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/phone-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/phone/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/picture/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/pinterest/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/plane/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/play-circle/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/play-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/play/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/plus-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/plus/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/print/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/pushpin/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/qrcode/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/question-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/question/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/quote-left/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/quote-right/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/random/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/refresh/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/remove-circle/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/remove-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/remove/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/renren/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/reorder/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/repeat/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/reply-all/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/reply/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/resize-full/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/resize-small/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/resize-vertical/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/retweet/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/road/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/rocket/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/rss-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/rss/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/save/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/screenshot/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/search/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/share-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/share-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/share/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/shield/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/shopping-cart/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sign-blank/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/signal/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/signin/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/signout/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sitemap/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/skype/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/smile/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-by-order/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sort/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/spinner/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/stackexchange/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/star-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/star-half-empty/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/star-half/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/star/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/step-backward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/step-forward/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/stethoscope/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/stop/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/strikethrough/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/subscript/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/suitcase/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/sun/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/superscript/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/table/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tablet/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tag/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tags/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tasks/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/terminal/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/text-height/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/text-width/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/th-large/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/th-list/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/th/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/thumbs-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/thumbs-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/ticket/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/time/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tint/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/trash/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/trello/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/trophy/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/truck/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/tumblr/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/twitter-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/twitter/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/umbrella/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/underline/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/undo/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/unlink/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/unlock-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/unlock/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/upload-alt/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/upload/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/usd/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/user-md/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/user/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/vk/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/volume-down/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/volume-off/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/volume-up/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/warning-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/weibo/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/windows/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/wrench/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/xing-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/xing/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/youtube-play/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/youtube-sign/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/youtube/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/zoom-in/index.html create mode 100644 library/font_awesome/src/3.2.1/icon/zoom-out/index.html create mode 100644 library/font_awesome/src/3.2.1/icons.yml create mode 100644 library/font_awesome/src/3.2.1/icons/index.html create mode 100644 library/font_awesome/src/3.2.1/index.html create mode 100644 library/font_awesome/src/3.2.1/license/index.html create mode 100644 library/font_awesome/src/3.2.1/test/index.html create mode 100644 library/font_awesome/src/3.2.1/whats-new/index.html create mode 100644 library/font_awesome/src/_includes/accessibility/accessibility-facdn.html create mode 100644 library/font_awesome/src/_includes/accessibility/accessibility-manual.html create mode 100644 library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html delete mode 100644 library/font_awesome/src/_includes/accessibility/using-with-accessibility.html create mode 100644 library/font_awesome/src/_includes/modals/kickstarter.html delete mode 100644 library/font_awesome/src/assets/img/logo-approveme.png create mode 100644 library/font_awesome/src/assets/js/monetization.js create mode 100644 library/font_awesome/src/assets/less/site/kickstarter.less delete mode 100644 library/font_awesome/src/cdn/new.html (limited to 'library') diff --git a/library/font_awesome/CONTRIBUTING.md b/library/font_awesome/CONTRIBUTING.md index b3d4f878d..f281d304f 100644 --- a/library/font_awesome/CONTRIBUTING.md +++ b/library/font_awesome/CONTRIBUTING.md @@ -10,7 +10,7 @@ New icons mostly start as requests by the [Font Awesome community on GitHub](../ 1. Please be nice. Font Awesome is a happy place. 2. Please do not request comprehensive sets of icons related to a very specific field. -3. Please [search](../../search?type=Issues) to see if your icon request already exists. If a request is found, please +1 that one. +3. Please [search](../../search?type=Issues) to see if your icon request already exists. If a request is found, please add a đź‘Ť reaction to that one. 4. Please make requests for single icons, unless you are requesting a couple of strictly related icons (e.g., thumbs-up/thumbs-down). 5. Please and thank you if you include the following: - Title your [new issue](../../issues/new?title=Icon%20Request:%20icon-) `Icon request: icon-name` (e.g., `Icon request: icon-car`). diff --git a/library/font_awesome/Gemfile b/library/font_awesome/Gemfile index 0ca1cbfd5..7abbc9066 100644 --- a/library/font_awesome/Gemfile +++ b/library/font_awesome/Gemfile @@ -4,4 +4,5 @@ gem 'jekyll', '~> 1.0' gem 'safe_yaml', '~> 1.0.4' gem 'sass', '~> 3.0' gem 'less', '~> 2.5.0' +gem 'libv8', '~> 3.16.14.0' gem 'therubyracer' diff --git a/library/font_awesome/Gemfile.lock b/library/font_awesome/Gemfile.lock index e0f3de44d..b673ad003 100644 --- a/library/font_awesome/Gemfile.lock +++ b/library/font_awesome/Gemfile.lock @@ -24,7 +24,7 @@ GEM toml (~> 0.1.0) less (2.5.1) commonjs (~> 0.2.7) - libv8 (3.16.14.13) + libv8 (3.16.14.15) liquid (2.5.5) listen (1.3.1) rb-fsevent (>= 0.9.3) @@ -59,6 +59,10 @@ PLATFORMS DEPENDENCIES jekyll (~> 1.0) less (~> 2.5.0) + libv8 (~> 3.16.14.0) safe_yaml (~> 1.0.4) sass (~> 3.0) therubyracer + +BUNDLED WITH + 1.13.2 diff --git a/library/font_awesome/README.md b/library/font_awesome/README.md index bb01dd0d6..3e1c1cfc1 100644 --- a/library/font_awesome/README.md +++ b/library/font_awesome/README.md @@ -1,7 +1,7 @@ -# [Font Awesome v4.6.1](http://fontawesome.io) +# [Font Awesome v4.7.0](http://fontawesome.io) ### The iconic font and CSS framework -Font Awesome is a full suite of 628 pictographic icons for easy scalable vector graphics on websites, +Font Awesome is a full suite of 675 pictographic icons for easy scalable vector graphics on websites, created and maintained by [Dave Gandy](https://twitter.com/davegandy). Stay up to date with the latest release and announcements on Twitter: [@fontawesome](http://twitter.com/fontawesome). @@ -20,6 +20,10 @@ Get started at http://fontawesome.io! - Full details: http://fontawesome.io/license/ ## Changelog +- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117) - [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962) - [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed) - [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed) @@ -55,7 +59,7 @@ And constructed with the following guidelines: * Breaking backward compatibility bumps the major (and resets the minor and patch) * New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) -* Bug fixes and misc changes bumps the patch +* Bug fixes, changes to brand logos, and misc changes bumps the patch For more information on SemVer, please visit http://semver.org. diff --git a/library/font_awesome/_config.yml b/library/font_awesome/_config.yml index 081c1bf1e..18129a1fc 100644 --- a/library/font_awesome/_config.yml +++ b/library/font_awesome/_config.yml @@ -19,10 +19,10 @@ icon_layout: icon.html # Relative to _layouts directory icon_destination: icon # Relative to destination fontawesome: - version: 4.6.1 - minor_version: 4.6 + version: 4.7.0 + minor_version: 4.7 major_version: 4 - doc_blob: v4.6.1 + doc_blob: v4.7.0 url: http://fontawesome.io legacy_url: http://fortawesome.github.com/Font-Awesome/ blog_url: http://articles.fortawesome.com diff --git a/library/font_awesome/component.json b/library/font_awesome/component.json index 6aa7a1c51..0b0fb0a4d 100644 --- a/library/font_awesome/component.json +++ b/library/font_awesome/component.json @@ -2,7 +2,7 @@ "name": "font-awesome", "repo": "FortAwesome/Font-Awesome", "description": "Font Awesome", - "version": "4.6.1", + "version": "4.7.0", "keywords": [], "dependencies": {}, "development": {}, diff --git a/library/font_awesome/composer.json b/library/font_awesome/composer.json index f1b9f3707..c9f41120e 100644 --- a/library/font_awesome/composer.json +++ b/library/font_awesome/composer.json @@ -13,7 +13,7 @@ ], "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" + "dev-master": "4.6.x-dev" } }, "license": [ diff --git a/library/font_awesome/css/font-awesome.css b/library/font_awesome/css/font-awesome.css index bb0fe51ad..ee906a819 100644 --- a/library/font_awesome/css/font-awesome.css +++ b/library/font_awesome/css/font-awesome.css @@ -1,13 +1,13 @@ /*! - * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.6.1'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg'); + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal; } @@ -1383,7 +1383,7 @@ .fa-digg:before { content: "\f1a6"; } -.fa-pied-piper:before { +.fa-pied-piper-pp:before { content: "\f1a7"; } .fa-pied-piper-alt:before { @@ -1509,6 +1509,7 @@ content: "\f1ce"; } .fa-ra:before, +.fa-resistance:before, .fa-rebel:before { content: "\f1d0"; } @@ -1831,6 +1832,7 @@ content: "\f23e"; } .fa-battery-4:before, +.fa-battery:before, .fa-battery-full:before { content: "\f240"; } @@ -2157,6 +2159,163 @@ .fa-snapchat-square:before { content: "\f2ad"; } +.fa-pied-piper:before { + content: "\f2ae"; +} +.fa-first-order:before { + content: "\f2b0"; +} +.fa-yoast:before { + content: "\f2b1"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} +.fa-handshake-o:before { + content: "\f2b5"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-open-o:before { + content: "\f2b7"; +} +.fa-linode:before { + content: "\f2b8"; +} +.fa-address-book:before { + content: "\f2b9"; +} +.fa-address-book-o:before { + content: "\f2ba"; +} +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb"; +} +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-circle-o:before { + content: "\f2be"; +} +.fa-user-o:before { + content: "\f2c0"; +} +.fa-id-badge:before { + content: "\f2c1"; +} +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2"; +} +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-free-code-camp:before { + content: "\f2c5"; +} +.fa-telegram:before { + content: "\f2c6"; +} +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7"; +} +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9"; +} +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca"; +} +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb"; +} +.fa-shower:before { + content: "\f2cc"; +} +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd"; +} +.fa-podcast:before { + content: "\f2ce"; +} +.fa-window-maximize:before { + content: "\f2d0"; +} +.fa-window-minimize:before { + content: "\f2d1"; +} +.fa-window-restore:before { + content: "\f2d2"; +} +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3"; +} +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4"; +} +.fa-bandcamp:before { + content: "\f2d5"; +} +.fa-grav:before { + content: "\f2d6"; +} +.fa-etsy:before { + content: "\f2d7"; +} +.fa-imdb:before { + content: "\f2d8"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-eercast:before { + content: "\f2da"; +} +.fa-microchip:before { + content: "\f2db"; +} +.fa-snowflake-o:before { + content: "\f2dc"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-meetup:before { + content: "\f2e0"; +} .sr-only { position: absolute; width: 1px; diff --git a/library/font_awesome/css/font-awesome.min.css b/library/font_awesome/css/font-awesome.min.css index 885b38403..540440ce8 100644 --- a/library/font_awesome/css/font-awesome.min.css +++ b/library/font_awesome/css/font-awesome.min.css @@ -1,4 +1,4 @@ /*! - * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.1');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/library/font_awesome/fonts/FontAwesome.otf b/library/font_awesome/fonts/FontAwesome.otf index 59853bcda..401ec0f36 100644 Binary files a/library/font_awesome/fonts/FontAwesome.otf and b/library/font_awesome/fonts/FontAwesome.otf differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.eot b/library/font_awesome/fonts/fontawesome-webfont.eot index 96f92f9b8..e9f60ca95 100644 Binary files a/library/font_awesome/fonts/fontawesome-webfont.eot and b/library/font_awesome/fonts/fontawesome-webfont.eot differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.svg b/library/font_awesome/fonts/fontawesome-webfont.svg index 5a5f0ecd4..855c845e5 100644 --- a/library/font_awesome/fonts/fontawesome-webfont.svg +++ b/library/font_awesome/fonts/fontawesome-webfont.svg @@ -1,685 +1,2671 @@ - - + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/library/font_awesome/fonts/fontawesome-webfont.ttf b/library/font_awesome/fonts/fontawesome-webfont.ttf index 86784df96..35acda2fa 100644 Binary files a/library/font_awesome/fonts/fontawesome-webfont.ttf and b/library/font_awesome/fonts/fontawesome-webfont.ttf differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.woff b/library/font_awesome/fonts/fontawesome-webfont.woff index c7faa19c4..400014a4b 100644 Binary files a/library/font_awesome/fonts/fontawesome-webfont.woff and b/library/font_awesome/fonts/fontawesome-webfont.woff differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.woff2 b/library/font_awesome/fonts/fontawesome-webfont.woff2 index cab8571d5..4d13fc604 100644 Binary files a/library/font_awesome/fonts/fontawesome-webfont.woff2 and b/library/font_awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/library/font_awesome/less/font-awesome.less b/library/font_awesome/less/font-awesome.less index 767096008..c3677def3 100644 --- a/library/font_awesome/less/font-awesome.less +++ b/library/font_awesome/less/font-awesome.less @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/library/font_awesome/less/icons.less b/library/font_awesome/less/icons.less index c5e643091..159d60042 100644 --- a/library/font_awesome/less/icons.less +++ b/library/font_awesome/less/icons.less @@ -438,7 +438,7 @@ .@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } .@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } .@{fa-css-prefix}-digg:before { content: @fa-var-digg; } -.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } .@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } .@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } .@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } @@ -488,6 +488,7 @@ .@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } .@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } .@{fa-css-prefix}-ra:before, +.@{fa-css-prefix}-resistance:before, .@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } .@{fa-css-prefix}-ge:before, .@{fa-css-prefix}-empire:before { content: @fa-var-empire; } @@ -604,6 +605,7 @@ .@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } .@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } .@{fa-css-prefix}-battery-4:before, +.@{fa-css-prefix}-battery:before, .@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } .@{fa-css-prefix}-battery-3:before, .@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } @@ -722,3 +724,66 @@ .@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } .@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } .@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } +.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } +.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } +.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } +.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } +.@{fa-css-prefix}-google-plus-circle:before, +.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } +.@{fa-css-prefix}-fa:before, +.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } +.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } +.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } +.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } +.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } +.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } +.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } +.@{fa-css-prefix}-vcard:before, +.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } +.@{fa-css-prefix}-vcard-o:before, +.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } +.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } +.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } +.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } +.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } +.@{fa-css-prefix}-drivers-license:before, +.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } +.@{fa-css-prefix}-drivers-license-o:before, +.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } +.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } +.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } +.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } +.@{fa-css-prefix}-thermometer-4:before, +.@{fa-css-prefix}-thermometer:before, +.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } +.@{fa-css-prefix}-thermometer-3:before, +.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } +.@{fa-css-prefix}-thermometer-2:before, +.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } +.@{fa-css-prefix}-thermometer-1:before, +.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } +.@{fa-css-prefix}-thermometer-0:before, +.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } +.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } +.@{fa-css-prefix}-bathtub:before, +.@{fa-css-prefix}-s15:before, +.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } +.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } +.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } +.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } +.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } +.@{fa-css-prefix}-times-rectangle:before, +.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } +.@{fa-css-prefix}-times-rectangle-o:before, +.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } +.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } +.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } +.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } +.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } +.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } +.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } +.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } +.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } +.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } +.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } +.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/library/font_awesome/less/variables.less b/library/font_awesome/less/variables.less index 8118e8f70..7ddbbc011 100644 --- a/library/font_awesome/less/variables.less +++ b/library/font_awesome/less/variables.less @@ -4,14 +4,18 @@ @fa-font-path: "../fonts"; @fa-font-size-base: 14px; @fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.1/fonts"; // for referencing Bootstrap CDN font files directly +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly @fa-css-prefix: fa; -@fa-version: "4.6.1"; +@fa-version: "4.7.0"; @fa-border-color: #eee; @fa-inverse: #fff; @fa-li-width: (30em / 14); @fa-var-500px: "\f26e"; +@fa-var-address-book: "\f2b9"; +@fa-var-address-book-o: "\f2ba"; +@fa-var-address-card: "\f2bb"; +@fa-var-address-card-o: "\f2bc"; @fa-var-adjust: "\f042"; @fa-var-adn: "\f170"; @fa-var-align-center: "\f037"; @@ -60,11 +64,15 @@ @fa-var-backward: "\f04a"; @fa-var-balance-scale: "\f24e"; @fa-var-ban: "\f05e"; +@fa-var-bandcamp: "\f2d5"; @fa-var-bank: "\f19c"; @fa-var-bar-chart: "\f080"; @fa-var-bar-chart-o: "\f080"; @fa-var-barcode: "\f02a"; @fa-var-bars: "\f0c9"; +@fa-var-bath: "\f2cd"; +@fa-var-bathtub: "\f2cd"; +@fa-var-battery: "\f240"; @fa-var-battery-0: "\f244"; @fa-var-battery-1: "\f243"; @fa-var-battery-2: "\f242"; @@ -214,19 +222,25 @@ @fa-var-dot-circle-o: "\f192"; @fa-var-download: "\f019"; @fa-var-dribbble: "\f17d"; +@fa-var-drivers-license: "\f2c2"; +@fa-var-drivers-license-o: "\f2c3"; @fa-var-dropbox: "\f16b"; @fa-var-drupal: "\f1a9"; @fa-var-edge: "\f282"; @fa-var-edit: "\f044"; +@fa-var-eercast: "\f2da"; @fa-var-eject: "\f052"; @fa-var-ellipsis-h: "\f141"; @fa-var-ellipsis-v: "\f142"; @fa-var-empire: "\f1d1"; @fa-var-envelope: "\f0e0"; @fa-var-envelope-o: "\f003"; +@fa-var-envelope-open: "\f2b6"; +@fa-var-envelope-open-o: "\f2b7"; @fa-var-envelope-square: "\f199"; @fa-var-envira: "\f299"; @fa-var-eraser: "\f12d"; +@fa-var-etsy: "\f2d7"; @fa-var-eur: "\f153"; @fa-var-euro: "\f153"; @fa-var-exchange: "\f0ec"; @@ -240,6 +254,7 @@ @fa-var-eye: "\f06e"; @fa-var-eye-slash: "\f070"; @fa-var-eyedropper: "\f1fb"; +@fa-var-fa: "\f2b4"; @fa-var-facebook: "\f09a"; @fa-var-facebook-f: "\f09a"; @fa-var-facebook-official: "\f230"; @@ -274,6 +289,7 @@ @fa-var-fire: "\f06d"; @fa-var-fire-extinguisher: "\f134"; @fa-var-firefox: "\f269"; +@fa-var-first-order: "\f2b0"; @fa-var-flag: "\f024"; @fa-var-flag-checkered: "\f11e"; @fa-var-flag-o: "\f11d"; @@ -286,11 +302,13 @@ @fa-var-folder-open: "\f07c"; @fa-var-folder-open-o: "\f115"; @fa-var-font: "\f031"; +@fa-var-font-awesome: "\f2b4"; @fa-var-fonticons: "\f280"; @fa-var-fort-awesome: "\f286"; @fa-var-forumbee: "\f211"; @fa-var-forward: "\f04e"; @fa-var-foursquare: "\f180"; +@fa-var-free-code-camp: "\f2c5"; @fa-var-frown-o: "\f119"; @fa-var-futbol-o: "\f1e3"; @fa-var-gamepad: "\f11b"; @@ -317,10 +335,13 @@ @fa-var-globe: "\f0ac"; @fa-var-google: "\f1a0"; @fa-var-google-plus: "\f0d5"; +@fa-var-google-plus-circle: "\f2b3"; +@fa-var-google-plus-official: "\f2b3"; @fa-var-google-plus-square: "\f0d4"; @fa-var-google-wallet: "\f1ee"; @fa-var-graduation-cap: "\f19d"; @fa-var-gratipay: "\f184"; +@fa-var-grav: "\f2d6"; @fa-var-group: "\f0c0"; @fa-var-h-square: "\f0fd"; @fa-var-hacker-news: "\f1d4"; @@ -337,6 +358,7 @@ @fa-var-hand-scissors-o: "\f257"; @fa-var-hand-spock-o: "\f259"; @fa-var-hand-stop-o: "\f256"; +@fa-var-handshake-o: "\f2b5"; @fa-var-hard-of-hearing: "\f2a4"; @fa-var-hashtag: "\f292"; @fa-var-hdd-o: "\f0a0"; @@ -360,8 +382,12 @@ @fa-var-houzz: "\f27c"; @fa-var-html5: "\f13b"; @fa-var-i-cursor: "\f246"; +@fa-var-id-badge: "\f2c1"; +@fa-var-id-card: "\f2c2"; +@fa-var-id-card-o: "\f2c3"; @fa-var-ils: "\f20b"; @fa-var-image: "\f03e"; +@fa-var-imdb: "\f2d8"; @fa-var-inbox: "\f01c"; @fa-var-indent: "\f03c"; @fa-var-industry: "\f275"; @@ -399,6 +425,7 @@ @fa-var-link: "\f0c1"; @fa-var-linkedin: "\f0e1"; @fa-var-linkedin-square: "\f08c"; +@fa-var-linode: "\f2b8"; @fa-var-linux: "\f17c"; @fa-var-list: "\f03a"; @fa-var-list-alt: "\f022"; @@ -431,8 +458,10 @@ @fa-var-meanpath: "\f20c"; @fa-var-medium: "\f23a"; @fa-var-medkit: "\f0fa"; +@fa-var-meetup: "\f2e0"; @fa-var-meh-o: "\f11a"; @fa-var-mercury: "\f223"; +@fa-var-microchip: "\f2db"; @fa-var-microphone: "\f130"; @fa-var-microphone-slash: "\f131"; @fa-var-minus: "\f068"; @@ -482,8 +511,9 @@ @fa-var-photo: "\f03e"; @fa-var-picture-o: "\f03e"; @fa-var-pie-chart: "\f200"; -@fa-var-pied-piper: "\f1a7"; +@fa-var-pied-piper: "\f2ae"; @fa-var-pied-piper-alt: "\f1a8"; +@fa-var-pied-piper-pp: "\f1a7"; @fa-var-pinterest: "\f0d2"; @fa-var-pinterest-p: "\f231"; @fa-var-pinterest-square: "\f0d3"; @@ -496,6 +526,7 @@ @fa-var-plus-circle: "\f055"; @fa-var-plus-square: "\f0fe"; @fa-var-plus-square-o: "\f196"; +@fa-var-podcast: "\f2ce"; @fa-var-power-off: "\f011"; @fa-var-print: "\f02f"; @fa-var-product-hunt: "\f288"; @@ -505,10 +536,12 @@ @fa-var-question: "\f128"; @fa-var-question-circle: "\f059"; @fa-var-question-circle-o: "\f29c"; +@fa-var-quora: "\f2c4"; @fa-var-quote-left: "\f10d"; @fa-var-quote-right: "\f10e"; @fa-var-ra: "\f1d0"; @fa-var-random: "\f074"; +@fa-var-ravelry: "\f2d9"; @fa-var-rebel: "\f1d0"; @fa-var-recycle: "\f1b8"; @fa-var-reddit: "\f1a1"; @@ -522,6 +555,7 @@ @fa-var-repeat: "\f01e"; @fa-var-reply: "\f112"; @fa-var-reply-all: "\f122"; +@fa-var-resistance: "\f1d0"; @fa-var-retweet: "\f079"; @fa-var-rmb: "\f157"; @fa-var-road: "\f018"; @@ -534,6 +568,7 @@ @fa-var-rub: "\f158"; @fa-var-ruble: "\f158"; @fa-var-rupee: "\f156"; +@fa-var-s15: "\f2cd"; @fa-var-safari: "\f267"; @fa-var-save: "\f0c7"; @fa-var-scissors: "\f0c4"; @@ -558,6 +593,7 @@ @fa-var-shopping-bag: "\f290"; @fa-var-shopping-basket: "\f291"; @fa-var-shopping-cart: "\f07a"; +@fa-var-shower: "\f2cc"; @fa-var-sign-in: "\f090"; @fa-var-sign-language: "\f2a7"; @fa-var-sign-out: "\f08b"; @@ -574,6 +610,7 @@ @fa-var-snapchat: "\f2ab"; @fa-var-snapchat-ghost: "\f2ac"; @fa-var-snapchat-square: "\f2ad"; +@fa-var-snowflake-o: "\f2dc"; @fa-var-soccer-ball-o: "\f1e3"; @fa-var-sort: "\f0dc"; @fa-var-sort-alpha-asc: "\f15d"; @@ -619,6 +656,7 @@ @fa-var-subway: "\f239"; @fa-var-suitcase: "\f0f2"; @fa-var-sun-o: "\f185"; +@fa-var-superpowers: "\f2dd"; @fa-var-superscript: "\f12b"; @fa-var-support: "\f1cd"; @fa-var-table: "\f0ce"; @@ -628,6 +666,7 @@ @fa-var-tags: "\f02c"; @fa-var-tasks: "\f0ae"; @fa-var-taxi: "\f1ba"; +@fa-var-telegram: "\f2c6"; @fa-var-television: "\f26c"; @fa-var-tencent-weibo: "\f1d5"; @fa-var-terminal: "\f120"; @@ -636,6 +675,18 @@ @fa-var-th: "\f00a"; @fa-var-th-large: "\f009"; @fa-var-th-list: "\f00b"; +@fa-var-themeisle: "\f2b2"; +@fa-var-thermometer: "\f2c7"; +@fa-var-thermometer-0: "\f2cb"; +@fa-var-thermometer-1: "\f2ca"; +@fa-var-thermometer-2: "\f2c9"; +@fa-var-thermometer-3: "\f2c8"; +@fa-var-thermometer-4: "\f2c7"; +@fa-var-thermometer-empty: "\f2cb"; +@fa-var-thermometer-full: "\f2c7"; +@fa-var-thermometer-half: "\f2c9"; +@fa-var-thermometer-quarter: "\f2ca"; +@fa-var-thermometer-three-quarters: "\f2c8"; @fa-var-thumb-tack: "\f08d"; @fa-var-thumbs-down: "\f165"; @fa-var-thumbs-o-down: "\f088"; @@ -645,6 +696,8 @@ @fa-var-times: "\f00d"; @fa-var-times-circle: "\f057"; @fa-var-times-circle-o: "\f05c"; +@fa-var-times-rectangle: "\f2d3"; +@fa-var-times-rectangle-o: "\f2d4"; @fa-var-tint: "\f043"; @fa-var-toggle-down: "\f150"; @fa-var-toggle-left: "\f191"; @@ -685,11 +738,16 @@ @fa-var-usb: "\f287"; @fa-var-usd: "\f155"; @fa-var-user: "\f007"; +@fa-var-user-circle: "\f2bd"; +@fa-var-user-circle-o: "\f2be"; @fa-var-user-md: "\f0f0"; +@fa-var-user-o: "\f2c0"; @fa-var-user-plus: "\f234"; @fa-var-user-secret: "\f21b"; @fa-var-user-times: "\f235"; @fa-var-users: "\f0c0"; +@fa-var-vcard: "\f2bb"; +@fa-var-vcard-o: "\f2bc"; @fa-var-venus: "\f221"; @fa-var-venus-double: "\f226"; @fa-var-venus-mars: "\f228"; @@ -714,10 +772,16 @@ @fa-var-wheelchair-alt: "\f29b"; @fa-var-wifi: "\f1eb"; @fa-var-wikipedia-w: "\f266"; +@fa-var-window-close: "\f2d3"; +@fa-var-window-close-o: "\f2d4"; +@fa-var-window-maximize: "\f2d0"; +@fa-var-window-minimize: "\f2d1"; +@fa-var-window-restore: "\f2d2"; @fa-var-windows: "\f17a"; @fa-var-won: "\f159"; @fa-var-wordpress: "\f19a"; @fa-var-wpbeginner: "\f297"; +@fa-var-wpexplorer: "\f2de"; @fa-var-wpforms: "\f298"; @fa-var-wrench: "\f0ad"; @fa-var-xing: "\f168"; @@ -729,6 +793,7 @@ @fa-var-yc-square: "\f1d4"; @fa-var-yelp: "\f1e9"; @fa-var-yen: "\f157"; +@fa-var-yoast: "\f2b1"; @fa-var-youtube: "\f167"; @fa-var-youtube-play: "\f16a"; @fa-var-youtube-square: "\f166"; diff --git a/library/font_awesome/package.json b/library/font_awesome/package.json index 423490f81..86f58db06 100644 --- a/library/font_awesome/package.json +++ b/library/font_awesome/package.json @@ -1,7 +1,7 @@ { "name": "font-awesome", "description": "The iconic font and CSS framework", - "version": "4.6.1", + "version": "4.7.0", "style": "css/font-awesome.css", "keywords": ["font", "awesome", "fontawesome", "icon", "font", "bootstrap"], "homepage": "http://fontawesome.io/", diff --git a/library/font_awesome/scss/_icons.scss b/library/font_awesome/scss/_icons.scss index b64017aef..e63e702c4 100644 --- a/library/font_awesome/scss/_icons.scss +++ b/library/font_awesome/scss/_icons.scss @@ -438,7 +438,7 @@ .#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } .#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } .#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } -.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } +.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } .#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } .#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } .#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } @@ -488,6 +488,7 @@ .#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } .#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } .#{$fa-css-prefix}-ra:before, +.#{$fa-css-prefix}-resistance:before, .#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } .#{$fa-css-prefix}-ge:before, .#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } @@ -604,6 +605,7 @@ .#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } .#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } .#{$fa-css-prefix}-battery-4:before, +.#{$fa-css-prefix}-battery:before, .#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } .#{$fa-css-prefix}-battery-3:before, .#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } @@ -722,3 +724,66 @@ .#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } .#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } .#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } +.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } +.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } +.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } +.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +.#{$fa-css-prefix}-google-plus-circle:before, +.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +.#{$fa-css-prefix}-fa:before, +.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } +.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } +.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } +.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } +.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } +.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } +.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } +.#{$fa-css-prefix}-vcard:before, +.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } +.#{$fa-css-prefix}-vcard-o:before, +.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } +.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } +.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } +.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } +.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } +.#{$fa-css-prefix}-drivers-license:before, +.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } +.#{$fa-css-prefix}-drivers-license-o:before, +.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } +.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } +.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } +.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } +.#{$fa-css-prefix}-thermometer-4:before, +.#{$fa-css-prefix}-thermometer:before, +.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } +.#{$fa-css-prefix}-thermometer-3:before, +.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } +.#{$fa-css-prefix}-thermometer-2:before, +.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } +.#{$fa-css-prefix}-thermometer-1:before, +.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } +.#{$fa-css-prefix}-thermometer-0:before, +.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } +.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } +.#{$fa-css-prefix}-bathtub:before, +.#{$fa-css-prefix}-s15:before, +.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } +.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } +.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } +.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } +.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } +.#{$fa-css-prefix}-times-rectangle:before, +.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } +.#{$fa-css-prefix}-times-rectangle-o:before, +.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } +.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } +.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } +.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } +.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } +.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } +.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } +.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } +.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } +.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } +.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } +.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/library/font_awesome/scss/_variables.scss b/library/font_awesome/scss/_variables.scss index 1f374d6c9..498fc4a08 100644 --- a/library/font_awesome/scss/_variables.scss +++ b/library/font_awesome/scss/_variables.scss @@ -4,14 +4,18 @@ $fa-font-path: "../fonts" !default; $fa-font-size-base: 14px !default; $fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.1/fonts" !default; // for referencing Bootstrap CDN font files directly +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly $fa-css-prefix: fa !default; -$fa-version: "4.6.1" !default; +$fa-version: "4.7.0" !default; $fa-border-color: #eee !default; $fa-inverse: #fff !default; $fa-li-width: (30em / 14) !default; $fa-var-500px: "\f26e"; +$fa-var-address-book: "\f2b9"; +$fa-var-address-book-o: "\f2ba"; +$fa-var-address-card: "\f2bb"; +$fa-var-address-card-o: "\f2bc"; $fa-var-adjust: "\f042"; $fa-var-adn: "\f170"; $fa-var-align-center: "\f037"; @@ -60,11 +64,15 @@ $fa-var-automobile: "\f1b9"; $fa-var-backward: "\f04a"; $fa-var-balance-scale: "\f24e"; $fa-var-ban: "\f05e"; +$fa-var-bandcamp: "\f2d5"; $fa-var-bank: "\f19c"; $fa-var-bar-chart: "\f080"; $fa-var-bar-chart-o: "\f080"; $fa-var-barcode: "\f02a"; $fa-var-bars: "\f0c9"; +$fa-var-bath: "\f2cd"; +$fa-var-bathtub: "\f2cd"; +$fa-var-battery: "\f240"; $fa-var-battery-0: "\f244"; $fa-var-battery-1: "\f243"; $fa-var-battery-2: "\f242"; @@ -214,19 +222,25 @@ $fa-var-dollar: "\f155"; $fa-var-dot-circle-o: "\f192"; $fa-var-download: "\f019"; $fa-var-dribbble: "\f17d"; +$fa-var-drivers-license: "\f2c2"; +$fa-var-drivers-license-o: "\f2c3"; $fa-var-dropbox: "\f16b"; $fa-var-drupal: "\f1a9"; $fa-var-edge: "\f282"; $fa-var-edit: "\f044"; +$fa-var-eercast: "\f2da"; $fa-var-eject: "\f052"; $fa-var-ellipsis-h: "\f141"; $fa-var-ellipsis-v: "\f142"; $fa-var-empire: "\f1d1"; $fa-var-envelope: "\f0e0"; $fa-var-envelope-o: "\f003"; +$fa-var-envelope-open: "\f2b6"; +$fa-var-envelope-open-o: "\f2b7"; $fa-var-envelope-square: "\f199"; $fa-var-envira: "\f299"; $fa-var-eraser: "\f12d"; +$fa-var-etsy: "\f2d7"; $fa-var-eur: "\f153"; $fa-var-euro: "\f153"; $fa-var-exchange: "\f0ec"; @@ -240,6 +254,7 @@ $fa-var-external-link-square: "\f14c"; $fa-var-eye: "\f06e"; $fa-var-eye-slash: "\f070"; $fa-var-eyedropper: "\f1fb"; +$fa-var-fa: "\f2b4"; $fa-var-facebook: "\f09a"; $fa-var-facebook-f: "\f09a"; $fa-var-facebook-official: "\f230"; @@ -274,6 +289,7 @@ $fa-var-filter: "\f0b0"; $fa-var-fire: "\f06d"; $fa-var-fire-extinguisher: "\f134"; $fa-var-firefox: "\f269"; +$fa-var-first-order: "\f2b0"; $fa-var-flag: "\f024"; $fa-var-flag-checkered: "\f11e"; $fa-var-flag-o: "\f11d"; @@ -286,11 +302,13 @@ $fa-var-folder-o: "\f114"; $fa-var-folder-open: "\f07c"; $fa-var-folder-open-o: "\f115"; $fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; $fa-var-fonticons: "\f280"; $fa-var-fort-awesome: "\f286"; $fa-var-forumbee: "\f211"; $fa-var-forward: "\f04e"; $fa-var-foursquare: "\f180"; +$fa-var-free-code-camp: "\f2c5"; $fa-var-frown-o: "\f119"; $fa-var-futbol-o: "\f1e3"; $fa-var-gamepad: "\f11b"; @@ -317,10 +335,13 @@ $fa-var-glide-g: "\f2a6"; $fa-var-globe: "\f0ac"; $fa-var-google: "\f1a0"; $fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-official: "\f2b3"; $fa-var-google-plus-square: "\f0d4"; $fa-var-google-wallet: "\f1ee"; $fa-var-graduation-cap: "\f19d"; $fa-var-gratipay: "\f184"; +$fa-var-grav: "\f2d6"; $fa-var-group: "\f0c0"; $fa-var-h-square: "\f0fd"; $fa-var-hacker-news: "\f1d4"; @@ -337,6 +358,7 @@ $fa-var-hand-rock-o: "\f255"; $fa-var-hand-scissors-o: "\f257"; $fa-var-hand-spock-o: "\f259"; $fa-var-hand-stop-o: "\f256"; +$fa-var-handshake-o: "\f2b5"; $fa-var-hard-of-hearing: "\f2a4"; $fa-var-hashtag: "\f292"; $fa-var-hdd-o: "\f0a0"; @@ -360,8 +382,12 @@ $fa-var-hourglass-start: "\f251"; $fa-var-houzz: "\f27c"; $fa-var-html5: "\f13b"; $fa-var-i-cursor: "\f246"; +$fa-var-id-badge: "\f2c1"; +$fa-var-id-card: "\f2c2"; +$fa-var-id-card-o: "\f2c3"; $fa-var-ils: "\f20b"; $fa-var-image: "\f03e"; +$fa-var-imdb: "\f2d8"; $fa-var-inbox: "\f01c"; $fa-var-indent: "\f03c"; $fa-var-industry: "\f275"; @@ -399,6 +425,7 @@ $fa-var-line-chart: "\f201"; $fa-var-link: "\f0c1"; $fa-var-linkedin: "\f0e1"; $fa-var-linkedin-square: "\f08c"; +$fa-var-linode: "\f2b8"; $fa-var-linux: "\f17c"; $fa-var-list: "\f03a"; $fa-var-list-alt: "\f022"; @@ -431,8 +458,10 @@ $fa-var-maxcdn: "\f136"; $fa-var-meanpath: "\f20c"; $fa-var-medium: "\f23a"; $fa-var-medkit: "\f0fa"; +$fa-var-meetup: "\f2e0"; $fa-var-meh-o: "\f11a"; $fa-var-mercury: "\f223"; +$fa-var-microchip: "\f2db"; $fa-var-microphone: "\f130"; $fa-var-microphone-slash: "\f131"; $fa-var-minus: "\f068"; @@ -482,8 +511,9 @@ $fa-var-phone-square: "\f098"; $fa-var-photo: "\f03e"; $fa-var-picture-o: "\f03e"; $fa-var-pie-chart: "\f200"; -$fa-var-pied-piper: "\f1a7"; +$fa-var-pied-piper: "\f2ae"; $fa-var-pied-piper-alt: "\f1a8"; +$fa-var-pied-piper-pp: "\f1a7"; $fa-var-pinterest: "\f0d2"; $fa-var-pinterest-p: "\f231"; $fa-var-pinterest-square: "\f0d3"; @@ -496,6 +526,7 @@ $fa-var-plus: "\f067"; $fa-var-plus-circle: "\f055"; $fa-var-plus-square: "\f0fe"; $fa-var-plus-square-o: "\f196"; +$fa-var-podcast: "\f2ce"; $fa-var-power-off: "\f011"; $fa-var-print: "\f02f"; $fa-var-product-hunt: "\f288"; @@ -505,10 +536,12 @@ $fa-var-qrcode: "\f029"; $fa-var-question: "\f128"; $fa-var-question-circle: "\f059"; $fa-var-question-circle-o: "\f29c"; +$fa-var-quora: "\f2c4"; $fa-var-quote-left: "\f10d"; $fa-var-quote-right: "\f10e"; $fa-var-ra: "\f1d0"; $fa-var-random: "\f074"; +$fa-var-ravelry: "\f2d9"; $fa-var-rebel: "\f1d0"; $fa-var-recycle: "\f1b8"; $fa-var-reddit: "\f1a1"; @@ -522,6 +555,7 @@ $fa-var-reorder: "\f0c9"; $fa-var-repeat: "\f01e"; $fa-var-reply: "\f112"; $fa-var-reply-all: "\f122"; +$fa-var-resistance: "\f1d0"; $fa-var-retweet: "\f079"; $fa-var-rmb: "\f157"; $fa-var-road: "\f018"; @@ -534,6 +568,7 @@ $fa-var-rss-square: "\f143"; $fa-var-rub: "\f158"; $fa-var-ruble: "\f158"; $fa-var-rupee: "\f156"; +$fa-var-s15: "\f2cd"; $fa-var-safari: "\f267"; $fa-var-save: "\f0c7"; $fa-var-scissors: "\f0c4"; @@ -558,6 +593,7 @@ $fa-var-shirtsinbulk: "\f214"; $fa-var-shopping-bag: "\f290"; $fa-var-shopping-basket: "\f291"; $fa-var-shopping-cart: "\f07a"; +$fa-var-shower: "\f2cc"; $fa-var-sign-in: "\f090"; $fa-var-sign-language: "\f2a7"; $fa-var-sign-out: "\f08b"; @@ -574,6 +610,7 @@ $fa-var-smile-o: "\f118"; $fa-var-snapchat: "\f2ab"; $fa-var-snapchat-ghost: "\f2ac"; $fa-var-snapchat-square: "\f2ad"; +$fa-var-snowflake-o: "\f2dc"; $fa-var-soccer-ball-o: "\f1e3"; $fa-var-sort: "\f0dc"; $fa-var-sort-alpha-asc: "\f15d"; @@ -619,6 +656,7 @@ $fa-var-subscript: "\f12c"; $fa-var-subway: "\f239"; $fa-var-suitcase: "\f0f2"; $fa-var-sun-o: "\f185"; +$fa-var-superpowers: "\f2dd"; $fa-var-superscript: "\f12b"; $fa-var-support: "\f1cd"; $fa-var-table: "\f0ce"; @@ -628,6 +666,7 @@ $fa-var-tag: "\f02b"; $fa-var-tags: "\f02c"; $fa-var-tasks: "\f0ae"; $fa-var-taxi: "\f1ba"; +$fa-var-telegram: "\f2c6"; $fa-var-television: "\f26c"; $fa-var-tencent-weibo: "\f1d5"; $fa-var-terminal: "\f120"; @@ -636,6 +675,18 @@ $fa-var-text-width: "\f035"; $fa-var-th: "\f00a"; $fa-var-th-large: "\f009"; $fa-var-th-list: "\f00b"; +$fa-var-themeisle: "\f2b2"; +$fa-var-thermometer: "\f2c7"; +$fa-var-thermometer-0: "\f2cb"; +$fa-var-thermometer-1: "\f2ca"; +$fa-var-thermometer-2: "\f2c9"; +$fa-var-thermometer-3: "\f2c8"; +$fa-var-thermometer-4: "\f2c7"; +$fa-var-thermometer-empty: "\f2cb"; +$fa-var-thermometer-full: "\f2c7"; +$fa-var-thermometer-half: "\f2c9"; +$fa-var-thermometer-quarter: "\f2ca"; +$fa-var-thermometer-three-quarters: "\f2c8"; $fa-var-thumb-tack: "\f08d"; $fa-var-thumbs-down: "\f165"; $fa-var-thumbs-o-down: "\f088"; @@ -645,6 +696,8 @@ $fa-var-ticket: "\f145"; $fa-var-times: "\f00d"; $fa-var-times-circle: "\f057"; $fa-var-times-circle-o: "\f05c"; +$fa-var-times-rectangle: "\f2d3"; +$fa-var-times-rectangle-o: "\f2d4"; $fa-var-tint: "\f043"; $fa-var-toggle-down: "\f150"; $fa-var-toggle-left: "\f191"; @@ -685,11 +738,16 @@ $fa-var-upload: "\f093"; $fa-var-usb: "\f287"; $fa-var-usd: "\f155"; $fa-var-user: "\f007"; +$fa-var-user-circle: "\f2bd"; +$fa-var-user-circle-o: "\f2be"; $fa-var-user-md: "\f0f0"; +$fa-var-user-o: "\f2c0"; $fa-var-user-plus: "\f234"; $fa-var-user-secret: "\f21b"; $fa-var-user-times: "\f235"; $fa-var-users: "\f0c0"; +$fa-var-vcard: "\f2bb"; +$fa-var-vcard-o: "\f2bc"; $fa-var-venus: "\f221"; $fa-var-venus-double: "\f226"; $fa-var-venus-mars: "\f228"; @@ -714,10 +772,16 @@ $fa-var-wheelchair: "\f193"; $fa-var-wheelchair-alt: "\f29b"; $fa-var-wifi: "\f1eb"; $fa-var-wikipedia-w: "\f266"; +$fa-var-window-close: "\f2d3"; +$fa-var-window-close-o: "\f2d4"; +$fa-var-window-maximize: "\f2d0"; +$fa-var-window-minimize: "\f2d1"; +$fa-var-window-restore: "\f2d2"; $fa-var-windows: "\f17a"; $fa-var-won: "\f159"; $fa-var-wordpress: "\f19a"; $fa-var-wpbeginner: "\f297"; +$fa-var-wpexplorer: "\f2de"; $fa-var-wpforms: "\f298"; $fa-var-wrench: "\f0ad"; $fa-var-xing: "\f168"; @@ -729,6 +793,7 @@ $fa-var-yc: "\f23b"; $fa-var-yc-square: "\f1d4"; $fa-var-yelp: "\f1e9"; $fa-var-yen: "\f157"; +$fa-var-yoast: "\f2b1"; $fa-var-youtube: "\f167"; $fa-var-youtube-play: "\f16a"; $fa-var-youtube-square: "\f166"; diff --git a/library/font_awesome/scss/font-awesome.scss b/library/font_awesome/scss/font-awesome.scss index a19d664c3..f1c83aaa5 100644 --- a/library/font_awesome/scss/font-awesome.scss +++ b/library/font_awesome/scss/font-awesome.scss @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/library/font_awesome/src/3.2.1/CNAME b/library/font_awesome/src/3.2.1/CNAME new file mode 100644 index 000000000..f13145254 --- /dev/null +++ b/library/font_awesome/src/3.2.1/CNAME @@ -0,0 +1 @@ +fontawesome.io \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/Makefile b/library/font_awesome/src/3.2.1/Makefile new file mode 100644 index 000000000..7359665af --- /dev/null +++ b/library/font_awesome/src/3.2.1/Makefile @@ -0,0 +1,36 @@ +PATH := ../node_modules/.bin:$(PATH) + +FA_ROOT_DIRECTORY = assets/font-awesome +FA_LESS_DIRECTORY = assets/font-awesome/less +FA_CSS_DIRECTORY = assets/font-awesome/css + +FA_LESS_MODERN = ${FA_LESS_DIRECTORY}/font-awesome.less +FA_LESS_IE7 = ${FA_LESS_DIRECTORY}/font-awesome-ie7.less + +FA_CSS_MODERN = ${FA_CSS_DIRECTORY}/font-awesome.css +FA_CSS_MODERN_MIN = ${FA_CSS_DIRECTORY}/font-awesome.min.css +FA_CSS_IE7 = ${FA_CSS_DIRECTORY}/font-awesome-ie7.css +FA_CSS_IE7_MIN = ${FA_CSS_DIRECTORY}/font-awesome-ie7.min.css + +SITE_LESS_DIRECTORY = assets/less +SITE_CSS_DIRECTORY = assets/css + +SITE_LESS = ${SITE_LESS_DIRECTORY}/site.less +SITE_CSS_MIN = ${SITE_CSS_DIRECTORY}/site.css + +build: + @echo "Compiling Less files" + @mkdir -p ${FA_CSS_DIRECTORY} + lessc ${FA_LESS_MODERN} > ${FA_CSS_MODERN} + lessc --compress ${FA_LESS_MODERN} > ${FA_CSS_MODERN_MIN} + lessc ${FA_LESS_IE7} > ${FA_CSS_IE7} + lessc --compress ${FA_LESS_IE7} > ${FA_CSS_IE7_MIN} + lessc --compress ${SITE_LESS} > ${SITE_CSS_MIN} + cp -r ${FA_ROOT_DIRECTORY}/* ../ + cd assets && zip -r9 font-awesome.zip font-awesome + + +default: build + + +.PHONY: build diff --git a/library/font_awesome/src/3.2.1/assets/css/prettify.css b/library/font_awesome/src/3.2.1/assets/css/prettify.css new file mode 100644 index 000000000..aedd8d1a9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/css/prettify.css @@ -0,0 +1,30 @@ +.com { color: #93a1a1; } +.lit { color: #195f91; } +.pun, .opn, .clo { color: #93a1a1; } +.fun { color: #dc322f; } +.str, .atv { color: #D14; } +.kwd, .linenums .tag { color: #1e347b; } +.typ, .atn, .dec, .var { color: teal; } +.pln { color: #48484c; } + +.prettyprint { + padding: 8px; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; +} +.prettyprint.linenums { + -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; + -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; + box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; +} + +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin: 0 0 0 33px; /* IE indents via margin-left */ +} +ol.linenums li { + padding-left: 12px; + color: #bebec5; + line-height: 18px; + text-shadow: 0 1px 0 #fff; +} \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/css/pygments.css b/library/font_awesome/src/3.2.1/assets/css/pygments.css new file mode 100644 index 000000000..5af20ee5e --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/css/pygments.css @@ -0,0 +1,71 @@ +.hll { background-color: #ffffcc } +/*{ background: #f0f3f3; }*/ +.c { color: #999; } /* Comment */ +.err { color: #AA0000; background-color: #FFAAAA } /* Error */ +.k { color: #006699; } /* Keyword */ +.o { color: #555555 } /* Operator */ +.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ +.cp { color: #009999 } /* Comment.Preproc */ +.c1 { color: #999; } /* Comment.Single */ +.cs { color: #999; } /* Comment.Special */ +.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ +.ge { font-style: italic } /* Generic.Emph */ +.gr { color: #FF0000 } /* Generic.Error */ +.gh { color: #003300; } /* Generic.Heading */ +.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ +.go { color: #AAAAAA } /* Generic.Output */ +.gp { color: #000099; } /* Generic.Prompt */ +.gs { } /* Generic.Strong */ +.gu { color: #003300; } /* Generic.Subheading */ +.gt { color: #99CC66 } /* Generic.Traceback */ +.kc { color: #006699; } /* Keyword.Constant */ +.kd { color: #006699; } /* Keyword.Declaration */ +.kn { color: #006699; } /* Keyword.Namespace */ +.kp { color: #006699 } /* Keyword.Pseudo */ +.kr { color: #006699; } /* Keyword.Reserved */ +.kt { color: #007788; } /* Keyword.Type */ +.m { color: #FF6600 } /* Literal.Number */ +.s { color: #d44950 } /* Literal.String */ +.na { color: #4f9fcf } /* Name.Attribute */ +.nb { color: #336666 } /* Name.Builtin */ +.nc { color: #00AA88; } /* Name.Class */ +.no { color: #336600 } /* Name.Constant */ +.nd { color: #9999FF } /* Name.Decorator */ +.ni { color: #999999; } /* Name.Entity */ +.ne { color: #CC0000; } /* Name.Exception */ +.nf { color: #CC00FF } /* Name.Function */ +.nl { color: #9999FF } /* Name.Label */ +.nn { color: #00CCFF; } /* Name.Namespace */ +.nt { color: #2f6f9f; } /* Name.Tag */ +.nv { color: #003333 } /* Name.Variable */ +.ow { color: #000000; } /* Operator.Word */ +.w { color: #bbbbbb } /* Text.Whitespace */ +.mf { color: #FF6600 } /* Literal.Number.Float */ +.mh { color: #FF6600 } /* Literal.Number.Hex */ +.mi { color: #FF6600 } /* Literal.Number.Integer */ +.mo { color: #FF6600 } /* Literal.Number.Oct */ +.sb { color: #CC3300 } /* Literal.String.Backtick */ +.sc { color: #CC3300 } /* Literal.String.Char */ +.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ +.s2 { color: #CC3300 } /* Literal.String.Double */ +.se { color: #CC3300; } /* Literal.String.Escape */ +.sh { color: #CC3300 } /* Literal.String.Heredoc */ +.si { color: #AA0000 } /* Literal.String.Interpol */ +.sx { color: #CC3300 } /* Literal.String.Other */ +.sr { color: #33AAAA } /* Literal.String.Regex */ +.s1 { color: #CC3300 } /* Literal.String.Single */ +.ss { color: #FFCC33 } /* Literal.String.Symbol */ +.bp { color: #336666 } /* Name.Builtin.Pseudo */ +.vc { color: #003333 } /* Name.Variable.Class */ +.vg { color: #003333 } /* Name.Variable.Global */ +.vi { color: #003333 } /* Name.Variable.Instance */ +.il { color: #FF6600 } /* Literal.Number.Integer.Long */ + +.css .o, +.css .o + .nt, +.css .nt + .nt { color: #999; } + +pre { + background-color: #fafafa; + padding: 8px 15px; +} diff --git a/library/font_awesome/src/3.2.1/assets/css/site.css b/library/font_awesome/src/3.2.1/assets/css/site.css new file mode 100644 index 000000000..b5fd3f612 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/css/site.css @@ -0,0 +1,1154 @@ +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} +audio:not([controls]){display:none;} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +a:hover,a:active{outline:0;} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} +sup{top:-0.5em;} +sub{bottom:-0.25em;} +img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} +#map_canvas img,.google-maps img{max-width:none;} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} +button,input{*overflow:visible;line-height:normal;} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} +button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} +textarea{overflow:auto;vertical-align:top;} +@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) ")";} .ir a:after,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;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} +a{color:#c83025;text-decoration:none;} +a:hover,a:focus{color:#9d261d;text-decoration:underline;} +.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} +.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} +.row:after{clear:both;} +.row:before,.row:after{display:table;content:"";line-height:0;} +.row:after{clear:both;} +[class*="span"]{float:left;min-height:1px;margin-left:20px;} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.span12{width:940px;} +.span11{width:860px;} +.span10{width:780px;} +.span9{width:700px;} +.span8{width:620px;} +.span7{width:540px;} +.span6{width:460px;} +.span5{width:380px;} +.span4{width:300px;} +.span3{width:220px;} +.span2{width:140px;} +.span1{width:60px;} +.offset12{margin-left:980px;} +.offset11{margin-left:900px;} +.offset10{margin-left:820px;} +.offset9{margin-left:740px;} +.offset8{margin-left:660px;} +.offset7{margin-left:580px;} +.offset6{margin-left:500px;} +.offset5{margin-left:420px;} +.offset4{margin-left:340px;} +.offset3{margin-left:260px;} +.offset2{margin-left:180px;} +.offset1{margin-left:100px;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} +.row:after{clear:both;} +.row:before,.row:after{display:table;content:"";line-height:0;} +.row:after{clear:both;} +[class*="span"]{float:left;min-height:1px;margin-left:20px;} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.span12{width:940px;} +.span11{width:860px;} +.span10{width:780px;} +.span9{width:700px;} +.span8{width:620px;} +.span7{width:540px;} +.span6{width:460px;} +.span5{width:380px;} +.span4{width:300px;} +.span3{width:220px;} +.span2{width:140px;} +.span1{width:60px;} +.offset12{margin-left:980px;} +.offset11{margin-left:900px;} +.offset10{margin-left:820px;} +.offset9{margin-left:740px;} +.offset8{margin-left:660px;} +.offset7{margin-left:580px;} +.offset6{margin-left:500px;} +.offset5{margin-left:420px;} +.offset4{margin-left:340px;} +.offset3{margin-left:260px;} +.offset2{margin-left:180px;} +.offset1{margin-left:100px;} +.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} +.row-fluid:after{clear:both;} +.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} +.row-fluid:after{clear:both;} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} +.row-fluid [class*="span"]:first-child{margin-left:0;} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} +.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} +.row-fluid:after{clear:both;} +.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} +.row-fluid:after{clear:both;} +.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} +.row-fluid [class*="span"]:first-child{margin-left:0;} +.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;} +.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} +.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} +.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} +.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} +.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} +.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} +[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} +.container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} +.container:after{clear:both;} +.container:before,.container:after{display:table;content:"";line-height:0;} +.container:after{clear:both;} +.container:before,.container:after{display:table;content:"";line-height:0;} +.container:after{clear:both;} +.container:before,.container:after{display:table;content:"";line-height:0;} +.container:after{clear:both;} +.container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} +.container-fluid:after{clear:both;} +.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} +.container-fluid:after{clear:both;} +p{margin:0 0 10px;} +.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} +small{font-size:85%;} +strong{font-weight:bold;} +em{font-style:italic;} +cite{font-style:normal;} +.muted{color:#999999;} +a.muted:hover,a.muted:focus{color:#808080;} +.text-warning{color:#b58603;} +a.text-warning:hover,a.text-warning:focus{color:#836102;} +.text-error{color:#9d261d;} +a.text-error:hover,a.text-error:focus{color:#721c15;} +.text-info{color:#007dbc;} +a.text-info:hover,a.text-info:focus{color:#005b89;} +.text-success{color:#5c7f41;} +a.text-success:hover,a.text-success:focus{color:#435d2f;} +.text-left{text-align:left;} +.text-right{text-align:right;} +.text-center{text-align:center;} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:500;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} +h1,h2,h3{line-height:40px;} +h1{font-size:38.5px;} +h2{font-size:31.5px;} +h3{font-size:24.5px;} +h4{font-size:17.5px;} +h5{font-size:14px;} +h6{font-size:11.9px;} +h1 small{font-size:24.5px;} +h2 small{font-size:17.5px;} +h3 small{font-size:14px;} +h4 small{font-size:14px;} +.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} +ul,ol{padding:0;margin:0 0 10px 25px;} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} +li{line-height:20px;} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} +ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;} +dl{margin-bottom:20px;} +dt,dd{line-height:20px;} +dt{font-weight:bold;} +dd{margin-left:10px;} +.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} +.dl-horizontal:after{clear:both;} +.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} +.dl-horizontal:after{clear:both;} +.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;} +hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} +abbr.initialism{font-size:90%;text-transform:uppercase;} +blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25;} +blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +blockquote.pull-right small:before{content:'';} +blockquote.pull-right small:after{content:'\00A0 \2014';} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} +code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} +pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +form{margin:0 0 20px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} +label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} +input,button,select,textarea{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;} +select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} +input,textarea,.uneditable-input{width:206px;} +textarea{height:auto;} +textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-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 linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} +select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +.uneditable-input{overflow:hidden;white-space:nowrap;} +.uneditable-textarea{width:auto;height:auto;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} +input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} +.radio,.checkbox{min-height:20px;padding-left:20px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} +input,textarea,.uneditable-input{margin-left:0;} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12,textarea.span12,.uneditable-input.span12{width:926px;} +input.span11,textarea.span11,.uneditable-input.span11{width:846px;} +input.span10,textarea.span10,.uneditable-input.span10{width:766px;} +input.span9,textarea.span9,.uneditable-input.span9{width:686px;} +input.span8,textarea.span8,.uneditable-input.span8{width:606px;} +input.span7,textarea.span7,.uneditable-input.span7{width:526px;} +input.span6,textarea.span6,.uneditable-input.span6{width:446px;} +input.span5,textarea.span5,.uneditable-input.span5{width:366px;} +input.span4,textarea.span4,.uneditable-input.span4{width:286px;} +input.span3,textarea.span3,.uneditable-input.span3{width:206px;} +input.span2,textarea.span2,.uneditable-input.span2{width:126px;} +input.span1,textarea.span1,.uneditable-input.span1{width:46px;} +input,textarea,.uneditable-input{margin-left:0;} +.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12,textarea.span12,.uneditable-input.span12{width:926px;} +input.span11,textarea.span11,.uneditable-input.span11{width:846px;} +input.span10,textarea.span10,.uneditable-input.span10{width:766px;} +input.span9,textarea.span9,.uneditable-input.span9{width:686px;} +input.span8,textarea.span8,.uneditable-input.span8{width:606px;} +input.span7,textarea.span7,.uneditable-input.span7{width:526px;} +input.span6,textarea.span6,.uneditable-input.span6{width:446px;} +input.span5,textarea.span5,.uneditable-input.span5{width:366px;} +input.span4,textarea.span4,.uneditable-input.span4{width:286px;} +input.span3,textarea.span3,.uneditable-input.span3{width:206px;} +input.span2,textarea.span2,.uneditable-input.span2{width:126px;} +input.span1,textarea.span1,.uneditable-input.span1{width:46px;} +.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} +.controls-row:after{clear:both;} +.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} +.controls-row:after{clear:both;} +.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#b58603;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#b58603;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#b58603;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#836102;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#b58603;background-color:#fffcee;border-color:#b58603;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#b58603;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#b58603;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#b58603;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#836102;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#b58603;background-color:#fffcee;border-color:#b58603;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#9d261d;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#9d261d;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#9d261d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#721c15;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#9d261d;background-color:#fff0f0;border-color:#9d261d;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#9d261d;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#9d261d;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#9d261d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#721c15;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#9d261d;background-color:#fff0f0;border-color:#9d261d;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#5c7f41;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#5c7f41;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#5c7f41;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#435d2f;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#5c7f41;background-color:#f3f9e8;border-color:#5c7f41;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#5c7f41;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#5c7f41;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#5c7f41;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#435d2f;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#5c7f41;background-color:#f3f9e8;border-color:#5c7f41;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#007dbc;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#007dbc;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#007dbc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#005b89;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#007dbc;background-color:#f0f9ff;border-color:#007dbc;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#007dbc;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#007dbc;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#007dbc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#005b89;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#007dbc;background-color:#f0f9ff;border-color:#007dbc;} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} +.form-actions:after{clear:both;} +.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} +.form-actions:after{clear:both;} +.help-block,.help-inline{color:#595959;} +.help-block{display:block;margin-bottom:10px;} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-append .active,.input-prepend .active{background-color:#d9e8c2;border-color:#95bf52;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} +.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .btn-group:first-child{margin-left:0;} +input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} +.control-group{margin-bottom:10px;} +legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} +.form-horizontal .help-block{margin-bottom:0;} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} +.form-horizontal .form-actions{padding-left:180px;} +table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.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 #dddddd;} +.table .table{background-color:#ffffff;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} +.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} +.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 td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} +.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} +.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} +.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} +.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} +.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} +.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} +.table tbody tr.success>td{background-color:#f3f9e8;} +.table tbody tr.error>td{background-color:#fff0f0;} +.table tbody tr.warning>td{background-color:#fffcee;} +.table tbody tr.info>td{background-color:#f0f9ff;} +.table-hover tbody tr.success:hover>td{background-color:#e8f4d4;} +.table-hover tbody tr.error:hover>td{background-color:#ffd7d7;} +.table-hover tbody tr.warning:hover>td{background-color:#fff8d5;} +.table-hover tbody tr.info:hover>td{background-color:#d7efff;} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png");} +.icon-glass{background-position:0 0;} +.icon-music{background-position:-24px 0;} +.icon-search{background-position:-48px 0;} +.icon-envelope{background-position:-72px 0;} +.icon-heart{background-position:-96px 0;} +.icon-star{background-position:-120px 0;} +.icon-star-empty{background-position:-144px 0;} +.icon-user{background-position:-168px 0;} +.icon-film{background-position:-192px 0;} +.icon-th-large{background-position:-216px 0;} +.icon-th{background-position:-240px 0;} +.icon-th-list{background-position:-264px 0;} +.icon-ok{background-position:-288px 0;} +.icon-remove{background-position:-312px 0;} +.icon-zoom-in{background-position:-336px 0;} +.icon-zoom-out{background-position:-360px 0;} +.icon-off{background-position:-384px 0;} +.icon-signal{background-position:-408px 0;} +.icon-cog{background-position:-432px 0;} +.icon-trash{background-position:-456px 0;} +.icon-home{background-position:0 -24px;} +.icon-file{background-position:-24px -24px;} +.icon-time{background-position:-48px -24px;} +.icon-road{background-position:-72px -24px;} +.icon-download-alt{background-position:-96px -24px;} +.icon-download{background-position:-120px -24px;} +.icon-upload{background-position:-144px -24px;} +.icon-inbox{background-position:-168px -24px;} +.icon-play-circle{background-position:-192px -24px;} +.icon-repeat{background-position:-216px -24px;} +.icon-refresh{background-position:-240px -24px;} +.icon-list-alt{background-position:-264px -24px;} +.icon-lock{background-position:-287px -24px;} +.icon-flag{background-position:-312px -24px;} +.icon-headphones{background-position:-336px -24px;} +.icon-volume-off{background-position:-360px -24px;} +.icon-volume-down{background-position:-384px -24px;} +.icon-volume-up{background-position:-408px -24px;} +.icon-qrcode{background-position:-432px -24px;} +.icon-barcode{background-position:-456px -24px;} +.icon-tag{background-position:0 -48px;} +.icon-tags{background-position:-25px -48px;} +.icon-book{background-position:-48px -48px;} +.icon-bookmark{background-position:-72px -48px;} +.icon-print{background-position:-96px -48px;} +.icon-camera{background-position:-120px -48px;} +.icon-font{background-position:-144px -48px;} +.icon-bold{background-position:-167px -48px;} +.icon-italic{background-position:-192px -48px;} +.icon-text-height{background-position:-216px -48px;} +.icon-text-width{background-position:-240px -48px;} +.icon-align-left{background-position:-264px -48px;} +.icon-align-center{background-position:-288px -48px;} +.icon-align-right{background-position:-312px -48px;} +.icon-align-justify{background-position:-336px -48px;} +.icon-list{background-position:-360px -48px;} +.icon-indent-left{background-position:-384px -48px;} +.icon-indent-right{background-position:-408px -48px;} +.icon-facetime-video{background-position:-432px -48px;} +.icon-picture{background-position:-456px -48px;} +.icon-pencil{background-position:0 -72px;} +.icon-map-marker{background-position:-24px -72px;} +.icon-adjust{background-position:-48px -72px;} +.icon-tint{background-position:-72px -72px;} +.icon-edit{background-position:-96px -72px;} +.icon-share{background-position:-120px -72px;} +.icon-check{background-position:-144px -72px;} +.icon-move{background-position:-168px -72px;} +.icon-step-backward{background-position:-192px -72px;} +.icon-fast-backward{background-position:-216px -72px;} +.icon-backward{background-position:-240px -72px;} +.icon-play{background-position:-264px -72px;} +.icon-pause{background-position:-288px -72px;} +.icon-stop{background-position:-312px -72px;} +.icon-forward{background-position:-336px -72px;} +.icon-fast-forward{background-position:-360px -72px;} +.icon-step-forward{background-position:-384px -72px;} +.icon-eject{background-position:-408px -72px;} +.icon-chevron-left{background-position:-432px -72px;} +.icon-chevron-right{background-position:-456px -72px;} +.icon-plus-sign{background-position:0 -96px;} +.icon-minus-sign{background-position:-24px -96px;} +.icon-remove-sign{background-position:-48px -96px;} +.icon-ok-sign{background-position:-72px -96px;} +.icon-question-sign{background-position:-96px -96px;} +.icon-info-sign{background-position:-120px -96px;} +.icon-screenshot{background-position:-144px -96px;} +.icon-remove-circle{background-position:-168px -96px;} +.icon-ok-circle{background-position:-192px -96px;} +.icon-ban-circle{background-position:-216px -96px;} +.icon-arrow-left{background-position:-240px -96px;} +.icon-arrow-right{background-position:-264px -96px;} +.icon-arrow-up{background-position:-289px -96px;} +.icon-arrow-down{background-position:-312px -96px;} +.icon-share-alt{background-position:-336px -96px;} +.icon-resize-full{background-position:-360px -96px;} +.icon-resize-small{background-position:-384px -96px;} +.icon-plus{background-position:-408px -96px;} +.icon-minus{background-position:-433px -96px;} +.icon-asterisk{background-position:-456px -96px;} +.icon-exclamation-sign{background-position:0 -120px;} +.icon-gift{background-position:-24px -120px;} +.icon-leaf{background-position:-48px -120px;} +.icon-fire{background-position:-72px -120px;} +.icon-eye-open{background-position:-96px -120px;} +.icon-eye-close{background-position:-120px -120px;} +.icon-warning-sign{background-position:-144px -120px;} +.icon-plane{background-position:-168px -120px;} +.icon-calendar{background-position:-192px -120px;} +.icon-random{background-position:-216px -120px;width:16px;} +.icon-comment{background-position:-240px -120px;} +.icon-magnet{background-position:-264px -120px;} +.icon-chevron-up{background-position:-288px -120px;} +.icon-chevron-down{background-position:-313px -119px;} +.icon-retweet{background-position:-336px -120px;} +.icon-shopping-cart{background-position:-360px -120px;} +.icon-folder-close{background-position:-384px -120px;width:16px;} +.icon-folder-open{background-position:-408px -120px;width:16px;} +.icon-resize-vertical{background-position:-432px -119px;} +.icon-resize-horizontal{background-position:-456px -118px;} +.icon-hdd{background-position:0 -144px;} +.icon-bullhorn{background-position:-24px -144px;} +.icon-bell{background-position:-48px -144px;} +.icon-certificate{background-position:-72px -144px;} +.icon-thumbs-up{background-position:-96px -144px;} +.icon-thumbs-down{background-position:-120px -144px;} +.icon-hand-right{background-position:-144px -144px;} +.icon-hand-left{background-position:-168px -144px;} +.icon-hand-up{background-position:-192px -144px;} +.icon-hand-down{background-position:-216px -144px;} +.icon-circle-arrow-right{background-position:-240px -144px;} +.icon-circle-arrow-left{background-position:-264px -144px;} +.icon-circle-arrow-up{background-position:-288px -144px;} +.icon-circle-arrow-down{background-position:-312px -144px;} +.icon-globe{background-position:-336px -144px;} +.icon-wrench{background-position:-360px -144px;} +.icon-tasks{background-position:-384px -144px;} +.icon-filter{background-position:-408px -144px;} +.icon-briefcase{background-position:-432px -144px;} +.icon-fullscreen{background-position:-456px -144px;} +.dropup,.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.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;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} +.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#bf2e23;background-image:-moz-linear-gradient(top, #c83025, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#c83025), to(#b32b21));background-image:-webkit-linear-gradient(top, #c83025, #b32b21);background-image:-o-linear-gradient(top, #c83025, #b32b21);background-image:linear-gradient(to bottom, #c83025, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc83025', endColorstr='#ffb32b21', GradientType=0);} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#bf2e23;background-image:-moz-linear-gradient(top, #c83025, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#c83025), to(#b32b21));background-image:-webkit-linear-gradient(top, #c83025, #b32b21);background-image:-o-linear-gradient(top, #c83025, #b32b21);background-image:linear-gradient(to bottom, #c83025, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc83025', endColorstr='#ffb32b21', GradientType=0);} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;} +.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:default;} +.open{*z-index:1000;}.open>.dropdown-menu{display:block;} +.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 #000000;content:"";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.dropdown-submenu{position:relative;} +.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} +.dropdown-submenu:hover>.dropdown-menu{display:block;} +.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} +.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} +.dropdown-submenu:hover>a:after{border-left-color:#ffffff;} +.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} +.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-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-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} +.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} +.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:first-child{*margin-left:0;} +.btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} +.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} +.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} +.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.btn-block+.btn-block{margin-top:5px;} +input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} +.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#e7d785;background-image:-moz-linear-gradient(top, #fffeb8, #c49c38);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fffeb8), to(#c49c38));background-image:-webkit-linear-gradient(top, #fffeb8, #c49c38);background-image:-o-linear-gradient(top, #fffeb8, #c49c38);background-image:linear-gradient(to bottom, #fffeb8, #c49c38);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffeb8', endColorstr='#ffc49c38', GradientType=0);border-color:#c49c38 #c49c38 #896d27;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#c49c38;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#c49c38;*background-color:#b08c32;} +.btn-primary:active,.btn-primary.active{background-color:#9c7c2d \9;} +.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#c49c38;*background-color:#b08c32;} +.btn-primary:active,.btn-primary.active{background-color:#9c7c2d \9;} +.btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#e7c44b;background-image:-moz-linear-gradient(top, #f9e27d, #cc9600);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f9e27d), to(#cc9600));background-image:-webkit-linear-gradient(top, #f9e27d, #cc9600);background-image:-o-linear-gradient(top, #f9e27d, #cc9600);background-image:linear-gradient(to bottom, #f9e27d, #cc9600);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9e27d', endColorstr='#ffcc9600', GradientType=0);border-color:#cc9600 #cc9600 #805e00;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#cc9600;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#cc9600;*background-color:#b38300;} +.btn-warning:active,.btn-warning.active{background-color:#997100 \9;} +.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#cc9600;*background-color:#b38300;} +.btn-warning:active,.btn-warning.active{background-color:#997100 \9;} +.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#cc4036;background-image:-moz-linear-gradient(top, #dc4e44, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#dc4e44), to(#b32b21));background-image:-webkit-linear-gradient(top, #dc4e44, #b32b21);background-image:-o-linear-gradient(top, #dc4e44, #b32b21);background-image:linear-gradient(to bottom, #dc4e44, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdc4e44', endColorstr='#ffb32b21', GradientType=0);border-color:#b32b21 #b32b21 #721c15;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#b32b21;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#b32b21;*background-color:#9d261d;} +.btn-danger:active,.btn-danger.active{background-color:#872119 \9;} +.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#b32b21;*background-color:#9d261d;} +.btn-danger:active,.btn-danger.active{background-color:#872119 \9;} +.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#83a94c;background-image:-moz-linear-gradient(top, #95bf52, #678943);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#95bf52), to(#678943));background-image:-webkit-linear-gradient(top, #95bf52, #678943);background-image:-o-linear-gradient(top, #95bf52, #678943);background-image:linear-gradient(to bottom, #95bf52, #678943);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff95bf52', endColorstr='#ff678943', GradientType=0);border-color:#678943 #678943 #40562a;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#678943;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#678943;*background-color:#5a783b;} +.btn-success:active,.btn-success.active{background-color:#4d6732 \9;} +.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#678943;*background-color:#5a783b;} +.btn-success:active,.btn-success.active{background-color:#4d6732 \9;} +.btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#008ed0;background-image:-moz-linear-gradient(top, #009add, #007dbc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#009add), to(#007dbc));background-image:-webkit-linear-gradient(top, #009add, #007dbc);background-image:-o-linear-gradient(top, #009add, #007dbc);background-image:linear-gradient(to bottom, #009add, #007dbc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff009add', endColorstr='#ff007dbc', GradientType=0);border-color:#007dbc #007dbc #004a70;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#007dbc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#007dbc;*background-color:#006ca3;} +.btn-info:active,.btn-info.active{background-color:#005b89 \9;} +.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#007dbc;*background-color:#006ca3;} +.btn-info:active,.btn-info.active{background-color:#005b89 \9;} +.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-link{border-color:transparent;cursor:pointer;color:#c83025;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-link:hover,.btn-link:focus{color:#9d261d;text-decoration:underline;background-color:transparent;} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;} +.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} +.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} +.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group>.btn+.btn{margin-left:-1px;} +.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} +.btn-group>.btn-mini{font-size:10.5px;} +.btn-group>.btn-small{font-size:11.9px;} +.btn-group>.btn-large{font-size:17.5px;} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} +.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} +.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} +.btn-group.open .btn-primary.dropdown-toggle{background-color:#c49c38;} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#cc9600;} +.btn-group.open .btn-danger.dropdown-toggle{background-color:#b32b21;} +.btn-group.open .btn-success.dropdown-toggle{background-color:#678943;} +.btn-group.open .btn-info.dropdown-toggle{background-color:#007dbc;} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} +.btn .caret{margin-top:8px;margin-left:0;} +.btn-large .caret{margin-top:6px;} +.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} +.btn-mini .caret,.btn-small .caret{margin-top:8px;} +.dropup .btn-large .caret{border-bottom-width:5px;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} +.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} +.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} +.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fffcee;border:1px solid #ffedca;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert h4{color:#b58603;} +.alert h4{margin:0;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} +.alert-success{background-color:#f3f9e8;border-color:#e1ebb3;color:#5c7f41;} +.alert-success h4{color:#5c7f41;} +.alert-danger,.alert-error{background-color:#fff0f0;border-color:#ffdce1;color:#9d261d;} +.alert-danger h4,.alert-error h4{color:#9d261d;} +.alert-info{background-color:#f0f9ff;border-color:#ccf3ff;color:#007dbc;} +.alert-info h4{color:#007dbc;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +.nav{margin-left:0;margin-bottom:20px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;} +.nav>li>a>img{max-width:none;} +.nav>.pull-right{float:right;} +.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#c83025;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} +.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#c83025;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.nav .dropdown-toggle .caret{border-top-color:#c83025;border-bottom-color:#c83025;margin-top:6px;} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#9d261d;border-bottom-color:#9d261d;} +.nav-tabs .dropdown-toggle .caret{margin-top:8px;} +.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} +.tabbable:after{clear:both;} +.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} +.tabbable:after{clear:both;} +.tab-content{overflow:auto;} +.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below>.nav-tabs{border-top:1px solid #ddd;} +.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} +.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.nav>.disabled>a{color:#999999;} +.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;} +.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} +.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} +.navbar-inner:after{clear:both;} +.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} +.navbar-inner:after{clear:both;} +.navbar .container{width:auto;} +.nav-collapse.collapse{height:auto;overflow:visible;} +.navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;} +.navbar-text{margin-bottom:0;line-height:40px;color:#777777;} +.navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;} +.navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} +.navbar .btn,.navbar .btn-group{margin-top:5px;} +.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} +.navbar-form:after{clear:both;} +.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} +.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;margin-right:0;} +.navbar .nav>li{float:left;} +.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} +.navbar .nav .dropdown-toggle .caret{margin-top:8px;} +.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} +.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;} +.navbar-inverse .brand{color:#999999;} +.navbar-inverse .navbar-text{color:#999999;} +.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} +.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;} +.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} +.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} +.breadcrumb>.active{color:#999999;} +.pagination{margin:20px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination ul>li{display:inline;} +.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} +.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} +.pager:after{clear:both;} +.pager:before,.pager:after{display:table;content:"";line-height:0;} +.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;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5;} +.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:#999999;background-color:#fff;cursor:default;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:10%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-header h3{margin:0;line-height:30px;} +.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} +.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} +.modal-footer:after{clear:both;} +.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} +.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;} +.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.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:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;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:#000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-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;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;} +.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:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} +.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} +.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} +.thumbnails:after{clear:both;} +.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} +.thumbnails:after{clear:both;} +.row-fluid .thumbnails{margin-left:0;} +.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} +a.thumbnail:hover,a.thumbnail:focus{border-color:#c83025;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;color:#555555;} +.media,.media-body{overflow:hidden;*overflow:visible;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{margin-right:10px;} +.media>.pull-right{margin-left:10px;} +.media-list{margin-left:0;list-style:none;} +.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} +.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.label:empty,.badge:empty{display:none;} +a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decoration:none;cursor:pointer;} +.label-important,.badge-important{background-color:#9d261d;} +.label-important[href],.badge-important[href]{background-color:#721c15;} +.label-warning,.badge-warning{background-color:#f4914e;} +.label-warning[href],.badge-warning[href]{background-color:#f1731e;} +.label-success,.badge-success{background-color:#5c7f41;} +.label-success[href],.badge-success[href]{background-color:#435d2f;} +.label-info,.badge-info{background-color:#007dbc;} +.label-info[href],.badge-info[href]{background-color:#005b89;} +.label-inverse,.badge-inverse{background-color:#333333;} +.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} +.btn .label,.btn .badge{position:relative;top:-1px;} +.btn-mini .label,.btn-mini .badge{top:0;} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 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:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-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-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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:-moz-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:-o-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);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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:-moz-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:-o-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-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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:-moz-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:-o-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-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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:-moz-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:-o-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-warning .bar,.progress .bar-warning{background-color:#f7ac79;background-image:-moz-linear-gradient(top, #f8be96, #f4914e);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f8be96), to(#f4914e));background-image:-webkit-linear-gradient(top, #f8be96, #f4914e);background-image:-o-linear-gradient(top, #f8be96, #f4914e);background-image:linear-gradient(to bottom, #f8be96, #f4914e);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8be96', endColorstr='#fff4914e', GradientType=0);} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#f8be96;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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:-moz-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:-o-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);} +.accordion{margin-bottom:20px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-toggle{cursor:pointer;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:20px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-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;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:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;} +.carousel-indicators .active{background-color:#fff;} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} +.carousel-caption h4{margin:0 0 5px;} +.carousel-caption p{margin-bottom:0;} +.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} +.hero-unit li{line-height:30px;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} +.affix{position:fixed;} +@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;} +.visible-phone{display:none !important;} +.visible-tablet{display:none !important;} +.hidden-desktop{display:none !important;} +.visible-desktop{display:inherit !important;} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;} +@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}html,body{height:100%;} +.wrapper{min-height:100%;height:auto !important;height:100%;} +.wrapper{margin:0 auto -231px;} +.push{height:231px;} +.footer{margin-top:60px;height:90px;padding:40px 0 40px;} +.padding-none{padding:0 !important;} +.padding{padding:10px !important;} +.padding-small{padding:5px !important;} +.padding-large{padding:22px !important;} +.padding-top-none{padding-top:0 !important;} +.padding-top{padding-top:10px !important;} +.padding-top-small{padding-top:5px !important;} +.padding-top-large{padding-top:22px !important;} +.padding-right-none{padding-right:0 !important;} +.padding-right{padding-right:10px !important;} +.padding-right-small{padding-right:5px !important;} +.padding-right-large{padding-right:22px !important;} +.padding-bottom-none{padding-bottom:0 !important;} +.padding-bottom{padding-bottom:10px !important;} +.padding-bottom-small{padding-bottom:5px !important;} +.padding-bottom-large{padding-bottom:22px !important;} +.padding-left-none{padding-left:0 !important;} +.padding-left{padding-left:10px !important;} +.padding-left-small{padding-left:5px !important;} +.padding-left-large{padding-left:22px !important;} +.margin-none{margin:0 !important;} +.margin{margin:10px !important;} +.margin-small{margin:5px !important;} +.margin-large{margin:22px !important;} +.margin-top-none{margin-top:0 !important;} +.margin-top{margin-top:10px !important;} +.margin-top-large{margin-top:22px !important;} +.margin-top-small{margin-top:5px !important;} +.margin-right-none{margin-right:0 !important;} +.margin-right{margin-right:10px !important;} +.margin-right-large{margin-right:22px !important;} +.margin-right-small{margin-right:5px !important;} +.margin-bottom-none{margin-bottom:0 !important;} +.margin-bottom{margin-bottom:10px !important;} +.margin-bottom-large{margin-bottom:22px !important;} +.margin-bottom-small{margin-bottom:5px !important;} +.margin-left-none{margin-left:0 !important;} +.margin-left{margin-left:10px !important;} +.margin-left-large{margin-left:22px !important;} +.margin-left-small{margin-left:5px !important;} +.border-left-none{border-left:none !important;} +.border-right-none{border-right:none !important;} +.border-bottom-none{border-bottom:none !important;} +.border-top-none{border-top:none !important;} +.display-block{display:block;} +.no-underline:hover{text-decoration:none;} +.clickable{cursor:pointer;} +.strong{font-weight:bold;} +.em{font-style:italic;} +.small{font-size:85%;} +.no-link{color:#333333;} +.text-sans-serif{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;} +.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} +.text-default{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;font-weight:normal;} +.hilite{color:#c83025;}.hilite:hover{color:#9d261d;text-decoration:underline;} +.hilite [class^="icon-"]:before,.hilite [class*=" icon-"]:before{display:inline;} +.strike{text-decoration:line-through;} +.upper{text-transform:uppercase;} +.lower{text-transform:lowercase;} +.navbar .brand{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;}.navbar .brand .icon-flag{padding-right:3px;} +.navbar .nav>li>a{padding:12px 10px 9px;} +.navbar .nav.pull-right{margin-right:-10px;} +h1,h2,h3,h4,h5,h6{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;} +#iconCarousel{font-size:220px;text-align:center;line-height:225px;text-shadow:2px 2px 3px #222222;}#iconCarousel a{color:#ffffff;} +#iconCarousel .carousel-control{top:253px;width:30px;height:30px;background:none;border-width:0;font-size:30px;line-height:25px;left:117px;}#iconCarousel .carousel-control.right{left:auto;right:117px;} +.jumbotron{background:#9d261d;border-bottom:1px solid #721c15;background-color:#99251c;background-repeat:repeat-x;background-image:-moz-linear-gradient(-40deg, #9d261d, #99251c);background-image:-webkit-linear-gradient(-40deg, #9d261d, #99251c);background-image:-o-linear-gradient(-40deg, #9d261d, #99251c);background-image:linear-gradient(-40deg, #9d261d, #99251c);text-shadow:2px 2px 2px #333333;}.jumbotron,.jumbotron h1{color:#ffffff;} +.jumbotron h1{font-size:80px;letter-spacing:-2px;line-height:1;} +.jumbotron p{margin-top:15px;margin-bottom:15px;font-size:30px;line-height:1.3;font-weight:lighter;} +.jumbotron .actions{margin-top:25px;} +.jumbotron ul{margin-left:50px;}.jumbotron ul li{font-size:15px;line-height:30px;text-shadow:1px 1px 1px #333333;}.jumbotron ul li.icon-large:before{text-indent:-2em;vertical-align:baseline;} +.jumbotron .btn-large{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;font-size:24px;padding:17px 30px;letter-spacing:-1px;} +.jumbotron .hero-content{text-align:center;} +.jumbotron .shameless-self-promotion{font-size:14px;margin-top:25px;color:#c47d77;text-shadow:none;}.jumbotron .shameless-self-promotion a{color:#e2bebb;} +.jumbotron .shameless-self-promotion a:hover{color:#ffffff;} +.jumbotron-index{padding:40px 0;}.jumbotron-index h1{font-size:80px;letter-spacing:-2px;line-height:1;margin:0 0 15px;} +.jumbotron-index p{margin-top:15px;margin-bottom:15px;font-size:30px;line-height:1.3;} +.jumbotron-ad{padding:20px 0;}.jumbotron-ad h1{margin-top:25px;} +.jumbotron-ad p{margin-bottom:35px;} +.jumbotron-icon{padding:20px 0 30px;background-color:#e6e6e6;background-repeat:repeat-x;background-image:-moz-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:-webkit-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:-o-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:linear-gradient(-40deg, #eeeeee, #e6e6e6);color:#222222;text-shadow:1px 1px 1px #ffffff;border-bottom:solid 1px #c4c4c4;}.jumbotron-icon h1{color:#222222;font-size:40px;}.jumbotron-icon h1 small{letter-spacing:normal;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;margin-left:20px;} +.jumbotron-icon .info-details{float:left;}.jumbotron-icon .info-details p{margin:25px 0;font-weight:bold;} +.jumbotron-icon .info-details .dl-horizontal dt{width:80px;} +.jumbotron-icon .info-details .dl-horizontal dd{margin-left:95px;} +.jumbotron-icon .icon-2{font-size:2em;} +.jumbotron-icon .icon-3{font-size:4em;} +.jumbotron-icon .icon-4{font-size:7em;} +.jumbotron-icon .icon-5{font-size:12em;} +.jumbotron-icon .icon-6{font-size:20em;} +.jumbotron-icon .icon-1,.jumbotron-icon .icon-2,.jumbotron-icon .icon-3,.jumbotron-icon .icon-4,.jumbotron-icon .icon-5,.jumbotron-icon .icon-6{margin-right:0.07142857142857142em;} +.stripe-ad{margin-bottom:22px;}.stripe-ad .lead{margin-top:10px;margin-right:30px;} +.btn-primary{color:#333333;text-shadow:0 -1px 0 rgba(255, 255, 255, 0.25);}.btn-primary:hover{text-shadow:0 -1px 0 rgba(255, 255, 255, 0.25);color:#333333;} +section{margin-top:40px;} +.stacked{padding-top:35px;height:105px;} +#social-buttons{padding:22px 0 17px;text-align:center;background-color:#f5f5f5;border-top:1px solid #fff;border-bottom:1px solid #ddd;}#social-buttons ul.unstyled{margin:0;} +#social-buttons .btn{font-weight:bold;padding:0px 5px;line-height:17px;margin:0;} +#social-buttons .count.btn{background:#ffffff;font-weight:normal;} +.the-icons{margin-top:22px;}.the-icons .span3 a{display:block;cursor:pointer;line-height:32px;height:32px;padding-left:10px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.the-icons .span3 a,.the-icons .span3 a:hover{color:#222222;} +.the-icons .span3 a [class^="icon-"],.the-icons .span3 a [class*=" icon-"]{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px;} +.the-icons .span3 a:hover{background-color:#fff0f0;text-decoration:none;}.the-icons .span3 a:hover [class^="icon-"],.the-icons .span3 a:hover [class*=" icon-"]{*font-size:28px;*vertical-align:middle;} +.the-icons .span3 a:hover [class^="icon-"]:before,.the-icons .span3 a:hover [class*=" icon-"]:before{font-size:28px;vertical-align:-5px;} +#why .span4,#whats-new .span4{margin-bottom:20px;} +#why h4 [class^="icon-"]:before,#whats-new h4 [class^="icon-"]:before,#why h4 [class*=" icon-"]:before,#whats-new h4 [class*=" icon-"]:before{vertical-align:-10%;font-size:28px;display:inline-block;width:1.0714285714285714em;text-align:center;margin-right:5px;} +.rating{unicode-bidi:bidi-override;direction:rtl;font-size:30px;}.rating span.star{font-family:FontAwesome;font-weight:normal;font-style:normal;display:inline-block;}.rating span.star:hover{cursor:pointer;} +.rating span.star:before{content:"\f006";padding-right:5px;color:#999999;} +.rating span.star:hover:before,.rating span.star:hover~span.star:before{content:"\f005";color:#e3cf7a;} +.label,.badge{background-color:#eeeeee;} +.well.well-transparent{background-color:transparent;} +footer{background-color:#9d261d;border-top:1px solid #872119;color:#ddb3b0;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);margin-top:60px;padding-top:45px;padding-bottom:60px;*zoom:1;}footer a{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}footer a:hover{color:#ffffff;} +footer ul{line-height:25px;} +footer .project{margin-top:10px;} +.navbar .nav>li.dropdown-split-right>a{padding-left:7px;} +.navbar .nav>li.dropdown-split-left>a{padding-right:0;} +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} +.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;} +.visible-phone{display:none !important;} +.visible-tablet{display:none !important;} +.hidden-desktop{display:none !important;} +.visible-desktop{display:inherit !important;} +@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;} +@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (min-width:1200px){#iconCarousel{font-size:290px;line-height:295px;}#iconCarousel .carousel-control{top:310px;width:30px;height:30px;font-size:40px;line-height:35px;left:145px;}#iconCarousel .carousel-control.right{right:145px;} .jumbotron-index{padding:50px 0;}.jumbotron-index h1{font-size:100px;} .jumbotron-index p{font-size:40px;margin:20px 0;} .jumbotron-index .btn-large{font-size:30px;padding:21px 35px;} .jumbotron-index .shameless-self-promotion{margin-top:30px;} .jumbotron-ad{padding:50px 0;}.jumbotron-ad h1{font-size:90px;} .jumbotron-ad p{font-size:35px;margin:20px 0;} .stripe-ad .lead{margin-top:7px;} .lead{font-size:26px;line-height:36px;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;}}@media (min-width:768px) and (max-width:979px){#iconCarousel{font-size:200px;line-height:205px;}#iconCarousel .carousel-control{top:230px;width:30px;height:30px;font-size:40px;line-height:40px;left:74px;}#iconCarousel .carousel-control.right{right:74px;} .jumbotron-index{padding:50px 0;}.jumbotron-index h1{font-size:65px;} .jumbotron-index p{font-size:25px;} .jumbotron-index .shameless-self-promotion{font-size:12px;} .jumbotron-ad p{font-size:28px;} .jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px;} .stripe-ad .lead{margin:0;font-size:19px;} .stripe-ad .span8{width:402px;} .stripe-ad .span4{width:302px;} #why .span4,#whats-new .span4,#new-styles .span4{width:352px;} .the-icons .span3{width:228px;} .wrapper{margin:0 auto -251px;} .push{height:251px;} .footer{margin-top:60px;height:110px;padding:40px 0 40px;} .footer{padding-left:20px;padding-right:20px;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:767px){.jumbotron,footer,#social-buttons{padding-left:20px;padding-right:20px;margin-right:-20px;margin-left:-20px;} #iconCarousel{font-size:180px;line-height:180px;width:280px;margin:30px auto 0;}#iconCarousel .carousel-control{top:90px;width:44px;height:44px;font-size:44px;line-height:44px;left:-7px;}#iconCarousel .carousel-control.right{right:-7px;} .jumbotron-index h1{font-size:58px;} .jumbotron-index p{font-size:24px;} .jumbotron-index .btn-large{font-size:20px;padding:14px 26px;} .jumbotron-index .shameless-self-promotion{font-size:12px;} .jumbotron-ad h1{font-size:39px;} .jumbotron-ad p{font-size:20px;margin-bottom:20px;} .jumbotron-icon .icon-1,.jumbotron-icon .icon-2,.jumbotron-icon .icon-3,.jumbotron-icon .icon-4,.jumbotron-icon .icon-5,.jumbotron-icon .icon-6{margin-right:0;} .jumbotron-icon .icon-6{font-size:16em;} .jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px;} .stripe-ad .lead{margin:0 0 30px;} #carbonads-container{margin-right:-20px;margin-left:-20px;}#carbonads-container .carbonad{width:100%;height:120px;border-right:none;border-left:none;} #azcarbon{width:300px;margin:0 auto;} .wrapper{margin:0 auto -311px;} .push{height:311px;} .footer{margin-top:60px;height:170px;padding:40px 0 40px;} .footer{padding-left:20px;padding-right:20px;}}@media (max-width:767px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:768px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}@media (max-width:767px){} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome.zip b/library/font_awesome/src/3.2.1/assets/font-awesome.zip new file mode 100644 index 000000000..9b9abdc76 Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/font-awesome.zip differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css new file mode 100644 index 000000000..17f07766c --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css @@ -0,0 +1,1203 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ +.icon-large { + font-size: 1.3333333333333333em; + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; + vertical-align: middle; +} +.nav [class^="icon-"], +.nav [class*=" icon-"] { + vertical-align: inherit; + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; +} +.nav [class^="icon-"].icon-large, +.nav [class*=" icon-"].icon-large { + vertical-align: -25%; +} +.nav-pills [class^="icon-"].icon-large, +.nav-tabs [class^="icon-"].icon-large, +.nav-pills [class*=" icon-"].icon-large, +.nav-tabs [class*=" icon-"].icon-large { + line-height: .75em; + margin-top: -7px; + padding-top: 5px; + margin-bottom: -5px; + padding-bottom: 4px; +} +.btn [class^="icon-"].pull-left, +.btn [class*=" icon-"].pull-left, +.btn [class^="icon-"].pull-right, +.btn [class*=" icon-"].pull-right { + vertical-align: inherit; +} +.btn [class^="icon-"].icon-large, +.btn [class*=" icon-"].icon-large { + margin-top: -0.5em; +} +a [class^="icon-"], +a [class*=" icon-"] { + cursor: pointer; +} +.icon-glass { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-music { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-search { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-envelope-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-heart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-star { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-star-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-user { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-film { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-th-large { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-th { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-th-list { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ok { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-remove { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-zoom-in { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-zoom-out { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-power-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-signal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cog { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gear { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-trash { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-home { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-file-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-time { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-road { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-download-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-download { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-upload { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-inbox { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-play-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-repeat { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rotate-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-refresh { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-list-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-lock { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-flag { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-headphones { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-volume-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-volume-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-volume-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-qrcode { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-barcode { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tag { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tags { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-book { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bookmark { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-print { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-camera { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-font { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bold { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-italic { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-text-height { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-text-width { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-align-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-align-center { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-align-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-align-justify { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-list { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-indent-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-indent-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-facetime-video { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-picture { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-pencil { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-map-marker { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-adjust { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tint { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-edit { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-share { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-check { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-move { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-step-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fast-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-backward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-play { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-pause { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-stop { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fast-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-step-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-eject { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-plus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-minus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-remove-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ok-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-question-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-info-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-screenshot { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-remove-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ok-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ban-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-arrow-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-arrow-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-arrow-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-arrow-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-share-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-mail-forward { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-resize-full { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-resize-small { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-plus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-minus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-asterisk { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-exclamation-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gift { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-leaf { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fire { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-eye-open { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-eye-close { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-warning-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-plane { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-calendar { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-random { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-comment { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-magnet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-retweet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-shopping-cart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-folder-close { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-folder-open { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-resize-vertical { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-resize-horizontal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bar-chart { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-twitter-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-facebook-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-camera-retro { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-key { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cogs { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gears { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-comments { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-thumbs-up-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-thumbs-down-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-star-half { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-heart-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-signout { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-linkedin-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-pushpin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-external-link { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-signin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-trophy { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-github-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-upload-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-lemon { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-phone { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-check-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-unchecked { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bookmark-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-phone-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-twitter { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-facebook { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-github { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-unlock { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-credit-card { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rss { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hdd { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bullhorn { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bell { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-certificate { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hand-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hand-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hand-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hand-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle-arrow-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle-arrow-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle-arrow-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle-arrow-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-globe { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-wrench { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tasks { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-filter { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-briefcase { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fullscreen { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-group { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-link { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cloud { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-beaker { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cut { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-copy { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-paper-clip { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-paperclip { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-save { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sign-blank { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-reorder { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-list-ul { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-list-ol { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-strikethrough { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-underline { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-table { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-magic { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-truck { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-pinterest { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-pinterest-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-google-plus-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-google-plus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-money { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-caret-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-caret-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-caret-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-caret-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-columns { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-envelope { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-linkedin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-undo { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rotate-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-legal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-dashboard { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-comment-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-comments-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bolt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sitemap { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-umbrella { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-paste { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-lightbulb { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-exchange { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cloud-download { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cloud-upload { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-user-md { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-stethoscope { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-suitcase { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bell-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-coffee { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-food { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-file-text-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-building { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-hospital { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ambulance { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-medkit { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fighter-jet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-beer { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-h-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-plus-sign-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-double-angle-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-double-angle-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-double-angle-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-double-angle-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-angle-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-angle-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-angle-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-angle-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-desktop { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-laptop { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tablet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-mobile-phone { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle-blank { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-quote-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-quote-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-spinner { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-circle { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-reply { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-mail-reply { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-github-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-folder-close-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-folder-open-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-expand-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-collapse-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-smile { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-frown { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-meh { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gamepad { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-keyboard { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-flag-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-flag-checkered { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-terminal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-code { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-reply-all { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-mail-reply-all { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-star-half-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-star-half-full { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-location-arrow { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-crop { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-code-fork { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-unlink { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-question { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-info { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-exclamation { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-superscript { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-subscript { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-eraser { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-puzzle-piece { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-microphone { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-microphone-off { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-shield { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-calendar-empty { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-fire-extinguisher { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rocket { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-maxcdn { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-sign-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-sign-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-sign-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-chevron-sign-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-html5 { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-css3 { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-anchor { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-unlock-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bullseye { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ellipsis-horizontal { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ellipsis-vertical { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rss-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-play-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-ticket { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-minus-sign-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-check-minus { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-level-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-level-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-check-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-edit-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-external-link-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-share-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-compass { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-collapse { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-collapse-top { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-expand { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-eur { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-euro { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gbp { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-usd { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-dollar { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-inr { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-rupee { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-jpy { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-yen { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-cny { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-renminbi { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-krw { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-won { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-btc { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bitcoin { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-file { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-file-text { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-alphabet { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-alphabet-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-attributes { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-attributes-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-order { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sort-by-order-alt { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-thumbs-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-thumbs-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-youtube-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-youtube { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-xing { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-xing-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-youtube-play { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-dropbox { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-stackexchange { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-instagram { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-flickr { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-adn { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bitbucket { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bitbucket-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tumblr { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-tumblr-sign { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-long-arrow-down { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-long-arrow-up { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-long-arrow-left { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-long-arrow-right { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-apple { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-windows { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-android { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-linux { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-dribbble { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-skype { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-foursquare { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-trello { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-female { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-male { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-gittip { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-sun { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-moon { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-archive { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-bug { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-vk { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-weibo { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} +.icon-renren { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css new file mode 100644 index 000000000..d3dae63bd --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css @@ -0,0 +1,384 @@ +.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle;} +.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%;} +.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px;} +.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit;} +.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em;} +a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} +.icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-repeat{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paper-clip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rotate-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eur{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dollar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-inr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-jpy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cny{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-krw{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitcoin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css new file mode 100644 index 000000000..7ede1828a --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css @@ -0,0 +1,1479 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../font/fontawesome-webfont.eot?v=3.2.1'); + src: url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg'); + font-weight: normal; + font-style: normal; +} +/* FONT AWESOME CORE + * -------------------------- */ +[class^="icon-"], +[class*=" icon-"] { + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + text-decoration: inherit; + -webkit-font-smoothing: antialiased; + *margin-right: .3em; +} +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: 1.3333333333333333em; +} +/* makes sure icons active on rollover in links */ +a [class^="icon-"], +a [class*=" icon-"] { + display: inline; +} +/* increased font size for icon-large */ +[class^="icon-"].icon-fixed-width, +[class*=" icon-"].icon-fixed-width { + display: inline-block; + width: 1.1428571428571428em; + text-align: right; + padding-right: 0.2857142857142857em; +} +[class^="icon-"].icon-fixed-width.icon-large, +[class*=" icon-"].icon-fixed-width.icon-large { + width: 1.4285714285714286em; +} +.icons-ul { + margin-left: 2.142857142857143em; + list-style-type: none; +} +.icons-ul > li { + position: relative; +} +.icons-ul .icon-li { + position: absolute; + left: -2.142857142857143em; + width: 2.142857142857143em; + text-align: center; + line-height: inherit; +} +[class^="icon-"].hide, +[class*=" icon-"].hide { + display: none; +} +.icon-muted { + color: #eeeeee; +} +.icon-light { + color: #ffffff; +} +.icon-dark { + color: #333333; +} +.icon-border { + border: solid 1px #eeeeee; + padding: .2em .25em .15em; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.icon-2x { + font-size: 2em; +} +.icon-2x.icon-border { + border-width: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.icon-3x { + font-size: 3em; +} +.icon-3x.icon-border { + border-width: 3px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +.icon-4x { + font-size: 4em; +} +.icon-4x.icon-border { + border-width: 4px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +.icon-5x { + font-size: 5em; +} +.icon-5x.icon-border { + border-width: 5px; + -webkit-border-radius: 7px; + -moz-border-radius: 7px; + border-radius: 7px; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +[class^="icon-"].pull-left, +[class*=" icon-"].pull-left { + margin-right: .3em; +} +[class^="icon-"].pull-right, +[class*=" icon-"].pull-right { + margin-left: .3em; +} +/* BOOTSTRAP SPECIFIC CLASSES + * -------------------------- */ +/* Bootstrap 2.0 sprites.less reset */ +[class^="icon-"], +[class*=" icon-"] { + display: inline; + width: auto; + height: auto; + line-height: normal; + vertical-align: baseline; + background-image: none; + background-position: 0% 0%; + background-repeat: repeat; + margin-top: 0; +} +/* more sprites.less reset */ +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; +} +/* keeps Bootstrap styles with and without icons the same */ +.btn [class^="icon-"].icon-large, +.nav [class^="icon-"].icon-large, +.btn [class*=" icon-"].icon-large, +.nav [class*=" icon-"].icon-large { + line-height: .9em; +} +.btn [class^="icon-"].icon-spin, +.nav [class^="icon-"].icon-spin, +.btn [class*=" icon-"].icon-spin, +.nav [class*=" icon-"].icon-spin { + display: inline-block; +} +.nav-tabs [class^="icon-"], +.nav-pills [class^="icon-"], +.nav-tabs [class*=" icon-"], +.nav-pills [class*=" icon-"], +.nav-tabs [class^="icon-"].icon-large, +.nav-pills [class^="icon-"].icon-large, +.nav-tabs [class*=" icon-"].icon-large, +.nav-pills [class*=" icon-"].icon-large { + line-height: .9em; +} +.btn [class^="icon-"].pull-left.icon-2x, +.btn [class*=" icon-"].pull-left.icon-2x, +.btn [class^="icon-"].pull-right.icon-2x, +.btn [class*=" icon-"].pull-right.icon-2x { + margin-top: .18em; +} +.btn [class^="icon-"].icon-spin.icon-large, +.btn [class*=" icon-"].icon-spin.icon-large { + line-height: .8em; +} +.btn.btn-small [class^="icon-"].pull-left.icon-2x, +.btn.btn-small [class*=" icon-"].pull-left.icon-2x, +.btn.btn-small [class^="icon-"].pull-right.icon-2x, +.btn.btn-small [class*=" icon-"].pull-right.icon-2x { + margin-top: .25em; +} +.btn.btn-large [class^="icon-"], +.btn.btn-large [class*=" icon-"] { + margin-top: 0; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x, +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-top: .05em; +} +.btn.btn-large [class^="icon-"].pull-left.icon-2x, +.btn.btn-large [class*=" icon-"].pull-left.icon-2x { + margin-right: .2em; +} +.btn.btn-large [class^="icon-"].pull-right.icon-2x, +.btn.btn-large [class*=" icon-"].pull-right.icon-2x { + margin-left: .2em; +} +/* Fixes alignment in nav lists */ +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + line-height: inherit; +} +/* EXTRAS + * -------------------------- */ +/* Stacked and layered icon */ +.icon-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: -35%; +} +.icon-stack [class^="icon-"], +.icon-stack [class*=" icon-"] { + display: block; + text-align: center; + position: absolute; + width: 100%; + height: 100%; + font-size: 1em; + line-height: inherit; + *line-height: 2em; +} +.icon-stack .icon-stack-base { + font-size: 2em; + *line-height: 1em; +} +/* Animated rotating icon */ +.icon-spin { + display: inline-block; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +/* Prevent stack and spinners from being taken inline when inside a link */ +a .icon-stack, +a .icon-spin { + display: inline-block; + text-decoration: none; +} +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(359deg); + } +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg); + } + 100% { + -o-transform: rotate(359deg); + } +} +@-ms-keyframes spin { + 0% { + -ms-transform: rotate(0deg); + } + 100% { + -ms-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } +} +/* Icon rotations and mirroring */ +.icon-rotate-90:before { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} +.icon-rotate-180:before { + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); +} +.icon-rotate-270:before { + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} +.icon-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.icon-flip-vertical:before { + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} +/* ensure rotation occurs inside anchor tags */ +a .icon-rotate-90:before, +a .icon-rotate-180:before, +a .icon-rotate-270:before, +a .icon-flip-horizontal:before, +a .icon-flip-vertical:before { + display: inline-block; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { + content: "\f000"; +} +.icon-music:before { + content: "\f001"; +} +.icon-search:before { + content: "\f002"; +} +.icon-envelope-alt:before { + content: "\f003"; +} +.icon-heart:before { + content: "\f004"; +} +.icon-star:before { + content: "\f005"; +} +.icon-star-empty:before { + content: "\f006"; +} +.icon-user:before { + content: "\f007"; +} +.icon-film:before { + content: "\f008"; +} +.icon-th-large:before { + content: "\f009"; +} +.icon-th:before { + content: "\f00a"; +} +.icon-th-list:before { + content: "\f00b"; +} +.icon-ok:before { + content: "\f00c"; +} +.icon-remove:before { + content: "\f00d"; +} +.icon-zoom-in:before { + content: "\f00e"; +} +.icon-zoom-out:before { + content: "\f010"; +} +.icon-power-off:before, +.icon-off:before { + content: "\f011"; +} +.icon-signal:before { + content: "\f012"; +} +.icon-gear:before, +.icon-cog:before { + content: "\f013"; +} +.icon-trash:before { + content: "\f014"; +} +.icon-home:before { + content: "\f015"; +} +.icon-file-alt:before { + content: "\f016"; +} +.icon-time:before { + content: "\f017"; +} +.icon-road:before { + content: "\f018"; +} +.icon-download-alt:before { + content: "\f019"; +} +.icon-download:before { + content: "\f01a"; +} +.icon-upload:before { + content: "\f01b"; +} +.icon-inbox:before { + content: "\f01c"; +} +.icon-play-circle:before { + content: "\f01d"; +} +.icon-rotate-right:before, +.icon-repeat:before { + content: "\f01e"; +} +.icon-refresh:before { + content: "\f021"; +} +.icon-list-alt:before { + content: "\f022"; +} +.icon-lock:before { + content: "\f023"; +} +.icon-flag:before { + content: "\f024"; +} +.icon-headphones:before { + content: "\f025"; +} +.icon-volume-off:before { + content: "\f026"; +} +.icon-volume-down:before { + content: "\f027"; +} +.icon-volume-up:before { + content: "\f028"; +} +.icon-qrcode:before { + content: "\f029"; +} +.icon-barcode:before { + content: "\f02a"; +} +.icon-tag:before { + content: "\f02b"; +} +.icon-tags:before { + content: "\f02c"; +} +.icon-book:before { + content: "\f02d"; +} +.icon-bookmark:before { + content: "\f02e"; +} +.icon-print:before { + content: "\f02f"; +} +.icon-camera:before { + content: "\f030"; +} +.icon-font:before { + content: "\f031"; +} +.icon-bold:before { + content: "\f032"; +} +.icon-italic:before { + content: "\f033"; +} +.icon-text-height:before { + content: "\f034"; +} +.icon-text-width:before { + content: "\f035"; +} +.icon-align-left:before { + content: "\f036"; +} +.icon-align-center:before { + content: "\f037"; +} +.icon-align-right:before { + content: "\f038"; +} +.icon-align-justify:before { + content: "\f039"; +} +.icon-list:before { + content: "\f03a"; +} +.icon-indent-left:before { + content: "\f03b"; +} +.icon-indent-right:before { + content: "\f03c"; +} +.icon-facetime-video:before { + content: "\f03d"; +} +.icon-picture:before { + content: "\f03e"; +} +.icon-pencil:before { + content: "\f040"; +} +.icon-map-marker:before { + content: "\f041"; +} +.icon-adjust:before { + content: "\f042"; +} +.icon-tint:before { + content: "\f043"; +} +.icon-edit:before { + content: "\f044"; +} +.icon-share:before { + content: "\f045"; +} +.icon-check:before { + content: "\f046"; +} +.icon-move:before { + content: "\f047"; +} +.icon-step-backward:before { + content: "\f048"; +} +.icon-fast-backward:before { + content: "\f049"; +} +.icon-backward:before { + content: "\f04a"; +} +.icon-play:before { + content: "\f04b"; +} +.icon-pause:before { + content: "\f04c"; +} +.icon-stop:before { + content: "\f04d"; +} +.icon-forward:before { + content: "\f04e"; +} +.icon-fast-forward:before { + content: "\f050"; +} +.icon-step-forward:before { + content: "\f051"; +} +.icon-eject:before { + content: "\f052"; +} +.icon-chevron-left:before { + content: "\f053"; +} +.icon-chevron-right:before { + content: "\f054"; +} +.icon-plus-sign:before { + content: "\f055"; +} +.icon-minus-sign:before { + content: "\f056"; +} +.icon-remove-sign:before { + content: "\f057"; +} +.icon-ok-sign:before { + content: "\f058"; +} +.icon-question-sign:before { + content: "\f059"; +} +.icon-info-sign:before { + content: "\f05a"; +} +.icon-screenshot:before { + content: "\f05b"; +} +.icon-remove-circle:before { + content: "\f05c"; +} +.icon-ok-circle:before { + content: "\f05d"; +} +.icon-ban-circle:before { + content: "\f05e"; +} +.icon-arrow-left:before { + content: "\f060"; +} +.icon-arrow-right:before { + content: "\f061"; +} +.icon-arrow-up:before { + content: "\f062"; +} +.icon-arrow-down:before { + content: "\f063"; +} +.icon-mail-forward:before, +.icon-share-alt:before { + content: "\f064"; +} +.icon-resize-full:before { + content: "\f065"; +} +.icon-resize-small:before { + content: "\f066"; +} +.icon-plus:before { + content: "\f067"; +} +.icon-minus:before { + content: "\f068"; +} +.icon-asterisk:before { + content: "\f069"; +} +.icon-exclamation-sign:before { + content: "\f06a"; +} +.icon-gift:before { + content: "\f06b"; +} +.icon-leaf:before { + content: "\f06c"; +} +.icon-fire:before { + content: "\f06d"; +} +.icon-eye-open:before { + content: "\f06e"; +} +.icon-eye-close:before { + content: "\f070"; +} +.icon-warning-sign:before { + content: "\f071"; +} +.icon-plane:before { + content: "\f072"; +} +.icon-calendar:before { + content: "\f073"; +} +.icon-random:before { + content: "\f074"; +} +.icon-comment:before { + content: "\f075"; +} +.icon-magnet:before { + content: "\f076"; +} +.icon-chevron-up:before { + content: "\f077"; +} +.icon-chevron-down:before { + content: "\f078"; +} +.icon-retweet:before { + content: "\f079"; +} +.icon-shopping-cart:before { + content: "\f07a"; +} +.icon-folder-close:before { + content: "\f07b"; +} +.icon-folder-open:before { + content: "\f07c"; +} +.icon-resize-vertical:before { + content: "\f07d"; +} +.icon-resize-horizontal:before { + content: "\f07e"; +} +.icon-bar-chart:before { + content: "\f080"; +} +.icon-twitter-sign:before { + content: "\f081"; +} +.icon-facebook-sign:before { + content: "\f082"; +} +.icon-camera-retro:before { + content: "\f083"; +} +.icon-key:before { + content: "\f084"; +} +.icon-gears:before, +.icon-cogs:before { + content: "\f085"; +} +.icon-comments:before { + content: "\f086"; +} +.icon-thumbs-up-alt:before { + content: "\f087"; +} +.icon-thumbs-down-alt:before { + content: "\f088"; +} +.icon-star-half:before { + content: "\f089"; +} +.icon-heart-empty:before { + content: "\f08a"; +} +.icon-signout:before { + content: "\f08b"; +} +.icon-linkedin-sign:before { + content: "\f08c"; +} +.icon-pushpin:before { + content: "\f08d"; +} +.icon-external-link:before { + content: "\f08e"; +} +.icon-signin:before { + content: "\f090"; +} +.icon-trophy:before { + content: "\f091"; +} +.icon-github-sign:before { + content: "\f092"; +} +.icon-upload-alt:before { + content: "\f093"; +} +.icon-lemon:before { + content: "\f094"; +} +.icon-phone:before { + content: "\f095"; +} +.icon-unchecked:before, +.icon-check-empty:before { + content: "\f096"; +} +.icon-bookmark-empty:before { + content: "\f097"; +} +.icon-phone-sign:before { + content: "\f098"; +} +.icon-twitter:before { + content: "\f099"; +} +.icon-facebook:before { + content: "\f09a"; +} +.icon-github:before { + content: "\f09b"; +} +.icon-unlock:before { + content: "\f09c"; +} +.icon-credit-card:before { + content: "\f09d"; +} +.icon-rss:before { + content: "\f09e"; +} +.icon-hdd:before { + content: "\f0a0"; +} +.icon-bullhorn:before { + content: "\f0a1"; +} +.icon-bell:before { + content: "\f0a2"; +} +.icon-certificate:before { + content: "\f0a3"; +} +.icon-hand-right:before { + content: "\f0a4"; +} +.icon-hand-left:before { + content: "\f0a5"; +} +.icon-hand-up:before { + content: "\f0a6"; +} +.icon-hand-down:before { + content: "\f0a7"; +} +.icon-circle-arrow-left:before { + content: "\f0a8"; +} +.icon-circle-arrow-right:before { + content: "\f0a9"; +} +.icon-circle-arrow-up:before { + content: "\f0aa"; +} +.icon-circle-arrow-down:before { + content: "\f0ab"; +} +.icon-globe:before { + content: "\f0ac"; +} +.icon-wrench:before { + content: "\f0ad"; +} +.icon-tasks:before { + content: "\f0ae"; +} +.icon-filter:before { + content: "\f0b0"; +} +.icon-briefcase:before { + content: "\f0b1"; +} +.icon-fullscreen:before { + content: "\f0b2"; +} +.icon-group:before { + content: "\f0c0"; +} +.icon-link:before { + content: "\f0c1"; +} +.icon-cloud:before { + content: "\f0c2"; +} +.icon-beaker:before { + content: "\f0c3"; +} +.icon-cut:before { + content: "\f0c4"; +} +.icon-copy:before { + content: "\f0c5"; +} +.icon-paperclip:before, +.icon-paper-clip:before { + content: "\f0c6"; +} +.icon-save:before { + content: "\f0c7"; +} +.icon-sign-blank:before { + content: "\f0c8"; +} +.icon-reorder:before { + content: "\f0c9"; +} +.icon-list-ul:before { + content: "\f0ca"; +} +.icon-list-ol:before { + content: "\f0cb"; +} +.icon-strikethrough:before { + content: "\f0cc"; +} +.icon-underline:before { + content: "\f0cd"; +} +.icon-table:before { + content: "\f0ce"; +} +.icon-magic:before { + content: "\f0d0"; +} +.icon-truck:before { + content: "\f0d1"; +} +.icon-pinterest:before { + content: "\f0d2"; +} +.icon-pinterest-sign:before { + content: "\f0d3"; +} +.icon-google-plus-sign:before { + content: "\f0d4"; +} +.icon-google-plus:before { + content: "\f0d5"; +} +.icon-money:before { + content: "\f0d6"; +} +.icon-caret-down:before { + content: "\f0d7"; +} +.icon-caret-up:before { + content: "\f0d8"; +} +.icon-caret-left:before { + content: "\f0d9"; +} +.icon-caret-right:before { + content: "\f0da"; +} +.icon-columns:before { + content: "\f0db"; +} +.icon-sort:before { + content: "\f0dc"; +} +.icon-sort-down:before { + content: "\f0dd"; +} +.icon-sort-up:before { + content: "\f0de"; +} +.icon-envelope:before { + content: "\f0e0"; +} +.icon-linkedin:before { + content: "\f0e1"; +} +.icon-rotate-left:before, +.icon-undo:before { + content: "\f0e2"; +} +.icon-legal:before { + content: "\f0e3"; +} +.icon-dashboard:before { + content: "\f0e4"; +} +.icon-comment-alt:before { + content: "\f0e5"; +} +.icon-comments-alt:before { + content: "\f0e6"; +} +.icon-bolt:before { + content: "\f0e7"; +} +.icon-sitemap:before { + content: "\f0e8"; +} +.icon-umbrella:before { + content: "\f0e9"; +} +.icon-paste:before { + content: "\f0ea"; +} +.icon-lightbulb:before { + content: "\f0eb"; +} +.icon-exchange:before { + content: "\f0ec"; +} +.icon-cloud-download:before { + content: "\f0ed"; +} +.icon-cloud-upload:before { + content: "\f0ee"; +} +.icon-user-md:before { + content: "\f0f0"; +} +.icon-stethoscope:before { + content: "\f0f1"; +} +.icon-suitcase:before { + content: "\f0f2"; +} +.icon-bell-alt:before { + content: "\f0f3"; +} +.icon-coffee:before { + content: "\f0f4"; +} +.icon-food:before { + content: "\f0f5"; +} +.icon-file-text-alt:before { + content: "\f0f6"; +} +.icon-building:before { + content: "\f0f7"; +} +.icon-hospital:before { + content: "\f0f8"; +} +.icon-ambulance:before { + content: "\f0f9"; +} +.icon-medkit:before { + content: "\f0fa"; +} +.icon-fighter-jet:before { + content: "\f0fb"; +} +.icon-beer:before { + content: "\f0fc"; +} +.icon-h-sign:before { + content: "\f0fd"; +} +.icon-plus-sign-alt:before { + content: "\f0fe"; +} +.icon-double-angle-left:before { + content: "\f100"; +} +.icon-double-angle-right:before { + content: "\f101"; +} +.icon-double-angle-up:before { + content: "\f102"; +} +.icon-double-angle-down:before { + content: "\f103"; +} +.icon-angle-left:before { + content: "\f104"; +} +.icon-angle-right:before { + content: "\f105"; +} +.icon-angle-up:before { + content: "\f106"; +} +.icon-angle-down:before { + content: "\f107"; +} +.icon-desktop:before { + content: "\f108"; +} +.icon-laptop:before { + content: "\f109"; +} +.icon-tablet:before { + content: "\f10a"; +} +.icon-mobile-phone:before { + content: "\f10b"; +} +.icon-circle-blank:before { + content: "\f10c"; +} +.icon-quote-left:before { + content: "\f10d"; +} +.icon-quote-right:before { + content: "\f10e"; +} +.icon-spinner:before { + content: "\f110"; +} +.icon-circle:before { + content: "\f111"; +} +.icon-mail-reply:before, +.icon-reply:before { + content: "\f112"; +} +.icon-github-alt:before { + content: "\f113"; +} +.icon-folder-close-alt:before { + content: "\f114"; +} +.icon-folder-open-alt:before { + content: "\f115"; +} +.icon-expand-alt:before { + content: "\f116"; +} +.icon-collapse-alt:before { + content: "\f117"; +} +.icon-smile:before { + content: "\f118"; +} +.icon-frown:before { + content: "\f119"; +} +.icon-meh:before { + content: "\f11a"; +} +.icon-gamepad:before { + content: "\f11b"; +} +.icon-keyboard:before { + content: "\f11c"; +} +.icon-flag-alt:before { + content: "\f11d"; +} +.icon-flag-checkered:before { + content: "\f11e"; +} +.icon-terminal:before { + content: "\f120"; +} +.icon-code:before { + content: "\f121"; +} +.icon-reply-all:before { + content: "\f122"; +} +.icon-mail-reply-all:before { + content: "\f122"; +} +.icon-star-half-full:before, +.icon-star-half-empty:before { + content: "\f123"; +} +.icon-location-arrow:before { + content: "\f124"; +} +.icon-crop:before { + content: "\f125"; +} +.icon-code-fork:before { + content: "\f126"; +} +.icon-unlink:before { + content: "\f127"; +} +.icon-question:before { + content: "\f128"; +} +.icon-info:before { + content: "\f129"; +} +.icon-exclamation:before { + content: "\f12a"; +} +.icon-superscript:before { + content: "\f12b"; +} +.icon-subscript:before { + content: "\f12c"; +} +.icon-eraser:before { + content: "\f12d"; +} +.icon-puzzle-piece:before { + content: "\f12e"; +} +.icon-microphone:before { + content: "\f130"; +} +.icon-microphone-off:before { + content: "\f131"; +} +.icon-shield:before { + content: "\f132"; +} +.icon-calendar-empty:before { + content: "\f133"; +} +.icon-fire-extinguisher:before { + content: "\f134"; +} +.icon-rocket:before { + content: "\f135"; +} +.icon-maxcdn:before { + content: "\f136"; +} +.icon-chevron-sign-left:before { + content: "\f137"; +} +.icon-chevron-sign-right:before { + content: "\f138"; +} +.icon-chevron-sign-up:before { + content: "\f139"; +} +.icon-chevron-sign-down:before { + content: "\f13a"; +} +.icon-html5:before { + content: "\f13b"; +} +.icon-css3:before { + content: "\f13c"; +} +.icon-anchor:before { + content: "\f13d"; +} +.icon-unlock-alt:before { + content: "\f13e"; +} +.icon-bullseye:before { + content: "\f140"; +} +.icon-ellipsis-horizontal:before { + content: "\f141"; +} +.icon-ellipsis-vertical:before { + content: "\f142"; +} +.icon-rss-sign:before { + content: "\f143"; +} +.icon-play-sign:before { + content: "\f144"; +} +.icon-ticket:before { + content: "\f145"; +} +.icon-minus-sign-alt:before { + content: "\f146"; +} +.icon-check-minus:before { + content: "\f147"; +} +.icon-level-up:before { + content: "\f148"; +} +.icon-level-down:before { + content: "\f149"; +} +.icon-check-sign:before { + content: "\f14a"; +} +.icon-edit-sign:before { + content: "\f14b"; +} +.icon-external-link-sign:before { + content: "\f14c"; +} +.icon-share-sign:before { + content: "\f14d"; +} +.icon-compass:before { + content: "\f14e"; +} +.icon-collapse:before { + content: "\f150"; +} +.icon-collapse-top:before { + content: "\f151"; +} +.icon-expand:before { + content: "\f152"; +} +.icon-euro:before, +.icon-eur:before { + content: "\f153"; +} +.icon-gbp:before { + content: "\f154"; +} +.icon-dollar:before, +.icon-usd:before { + content: "\f155"; +} +.icon-rupee:before, +.icon-inr:before { + content: "\f156"; +} +.icon-yen:before, +.icon-jpy:before { + content: "\f157"; +} +.icon-renminbi:before, +.icon-cny:before { + content: "\f158"; +} +.icon-won:before, +.icon-krw:before { + content: "\f159"; +} +.icon-bitcoin:before, +.icon-btc:before { + content: "\f15a"; +} +.icon-file:before { + content: "\f15b"; +} +.icon-file-text:before { + content: "\f15c"; +} +.icon-sort-by-alphabet:before { + content: "\f15d"; +} +.icon-sort-by-alphabet-alt:before { + content: "\f15e"; +} +.icon-sort-by-attributes:before { + content: "\f160"; +} +.icon-sort-by-attributes-alt:before { + content: "\f161"; +} +.icon-sort-by-order:before { + content: "\f162"; +} +.icon-sort-by-order-alt:before { + content: "\f163"; +} +.icon-thumbs-up:before { + content: "\f164"; +} +.icon-thumbs-down:before { + content: "\f165"; +} +.icon-youtube-sign:before { + content: "\f166"; +} +.icon-youtube:before { + content: "\f167"; +} +.icon-xing:before { + content: "\f168"; +} +.icon-xing-sign:before { + content: "\f169"; +} +.icon-youtube-play:before { + content: "\f16a"; +} +.icon-dropbox:before { + content: "\f16b"; +} +.icon-stackexchange:before { + content: "\f16c"; +} +.icon-instagram:before { + content: "\f16d"; +} +.icon-flickr:before { + content: "\f16e"; +} +.icon-adn:before { + content: "\f170"; +} +.icon-bitbucket:before { + content: "\f171"; +} +.icon-bitbucket-sign:before { + content: "\f172"; +} +.icon-tumblr:before { + content: "\f173"; +} +.icon-tumblr-sign:before { + content: "\f174"; +} +.icon-long-arrow-down:before { + content: "\f175"; +} +.icon-long-arrow-up:before { + content: "\f176"; +} +.icon-long-arrow-left:before { + content: "\f177"; +} +.icon-long-arrow-right:before { + content: "\f178"; +} +.icon-apple:before { + content: "\f179"; +} +.icon-windows:before { + content: "\f17a"; +} +.icon-android:before { + content: "\f17b"; +} +.icon-linux:before { + content: "\f17c"; +} +.icon-dribbble:before { + content: "\f17d"; +} +.icon-skype:before { + content: "\f17e"; +} +.icon-foursquare:before { + content: "\f180"; +} +.icon-trello:before { + content: "\f181"; +} +.icon-female:before { + content: "\f182"; +} +.icon-male:before { + content: "\f183"; +} +.icon-gittip:before { + content: "\f184"; +} +.icon-sun:before { + content: "\f185"; +} +.icon-moon:before { + content: "\f186"; +} +.icon-archive:before { + content: "\f187"; +} +.icon-bug:before { + content: "\f188"; +} +.icon-vk:before { + content: "\f189"; +} +.icon-weibo:before { + content: "\f18a"; +} +.icon-renren:before { + content: "\f18b"; +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css new file mode 100644 index 000000000..866437fa4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css @@ -0,0 +1,403 @@ +@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} +a [class^="icon-"],a [class*=" icon-"]{display:inline;} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} +.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} +.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none;} +.icon-muted{color:#eeeeee;} +.icon-light{color:#ffffff;} +.icon-dark{color:#333333;} +.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} +.pull-right{float:right;} +.pull-left{float:left;} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} +a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} +@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} +a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} +.icon-glass:before{content:"\f000";} +.icon-music:before{content:"\f001";} +.icon-search:before{content:"\f002";} +.icon-envelope-alt:before{content:"\f003";} +.icon-heart:before{content:"\f004";} +.icon-star:before{content:"\f005";} +.icon-star-empty:before{content:"\f006";} +.icon-user:before{content:"\f007";} +.icon-film:before{content:"\f008";} +.icon-th-large:before{content:"\f009";} +.icon-th:before{content:"\f00a";} +.icon-th-list:before{content:"\f00b";} +.icon-ok:before{content:"\f00c";} +.icon-remove:before{content:"\f00d";} +.icon-zoom-in:before{content:"\f00e";} +.icon-zoom-out:before{content:"\f010";} +.icon-power-off:before,.icon-off:before{content:"\f011";} +.icon-signal:before{content:"\f012";} +.icon-gear:before,.icon-cog:before{content:"\f013";} +.icon-trash:before{content:"\f014";} +.icon-home:before{content:"\f015";} +.icon-file-alt:before{content:"\f016";} +.icon-time:before{content:"\f017";} +.icon-road:before{content:"\f018";} +.icon-download-alt:before{content:"\f019";} +.icon-download:before{content:"\f01a";} +.icon-upload:before{content:"\f01b";} +.icon-inbox:before{content:"\f01c";} +.icon-play-circle:before{content:"\f01d";} +.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} +.icon-refresh:before{content:"\f021";} +.icon-list-alt:before{content:"\f022";} +.icon-lock:before{content:"\f023";} +.icon-flag:before{content:"\f024";} +.icon-headphones:before{content:"\f025";} +.icon-volume-off:before{content:"\f026";} +.icon-volume-down:before{content:"\f027";} +.icon-volume-up:before{content:"\f028";} +.icon-qrcode:before{content:"\f029";} +.icon-barcode:before{content:"\f02a";} +.icon-tag:before{content:"\f02b";} +.icon-tags:before{content:"\f02c";} +.icon-book:before{content:"\f02d";} +.icon-bookmark:before{content:"\f02e";} +.icon-print:before{content:"\f02f";} +.icon-camera:before{content:"\f030";} +.icon-font:before{content:"\f031";} +.icon-bold:before{content:"\f032";} +.icon-italic:before{content:"\f033";} +.icon-text-height:before{content:"\f034";} +.icon-text-width:before{content:"\f035";} +.icon-align-left:before{content:"\f036";} +.icon-align-center:before{content:"\f037";} +.icon-align-right:before{content:"\f038";} +.icon-align-justify:before{content:"\f039";} +.icon-list:before{content:"\f03a";} +.icon-indent-left:before{content:"\f03b";} +.icon-indent-right:before{content:"\f03c";} +.icon-facetime-video:before{content:"\f03d";} +.icon-picture:before{content:"\f03e";} +.icon-pencil:before{content:"\f040";} +.icon-map-marker:before{content:"\f041";} +.icon-adjust:before{content:"\f042";} +.icon-tint:before{content:"\f043";} +.icon-edit:before{content:"\f044";} +.icon-share:before{content:"\f045";} +.icon-check:before{content:"\f046";} +.icon-move:before{content:"\f047";} +.icon-step-backward:before{content:"\f048";} +.icon-fast-backward:before{content:"\f049";} +.icon-backward:before{content:"\f04a";} +.icon-play:before{content:"\f04b";} +.icon-pause:before{content:"\f04c";} +.icon-stop:before{content:"\f04d";} +.icon-forward:before{content:"\f04e";} +.icon-fast-forward:before{content:"\f050";} +.icon-step-forward:before{content:"\f051";} +.icon-eject:before{content:"\f052";} +.icon-chevron-left:before{content:"\f053";} +.icon-chevron-right:before{content:"\f054";} +.icon-plus-sign:before{content:"\f055";} +.icon-minus-sign:before{content:"\f056";} +.icon-remove-sign:before{content:"\f057";} +.icon-ok-sign:before{content:"\f058";} +.icon-question-sign:before{content:"\f059";} +.icon-info-sign:before{content:"\f05a";} +.icon-screenshot:before{content:"\f05b";} +.icon-remove-circle:before{content:"\f05c";} +.icon-ok-circle:before{content:"\f05d";} +.icon-ban-circle:before{content:"\f05e";} +.icon-arrow-left:before{content:"\f060";} +.icon-arrow-right:before{content:"\f061";} +.icon-arrow-up:before{content:"\f062";} +.icon-arrow-down:before{content:"\f063";} +.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} +.icon-resize-full:before{content:"\f065";} +.icon-resize-small:before{content:"\f066";} +.icon-plus:before{content:"\f067";} +.icon-minus:before{content:"\f068";} +.icon-asterisk:before{content:"\f069";} +.icon-exclamation-sign:before{content:"\f06a";} +.icon-gift:before{content:"\f06b";} +.icon-leaf:before{content:"\f06c";} +.icon-fire:before{content:"\f06d";} +.icon-eye-open:before{content:"\f06e";} +.icon-eye-close:before{content:"\f070";} +.icon-warning-sign:before{content:"\f071";} +.icon-plane:before{content:"\f072";} +.icon-calendar:before{content:"\f073";} +.icon-random:before{content:"\f074";} +.icon-comment:before{content:"\f075";} +.icon-magnet:before{content:"\f076";} +.icon-chevron-up:before{content:"\f077";} +.icon-chevron-down:before{content:"\f078";} +.icon-retweet:before{content:"\f079";} +.icon-shopping-cart:before{content:"\f07a";} +.icon-folder-close:before{content:"\f07b";} +.icon-folder-open:before{content:"\f07c";} +.icon-resize-vertical:before{content:"\f07d";} +.icon-resize-horizontal:before{content:"\f07e";} +.icon-bar-chart:before{content:"\f080";} +.icon-twitter-sign:before{content:"\f081";} +.icon-facebook-sign:before{content:"\f082";} +.icon-camera-retro:before{content:"\f083";} +.icon-key:before{content:"\f084";} +.icon-gears:before,.icon-cogs:before{content:"\f085";} +.icon-comments:before{content:"\f086";} +.icon-thumbs-up-alt:before{content:"\f087";} +.icon-thumbs-down-alt:before{content:"\f088";} +.icon-star-half:before{content:"\f089";} +.icon-heart-empty:before{content:"\f08a";} +.icon-signout:before{content:"\f08b";} +.icon-linkedin-sign:before{content:"\f08c";} +.icon-pushpin:before{content:"\f08d";} +.icon-external-link:before{content:"\f08e";} +.icon-signin:before{content:"\f090";} +.icon-trophy:before{content:"\f091";} +.icon-github-sign:before{content:"\f092";} +.icon-upload-alt:before{content:"\f093";} +.icon-lemon:before{content:"\f094";} +.icon-phone:before{content:"\f095";} +.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} +.icon-bookmark-empty:before{content:"\f097";} +.icon-phone-sign:before{content:"\f098";} +.icon-twitter:before{content:"\f099";} +.icon-facebook:before{content:"\f09a";} +.icon-github:before{content:"\f09b";} +.icon-unlock:before{content:"\f09c";} +.icon-credit-card:before{content:"\f09d";} +.icon-rss:before{content:"\f09e";} +.icon-hdd:before{content:"\f0a0";} +.icon-bullhorn:before{content:"\f0a1";} +.icon-bell:before{content:"\f0a2";} +.icon-certificate:before{content:"\f0a3";} +.icon-hand-right:before{content:"\f0a4";} +.icon-hand-left:before{content:"\f0a5";} +.icon-hand-up:before{content:"\f0a6";} +.icon-hand-down:before{content:"\f0a7";} +.icon-circle-arrow-left:before{content:"\f0a8";} +.icon-circle-arrow-right:before{content:"\f0a9";} +.icon-circle-arrow-up:before{content:"\f0aa";} +.icon-circle-arrow-down:before{content:"\f0ab";} +.icon-globe:before{content:"\f0ac";} +.icon-wrench:before{content:"\f0ad";} +.icon-tasks:before{content:"\f0ae";} +.icon-filter:before{content:"\f0b0";} +.icon-briefcase:before{content:"\f0b1";} +.icon-fullscreen:before{content:"\f0b2";} +.icon-group:before{content:"\f0c0";} +.icon-link:before{content:"\f0c1";} +.icon-cloud:before{content:"\f0c2";} +.icon-beaker:before{content:"\f0c3";} +.icon-cut:before{content:"\f0c4";} +.icon-copy:before{content:"\f0c5";} +.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} +.icon-save:before{content:"\f0c7";} +.icon-sign-blank:before{content:"\f0c8";} +.icon-reorder:before{content:"\f0c9";} +.icon-list-ul:before{content:"\f0ca";} +.icon-list-ol:before{content:"\f0cb";} +.icon-strikethrough:before{content:"\f0cc";} +.icon-underline:before{content:"\f0cd";} +.icon-table:before{content:"\f0ce";} +.icon-magic:before{content:"\f0d0";} +.icon-truck:before{content:"\f0d1";} +.icon-pinterest:before{content:"\f0d2";} +.icon-pinterest-sign:before{content:"\f0d3";} +.icon-google-plus-sign:before{content:"\f0d4";} +.icon-google-plus:before{content:"\f0d5";} +.icon-money:before{content:"\f0d6";} +.icon-caret-down:before{content:"\f0d7";} +.icon-caret-up:before{content:"\f0d8";} +.icon-caret-left:before{content:"\f0d9";} +.icon-caret-right:before{content:"\f0da";} +.icon-columns:before{content:"\f0db";} +.icon-sort:before{content:"\f0dc";} +.icon-sort-down:before{content:"\f0dd";} +.icon-sort-up:before{content:"\f0de";} +.icon-envelope:before{content:"\f0e0";} +.icon-linkedin:before{content:"\f0e1";} +.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} +.icon-legal:before{content:"\f0e3";} +.icon-dashboard:before{content:"\f0e4";} +.icon-comment-alt:before{content:"\f0e5";} +.icon-comments-alt:before{content:"\f0e6";} +.icon-bolt:before{content:"\f0e7";} +.icon-sitemap:before{content:"\f0e8";} +.icon-umbrella:before{content:"\f0e9";} +.icon-paste:before{content:"\f0ea";} +.icon-lightbulb:before{content:"\f0eb";} +.icon-exchange:before{content:"\f0ec";} +.icon-cloud-download:before{content:"\f0ed";} +.icon-cloud-upload:before{content:"\f0ee";} +.icon-user-md:before{content:"\f0f0";} +.icon-stethoscope:before{content:"\f0f1";} +.icon-suitcase:before{content:"\f0f2";} +.icon-bell-alt:before{content:"\f0f3";} +.icon-coffee:before{content:"\f0f4";} +.icon-food:before{content:"\f0f5";} +.icon-file-text-alt:before{content:"\f0f6";} +.icon-building:before{content:"\f0f7";} +.icon-hospital:before{content:"\f0f8";} +.icon-ambulance:before{content:"\f0f9";} +.icon-medkit:before{content:"\f0fa";} +.icon-fighter-jet:before{content:"\f0fb";} +.icon-beer:before{content:"\f0fc";} +.icon-h-sign:before{content:"\f0fd";} +.icon-plus-sign-alt:before{content:"\f0fe";} +.icon-double-angle-left:before{content:"\f100";} +.icon-double-angle-right:before{content:"\f101";} +.icon-double-angle-up:before{content:"\f102";} +.icon-double-angle-down:before{content:"\f103";} +.icon-angle-left:before{content:"\f104";} +.icon-angle-right:before{content:"\f105";} +.icon-angle-up:before{content:"\f106";} +.icon-angle-down:before{content:"\f107";} +.icon-desktop:before{content:"\f108";} +.icon-laptop:before{content:"\f109";} +.icon-tablet:before{content:"\f10a";} +.icon-mobile-phone:before{content:"\f10b";} +.icon-circle-blank:before{content:"\f10c";} +.icon-quote-left:before{content:"\f10d";} +.icon-quote-right:before{content:"\f10e";} +.icon-spinner:before{content:"\f110";} +.icon-circle:before{content:"\f111";} +.icon-mail-reply:before,.icon-reply:before{content:"\f112";} +.icon-github-alt:before{content:"\f113";} +.icon-folder-close-alt:before{content:"\f114";} +.icon-folder-open-alt:before{content:"\f115";} +.icon-expand-alt:before{content:"\f116";} +.icon-collapse-alt:before{content:"\f117";} +.icon-smile:before{content:"\f118";} +.icon-frown:before{content:"\f119";} +.icon-meh:before{content:"\f11a";} +.icon-gamepad:before{content:"\f11b";} +.icon-keyboard:before{content:"\f11c";} +.icon-flag-alt:before{content:"\f11d";} +.icon-flag-checkered:before{content:"\f11e";} +.icon-terminal:before{content:"\f120";} +.icon-code:before{content:"\f121";} +.icon-reply-all:before{content:"\f122";} +.icon-mail-reply-all:before{content:"\f122";} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} +.icon-location-arrow:before{content:"\f124";} +.icon-crop:before{content:"\f125";} +.icon-code-fork:before{content:"\f126";} +.icon-unlink:before{content:"\f127";} +.icon-question:before{content:"\f128";} +.icon-info:before{content:"\f129";} +.icon-exclamation:before{content:"\f12a";} +.icon-superscript:before{content:"\f12b";} +.icon-subscript:before{content:"\f12c";} +.icon-eraser:before{content:"\f12d";} +.icon-puzzle-piece:before{content:"\f12e";} +.icon-microphone:before{content:"\f130";} +.icon-microphone-off:before{content:"\f131";} +.icon-shield:before{content:"\f132";} +.icon-calendar-empty:before{content:"\f133";} +.icon-fire-extinguisher:before{content:"\f134";} +.icon-rocket:before{content:"\f135";} +.icon-maxcdn:before{content:"\f136";} +.icon-chevron-sign-left:before{content:"\f137";} +.icon-chevron-sign-right:before{content:"\f138";} +.icon-chevron-sign-up:before{content:"\f139";} +.icon-chevron-sign-down:before{content:"\f13a";} +.icon-html5:before{content:"\f13b";} +.icon-css3:before{content:"\f13c";} +.icon-anchor:before{content:"\f13d";} +.icon-unlock-alt:before{content:"\f13e";} +.icon-bullseye:before{content:"\f140";} +.icon-ellipsis-horizontal:before{content:"\f141";} +.icon-ellipsis-vertical:before{content:"\f142";} +.icon-rss-sign:before{content:"\f143";} +.icon-play-sign:before{content:"\f144";} +.icon-ticket:before{content:"\f145";} +.icon-minus-sign-alt:before{content:"\f146";} +.icon-check-minus:before{content:"\f147";} +.icon-level-up:before{content:"\f148";} +.icon-level-down:before{content:"\f149";} +.icon-check-sign:before{content:"\f14a";} +.icon-edit-sign:before{content:"\f14b";} +.icon-external-link-sign:before{content:"\f14c";} +.icon-share-sign:before{content:"\f14d";} +.icon-compass:before{content:"\f14e";} +.icon-collapse:before{content:"\f150";} +.icon-collapse-top:before{content:"\f151";} +.icon-expand:before{content:"\f152";} +.icon-euro:before,.icon-eur:before{content:"\f153";} +.icon-gbp:before{content:"\f154";} +.icon-dollar:before,.icon-usd:before{content:"\f155";} +.icon-rupee:before,.icon-inr:before{content:"\f156";} +.icon-yen:before,.icon-jpy:before{content:"\f157";} +.icon-renminbi:before,.icon-cny:before{content:"\f158";} +.icon-won:before,.icon-krw:before{content:"\f159";} +.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} +.icon-file:before{content:"\f15b";} +.icon-file-text:before{content:"\f15c";} +.icon-sort-by-alphabet:before{content:"\f15d";} +.icon-sort-by-alphabet-alt:before{content:"\f15e";} +.icon-sort-by-attributes:before{content:"\f160";} +.icon-sort-by-attributes-alt:before{content:"\f161";} +.icon-sort-by-order:before{content:"\f162";} +.icon-sort-by-order-alt:before{content:"\f163";} +.icon-thumbs-up:before{content:"\f164";} +.icon-thumbs-down:before{content:"\f165";} +.icon-youtube-sign:before{content:"\f166";} +.icon-youtube:before{content:"\f167";} +.icon-xing:before{content:"\f168";} +.icon-xing-sign:before{content:"\f169";} +.icon-youtube-play:before{content:"\f16a";} +.icon-dropbox:before{content:"\f16b";} +.icon-stackexchange:before{content:"\f16c";} +.icon-instagram:before{content:"\f16d";} +.icon-flickr:before{content:"\f16e";} +.icon-adn:before{content:"\f170";} +.icon-bitbucket:before{content:"\f171";} +.icon-bitbucket-sign:before{content:"\f172";} +.icon-tumblr:before{content:"\f173";} +.icon-tumblr-sign:before{content:"\f174";} +.icon-long-arrow-down:before{content:"\f175";} +.icon-long-arrow-up:before{content:"\f176";} +.icon-long-arrow-left:before{content:"\f177";} +.icon-long-arrow-right:before{content:"\f178";} +.icon-apple:before{content:"\f179";} +.icon-windows:before{content:"\f17a";} +.icon-android:before{content:"\f17b";} +.icon-linux:before{content:"\f17c";} +.icon-dribbble:before{content:"\f17d";} +.icon-skype:before{content:"\f17e";} +.icon-foursquare:before{content:"\f180";} +.icon-trello:before{content:"\f181";} +.icon-female:before{content:"\f182";} +.icon-male:before{content:"\f183";} +.icon-gittip:before{content:"\f184";} +.icon-sun:before{content:"\f185";} +.icon-moon:before{content:"\f186";} +.icon-archive:before{content:"\f187";} +.icon-bug:before{content:"\f188";} +.icon-vk:before{content:"\f189";} +.icon-weibo:before{content:"\f18a";} +.icon-renren:before{content:"\f18b";} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf b/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf new file mode 100644 index 000000000..70125459f Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot new file mode 100644 index 000000000..0662cb96b Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg new file mode 100644 index 000000000..2edb4ec34 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf new file mode 100644 index 000000000..d36592469 Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff new file mode 100644 index 000000000..b9bd17e15 Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less new file mode 100644 index 000000000..a2c96046b --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less @@ -0,0 +1,84 @@ +/* BOOTSTRAP SPECIFIC CLASSES + * -------------------------- */ + +/* Bootstrap 2.0 sprites.less reset */ +[class^="icon-"], +[class*=" icon-"] { + display: inline; + width: auto; + height: auto; + line-height: normal; + vertical-align: baseline; + background-image: none; + background-position: 0% 0%; + background-repeat: repeat; + margin-top: 0; +} + +/* more sprites.less reset */ +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; +} + + +/* keeps Bootstrap styles with and without icons the same */ +.btn, .nav { + [class^="icon-"], + [class*=" icon-"] { +// display: inline; + &.icon-large { line-height: .9em; } + &.icon-spin { display: inline-block; } + } +} +.nav-tabs, .nav-pills { + [class^="icon-"], + [class*=" icon-"] { + &, &.icon-large { line-height: .9em; } + } +} +.btn { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .18em; } + } + &.icon-spin.icon-large { line-height: .8em; } + } +} +.btn.btn-small { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .25em; } + } + } +} +.btn.btn-large { + [class^="icon-"], + [class*=" icon-"] { + margin-top: 0; // overrides bootstrap default + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .05em; } + } + &.pull-left.icon-2x { margin-right: .2em; } + &.pull-right.icon-2x { margin-left: .2em; } + } +} + +/* Fixes alignment in nav lists */ +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + line-height: inherit; +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less new file mode 100644 index 000000000..1ef7e2235 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less @@ -0,0 +1,129 @@ +/* FONT AWESOME CORE + * -------------------------- */ + +[class^="icon-"], +[class*=" icon-"] { + .icon-FontAwesome(); +} + +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} + +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: 4/3em; +} + +/* makes sure icons active on rollover in links */ +a { + [class^="icon-"], + [class*=" icon-"] { + display: inline; + } +} + +/* increased font size for icon-large */ +[class^="icon-"], +[class*=" icon-"] { + &.icon-fixed-width { + display: inline-block; + width: 16/14em; + text-align: right; + padding-right: 4/14em; + &.icon-large { + width: 20/14em; + } + } +} + +.icons-ul { + margin-left: @icons-li-width; + list-style-type: none; + + > li { position: relative; } + + .icon-li { + position: absolute; + left: -@icons-li-width; + width: @icons-li-width; + text-align: center; + line-height: inherit; + } +} + +// allows usage of the hide class directly on font awesome icons +[class^="icon-"], +[class*=" icon-"] { + &.hide { + display: none; + } +} + +.icon-muted { color: @iconMuted; } +.icon-light { color: @iconLight; } +.icon-dark { color: @iconDark; } + +// Icon Borders +// ------------------------- + +.icon-border { + border: solid 1px @borderColor; + padding: .2em .25em .15em; + .border-radius(3px); +} + +// Icon Sizes +// ------------------------- + +.icon-2x { + font-size: 2em; + &.icon-border { + border-width: 2px; + .border-radius(4px); + } +} +.icon-3x { + font-size: 3em; + &.icon-border { + border-width: 3px; + .border-radius(5px); + } +} +.icon-4x { + font-size: 4em; + &.icon-border { + border-width: 4px; + .border-radius(6px); + } +} + +.icon-5x { + font-size: 5em; + &.icon-border { + border-width: 5px; + .border-radius(7px); + } +} + + +// Floats & Margins +// ------------------------- + +// Quick floats +.pull-right { float: right; } +.pull-left { float: left; } + +[class^="icon-"], +[class*=" icon-"] { + &.pull-left { + margin-right: .3em; + } + &.pull-right { + margin-left: .3em; + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less new file mode 100644 index 000000000..c93c260c8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less @@ -0,0 +1,93 @@ +/* EXTRAS + * -------------------------- */ + +/* Stacked and layered icon */ +.icon-stack(); + +/* Animated rotating icon */ +.icon-spin { + display: inline-block; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} + +/* Prevent stack and spinners from being taken inline when inside a link */ +a .icon-stack, +a .icon-spin { + display: inline-block; + text-decoration: none; +} + +@-moz-keyframes spin { + 0% { -moz-transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); } +} +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); } +} +@-o-keyframes spin { + 0% { -o-transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); } +} +@-ms-keyframes spin { + 0% { -ms-transform: rotate(0deg); } + 100% { -ms-transform: rotate(359deg); } +} +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } +} + +/* Icon rotations and mirroring */ +.icon-rotate-90:before { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +.icon-rotate-180:before { + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); +} + +.icon-rotate-270:before { + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +.icon-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.icon-flip-vertical:before { + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} + +/* ensure rotation occurs inside anchor tags */ +a { + .icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical { + &:before { display: inline-block; } + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less new file mode 100644 index 000000000..6675c4989 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less @@ -0,0 +1,1953 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ + +.icon-large { + font-size: 4/3em; + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; + vertical-align: middle; +} + +.nav { + [class^="icon-"], + [class*=" icon-"] { + vertical-align: inherit; + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; + &.icon-large { + vertical-align: -25%; + } + } +} + +.nav-pills, .nav-tabs { + [class^="icon-"], + [class*=" icon-"] { + &.icon-large { + line-height: .75em; + margin-top: -7px; + padding-top: 5px; + margin-bottom: -5px; + padding-bottom: 4px; + } + } +} + +.btn { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { vertical-align: inherit; } + &.icon-large { + margin-top: -.5em; + } + } +} + +a [class^="icon-"], +a [class*=" icon-"] { + cursor: pointer; +} + +.ie7icon(@inner) { *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}')"; } + + +.icon-glass { + .ie7icon(''); +} + + +.icon-music { + .ie7icon(''); +} + + +.icon-search { + .ie7icon(''); +} + + +.icon-envelope-alt { + .ie7icon(''); +} + + +.icon-heart { + .ie7icon(''); +} + + +.icon-star { + .ie7icon(''); +} + + +.icon-star-empty { + .ie7icon(''); +} + + +.icon-user { + .ie7icon(''); +} + + +.icon-film { + .ie7icon(''); +} + + +.icon-th-large { + .ie7icon(''); +} + + +.icon-th { + .ie7icon(''); +} + + +.icon-th-list { + .ie7icon(''); +} + + +.icon-ok { + .ie7icon(''); +} + + +.icon-remove { + .ie7icon(''); +} + + +.icon-zoom-in { + .ie7icon(''); +} + + +.icon-zoom-out { + .ie7icon(''); +} + + +.icon-off { + .ie7icon(''); +} + +.icon-power-off { + .ie7icon(''); +} + + +.icon-signal { + .ie7icon(''); +} + + +.icon-cog { + .ie7icon(''); +} + +.icon-gear { + .ie7icon(''); +} + + +.icon-trash { + .ie7icon(''); +} + + +.icon-home { + .ie7icon(''); +} + + +.icon-file-alt { + .ie7icon(''); +} + + +.icon-time { + .ie7icon(''); +} + + +.icon-road { + .ie7icon(''); +} + + +.icon-download-alt { + .ie7icon(''); +} + + +.icon-download { + .ie7icon(''); +} + + +.icon-upload { + .ie7icon(''); +} + + +.icon-inbox { + .ie7icon(''); +} + + +.icon-play-circle { + .ie7icon(''); +} + + +.icon-repeat { + .ie7icon(''); +} + +.icon-rotate-right { + .ie7icon(''); +} + + +.icon-refresh { + .ie7icon(''); +} + + +.icon-list-alt { + .ie7icon(''); +} + + +.icon-lock { + .ie7icon(''); +} + + +.icon-flag { + .ie7icon(''); +} + + +.icon-headphones { + .ie7icon(''); +} + + +.icon-volume-off { + .ie7icon(''); +} + + +.icon-volume-down { + .ie7icon(''); +} + + +.icon-volume-up { + .ie7icon(''); +} + + +.icon-qrcode { + .ie7icon(''); +} + + +.icon-barcode { + .ie7icon(''); +} + + +.icon-tag { + .ie7icon(''); +} + + +.icon-tags { + .ie7icon(''); +} + + +.icon-book { + .ie7icon(''); +} + + +.icon-bookmark { + .ie7icon(''); +} + + +.icon-print { + .ie7icon(''); +} + + +.icon-camera { + .ie7icon(''); +} + + +.icon-font { + .ie7icon(''); +} + + +.icon-bold { + .ie7icon(''); +} + + +.icon-italic { + .ie7icon(''); +} + + +.icon-text-height { + .ie7icon(''); +} + + +.icon-text-width { + .ie7icon(''); +} + + +.icon-align-left { + .ie7icon(''); +} + + +.icon-align-center { + .ie7icon(''); +} + + +.icon-align-right { + .ie7icon(''); +} + + +.icon-align-justify { + .ie7icon(''); +} + + +.icon-list { + .ie7icon(''); +} + + +.icon-indent-left { + .ie7icon(''); +} + + +.icon-indent-right { + .ie7icon(''); +} + + +.icon-facetime-video { + .ie7icon(''); +} + + +.icon-picture { + .ie7icon(''); +} + + +.icon-pencil { + .ie7icon(''); +} + + +.icon-map-marker { + .ie7icon(''); +} + + +.icon-adjust { + .ie7icon(''); +} + + +.icon-tint { + .ie7icon(''); +} + + +.icon-edit { + .ie7icon(''); +} + + +.icon-share { + .ie7icon(''); +} + + +.icon-check { + .ie7icon(''); +} + + +.icon-move { + .ie7icon(''); +} + + +.icon-step-backward { + .ie7icon(''); +} + + +.icon-fast-backward { + .ie7icon(''); +} + + +.icon-backward { + .ie7icon(''); +} + + +.icon-play { + .ie7icon(''); +} + + +.icon-pause { + .ie7icon(''); +} + + +.icon-stop { + .ie7icon(''); +} + + +.icon-forward { + .ie7icon(''); +} + + +.icon-fast-forward { + .ie7icon(''); +} + + +.icon-step-forward { + .ie7icon(''); +} + + +.icon-eject { + .ie7icon(''); +} + + +.icon-chevron-left { + .ie7icon(''); +} + + +.icon-chevron-right { + .ie7icon(''); +} + + +.icon-plus-sign { + .ie7icon(''); +} + + +.icon-minus-sign { + .ie7icon(''); +} + + +.icon-remove-sign { + .ie7icon(''); +} + + +.icon-ok-sign { + .ie7icon(''); +} + + +.icon-question-sign { + .ie7icon(''); +} + + +.icon-info-sign { + .ie7icon(''); +} + + +.icon-screenshot { + .ie7icon(''); +} + + +.icon-remove-circle { + .ie7icon(''); +} + + +.icon-ok-circle { + .ie7icon(''); +} + + +.icon-ban-circle { + .ie7icon(''); +} + + +.icon-arrow-left { + .ie7icon(''); +} + + +.icon-arrow-right { + .ie7icon(''); +} + + +.icon-arrow-up { + .ie7icon(''); +} + + +.icon-arrow-down { + .ie7icon(''); +} + + +.icon-share-alt { + .ie7icon(''); +} + +.icon-mail-forward { + .ie7icon(''); +} + + +.icon-resize-full { + .ie7icon(''); +} + + +.icon-resize-small { + .ie7icon(''); +} + + +.icon-plus { + .ie7icon(''); +} + + +.icon-minus { + .ie7icon(''); +} + + +.icon-asterisk { + .ie7icon(''); +} + + +.icon-exclamation-sign { + .ie7icon(''); +} + + +.icon-gift { + .ie7icon(''); +} + + +.icon-leaf { + .ie7icon(''); +} + + +.icon-fire { + .ie7icon(''); +} + + +.icon-eye-open { + .ie7icon(''); +} + + +.icon-eye-close { + .ie7icon(''); +} + + +.icon-warning-sign { + .ie7icon(''); +} + + +.icon-plane { + .ie7icon(''); +} + + +.icon-calendar { + .ie7icon(''); +} + + +.icon-random { + .ie7icon(''); +} + + +.icon-comment { + .ie7icon(''); +} + + +.icon-magnet { + .ie7icon(''); +} + + +.icon-chevron-up { + .ie7icon(''); +} + + +.icon-chevron-down { + .ie7icon(''); +} + + +.icon-retweet { + .ie7icon(''); +} + + +.icon-shopping-cart { + .ie7icon(''); +} + + +.icon-folder-close { + .ie7icon(''); +} + + +.icon-folder-open { + .ie7icon(''); +} + + +.icon-resize-vertical { + .ie7icon(''); +} + + +.icon-resize-horizontal { + .ie7icon(''); +} + + +.icon-bar-chart { + .ie7icon(''); +} + + +.icon-twitter-sign { + .ie7icon(''); +} + + +.icon-facebook-sign { + .ie7icon(''); +} + + +.icon-camera-retro { + .ie7icon(''); +} + + +.icon-key { + .ie7icon(''); +} + + +.icon-cogs { + .ie7icon(''); +} + +.icon-gears { + .ie7icon(''); +} + + +.icon-comments { + .ie7icon(''); +} + + +.icon-thumbs-up-alt { + .ie7icon(''); +} + + +.icon-thumbs-down-alt { + .ie7icon(''); +} + + +.icon-star-half { + .ie7icon(''); +} + + +.icon-heart-empty { + .ie7icon(''); +} + + +.icon-signout { + .ie7icon(''); +} + + +.icon-linkedin-sign { + .ie7icon(''); +} + + +.icon-pushpin { + .ie7icon(''); +} + + +.icon-external-link { + .ie7icon(''); +} + + +.icon-signin { + .ie7icon(''); +} + + +.icon-trophy { + .ie7icon(''); +} + + +.icon-github-sign { + .ie7icon(''); +} + + +.icon-upload-alt { + .ie7icon(''); +} + + +.icon-lemon { + .ie7icon(''); +} + + +.icon-phone { + .ie7icon(''); +} + + +.icon-check-empty { + .ie7icon(''); +} + +.icon-unchecked { + .ie7icon(''); +} + + +.icon-bookmark-empty { + .ie7icon(''); +} + + +.icon-phone-sign { + .ie7icon(''); +} + + +.icon-twitter { + .ie7icon(''); +} + + +.icon-facebook { + .ie7icon(''); +} + + +.icon-github { + .ie7icon(''); +} + + +.icon-unlock { + .ie7icon(''); +} + + +.icon-credit-card { + .ie7icon(''); +} + + +.icon-rss { + .ie7icon(''); +} + + +.icon-hdd { + .ie7icon(''); +} + + +.icon-bullhorn { + .ie7icon(''); +} + + +.icon-bell { + .ie7icon(''); +} + + +.icon-certificate { + .ie7icon(''); +} + + +.icon-hand-right { + .ie7icon(''); +} + + +.icon-hand-left { + .ie7icon(''); +} + + +.icon-hand-up { + .ie7icon(''); +} + + +.icon-hand-down { + .ie7icon(''); +} + + +.icon-circle-arrow-left { + .ie7icon(''); +} + + +.icon-circle-arrow-right { + .ie7icon(''); +} + + +.icon-circle-arrow-up { + .ie7icon(''); +} + + +.icon-circle-arrow-down { + .ie7icon(''); +} + + +.icon-globe { + .ie7icon(''); +} + + +.icon-wrench { + .ie7icon(''); +} + + +.icon-tasks { + .ie7icon(''); +} + + +.icon-filter { + .ie7icon(''); +} + + +.icon-briefcase { + .ie7icon(''); +} + + +.icon-fullscreen { + .ie7icon(''); +} + + +.icon-group { + .ie7icon(''); +} + + +.icon-link { + .ie7icon(''); +} + + +.icon-cloud { + .ie7icon(''); +} + + +.icon-beaker { + .ie7icon(''); +} + + +.icon-cut { + .ie7icon(''); +} + + +.icon-copy { + .ie7icon(''); +} + + +.icon-paper-clip { + .ie7icon(''); +} + +.icon-paperclip { + .ie7icon(''); +} + + +.icon-save { + .ie7icon(''); +} + + +.icon-sign-blank { + .ie7icon(''); +} + + +.icon-reorder { + .ie7icon(''); +} + + +.icon-list-ul { + .ie7icon(''); +} + + +.icon-list-ol { + .ie7icon(''); +} + + +.icon-strikethrough { + .ie7icon(''); +} + + +.icon-underline { + .ie7icon(''); +} + + +.icon-table { + .ie7icon(''); +} + + +.icon-magic { + .ie7icon(''); +} + + +.icon-truck { + .ie7icon(''); +} + + +.icon-pinterest { + .ie7icon(''); +} + + +.icon-pinterest-sign { + .ie7icon(''); +} + + +.icon-google-plus-sign { + .ie7icon(''); +} + + +.icon-google-plus { + .ie7icon(''); +} + + +.icon-money { + .ie7icon(''); +} + + +.icon-caret-down { + .ie7icon(''); +} + + +.icon-caret-up { + .ie7icon(''); +} + + +.icon-caret-left { + .ie7icon(''); +} + + +.icon-caret-right { + .ie7icon(''); +} + + +.icon-columns { + .ie7icon(''); +} + + +.icon-sort { + .ie7icon(''); +} + + +.icon-sort-down { + .ie7icon(''); +} + + +.icon-sort-up { + .ie7icon(''); +} + + +.icon-envelope { + .ie7icon(''); +} + + +.icon-linkedin { + .ie7icon(''); +} + + +.icon-undo { + .ie7icon(''); +} + +.icon-rotate-left { + .ie7icon(''); +} + + +.icon-legal { + .ie7icon(''); +} + + +.icon-dashboard { + .ie7icon(''); +} + + +.icon-comment-alt { + .ie7icon(''); +} + + +.icon-comments-alt { + .ie7icon(''); +} + + +.icon-bolt { + .ie7icon(''); +} + + +.icon-sitemap { + .ie7icon(''); +} + + +.icon-umbrella { + .ie7icon(''); +} + + +.icon-paste { + .ie7icon(''); +} + + +.icon-lightbulb { + .ie7icon(''); +} + + +.icon-exchange { + .ie7icon(''); +} + + +.icon-cloud-download { + .ie7icon(''); +} + + +.icon-cloud-upload { + .ie7icon(''); +} + + +.icon-user-md { + .ie7icon(''); +} + + +.icon-stethoscope { + .ie7icon(''); +} + + +.icon-suitcase { + .ie7icon(''); +} + + +.icon-bell-alt { + .ie7icon(''); +} + + +.icon-coffee { + .ie7icon(''); +} + + +.icon-food { + .ie7icon(''); +} + + +.icon-file-text-alt { + .ie7icon(''); +} + + +.icon-building { + .ie7icon(''); +} + + +.icon-hospital { + .ie7icon(''); +} + + +.icon-ambulance { + .ie7icon(''); +} + + +.icon-medkit { + .ie7icon(''); +} + + +.icon-fighter-jet { + .ie7icon(''); +} + + +.icon-beer { + .ie7icon(''); +} + + +.icon-h-sign { + .ie7icon(''); +} + + +.icon-plus-sign-alt { + .ie7icon(''); +} + + +.icon-double-angle-left { + .ie7icon(''); +} + + +.icon-double-angle-right { + .ie7icon(''); +} + + +.icon-double-angle-up { + .ie7icon(''); +} + + +.icon-double-angle-down { + .ie7icon(''); +} + + +.icon-angle-left { + .ie7icon(''); +} + + +.icon-angle-right { + .ie7icon(''); +} + + +.icon-angle-up { + .ie7icon(''); +} + + +.icon-angle-down { + .ie7icon(''); +} + + +.icon-desktop { + .ie7icon(''); +} + + +.icon-laptop { + .ie7icon(''); +} + + +.icon-tablet { + .ie7icon(''); +} + + +.icon-mobile-phone { + .ie7icon(''); +} + + +.icon-circle-blank { + .ie7icon(''); +} + + +.icon-quote-left { + .ie7icon(''); +} + + +.icon-quote-right { + .ie7icon(''); +} + + +.icon-spinner { + .ie7icon(''); +} + + +.icon-circle { + .ie7icon(''); +} + + +.icon-reply { + .ie7icon(''); +} + +.icon-mail-reply { + .ie7icon(''); +} + + +.icon-github-alt { + .ie7icon(''); +} + + +.icon-folder-close-alt { + .ie7icon(''); +} + + +.icon-folder-open-alt { + .ie7icon(''); +} + + +.icon-expand-alt { + .ie7icon(''); +} + + +.icon-collapse-alt { + .ie7icon(''); +} + + +.icon-smile { + .ie7icon(''); +} + + +.icon-frown { + .ie7icon(''); +} + + +.icon-meh { + .ie7icon(''); +} + + +.icon-gamepad { + .ie7icon(''); +} + + +.icon-keyboard { + .ie7icon(''); +} + + +.icon-flag-alt { + .ie7icon(''); +} + + +.icon-flag-checkered { + .ie7icon(''); +} + + +.icon-terminal { + .ie7icon(''); +} + + +.icon-code { + .ie7icon(''); +} + + +.icon-reply-all { + .ie7icon(''); +} + + +.icon-mail-reply-all { + .ie7icon(''); +} + + +.icon-star-half-empty { + .ie7icon(''); +} + +.icon-star-half-full { + .ie7icon(''); +} + + +.icon-location-arrow { + .ie7icon(''); +} + + +.icon-crop { + .ie7icon(''); +} + + +.icon-code-fork { + .ie7icon(''); +} + + +.icon-unlink { + .ie7icon(''); +} + + +.icon-question { + .ie7icon(''); +} + + +.icon-info { + .ie7icon(''); +} + + +.icon-exclamation { + .ie7icon(''); +} + + +.icon-superscript { + .ie7icon(''); +} + + +.icon-subscript { + .ie7icon(''); +} + + +.icon-eraser { + .ie7icon(''); +} + + +.icon-puzzle-piece { + .ie7icon(''); +} + + +.icon-microphone { + .ie7icon(''); +} + + +.icon-microphone-off { + .ie7icon(''); +} + + +.icon-shield { + .ie7icon(''); +} + + +.icon-calendar-empty { + .ie7icon(''); +} + + +.icon-fire-extinguisher { + .ie7icon(''); +} + + +.icon-rocket { + .ie7icon(''); +} + + +.icon-maxcdn { + .ie7icon(''); +} + + +.icon-chevron-sign-left { + .ie7icon(''); +} + + +.icon-chevron-sign-right { + .ie7icon(''); +} + + +.icon-chevron-sign-up { + .ie7icon(''); +} + + +.icon-chevron-sign-down { + .ie7icon(''); +} + + +.icon-html5 { + .ie7icon(''); +} + + +.icon-css3 { + .ie7icon(''); +} + + +.icon-anchor { + .ie7icon(''); +} + + +.icon-unlock-alt { + .ie7icon(''); +} + + +.icon-bullseye { + .ie7icon(''); +} + + +.icon-ellipsis-horizontal { + .ie7icon(''); +} + + +.icon-ellipsis-vertical { + .ie7icon(''); +} + + +.icon-rss-sign { + .ie7icon(''); +} + + +.icon-play-sign { + .ie7icon(''); +} + + +.icon-ticket { + .ie7icon(''); +} + + +.icon-minus-sign-alt { + .ie7icon(''); +} + + +.icon-check-minus { + .ie7icon(''); +} + + +.icon-level-up { + .ie7icon(''); +} + + +.icon-level-down { + .ie7icon(''); +} + + +.icon-check-sign { + .ie7icon(''); +} + + +.icon-edit-sign { + .ie7icon(''); +} + + +.icon-external-link-sign { + .ie7icon(''); +} + + +.icon-share-sign { + .ie7icon(''); +} + + +.icon-compass { + .ie7icon(''); +} + + +.icon-collapse { + .ie7icon(''); +} + + +.icon-collapse-top { + .ie7icon(''); +} + + +.icon-expand { + .ie7icon(''); +} + + +.icon-eur { + .ie7icon(''); +} + +.icon-euro { + .ie7icon(''); +} + + +.icon-gbp { + .ie7icon(''); +} + + +.icon-usd { + .ie7icon(''); +} + +.icon-dollar { + .ie7icon(''); +} + + +.icon-inr { + .ie7icon(''); +} + +.icon-rupee { + .ie7icon(''); +} + + +.icon-jpy { + .ie7icon(''); +} + +.icon-yen { + .ie7icon(''); +} + + +.icon-cny { + .ie7icon(''); +} + +.icon-renminbi { + .ie7icon(''); +} + + +.icon-krw { + .ie7icon(''); +} + +.icon-won { + .ie7icon(''); +} + + +.icon-btc { + .ie7icon(''); +} + +.icon-bitcoin { + .ie7icon(''); +} + + +.icon-file { + .ie7icon(''); +} + + +.icon-file-text { + .ie7icon(''); +} + + +.icon-sort-by-alphabet { + .ie7icon(''); +} + + +.icon-sort-by-alphabet-alt { + .ie7icon(''); +} + + +.icon-sort-by-attributes { + .ie7icon(''); +} + + +.icon-sort-by-attributes-alt { + .ie7icon(''); +} + + +.icon-sort-by-order { + .ie7icon(''); +} + + +.icon-sort-by-order-alt { + .ie7icon(''); +} + + +.icon-thumbs-up { + .ie7icon(''); +} + + +.icon-thumbs-down { + .ie7icon(''); +} + + +.icon-youtube-sign { + .ie7icon(''); +} + + +.icon-youtube { + .ie7icon(''); +} + + +.icon-xing { + .ie7icon(''); +} + + +.icon-xing-sign { + .ie7icon(''); +} + + +.icon-youtube-play { + .ie7icon(''); +} + + +.icon-dropbox { + .ie7icon(''); +} + + +.icon-stackexchange { + .ie7icon(''); +} + + +.icon-instagram { + .ie7icon(''); +} + + +.icon-flickr { + .ie7icon(''); +} + + +.icon-adn { + .ie7icon(''); +} + + +.icon-bitbucket { + .ie7icon(''); +} + + +.icon-bitbucket-sign { + .ie7icon(''); +} + + +.icon-tumblr { + .ie7icon(''); +} + + +.icon-tumblr-sign { + .ie7icon(''); +} + + +.icon-long-arrow-down { + .ie7icon(''); +} + + +.icon-long-arrow-up { + .ie7icon(''); +} + + +.icon-long-arrow-left { + .ie7icon(''); +} + + +.icon-long-arrow-right { + .ie7icon(''); +} + + +.icon-apple { + .ie7icon(''); +} + + +.icon-windows { + .ie7icon(''); +} + + +.icon-android { + .ie7icon(''); +} + + +.icon-linux { + .ie7icon(''); +} + + +.icon-dribbble { + .ie7icon(''); +} + + +.icon-skype { + .ie7icon(''); +} + + +.icon-foursquare { + .ie7icon(''); +} + + +.icon-trello { + .ie7icon(''); +} + + +.icon-female { + .ie7icon(''); +} + + +.icon-male { + .ie7icon(''); +} + + +.icon-gittip { + .ie7icon(''); +} + + +.icon-sun { + .ie7icon(''); +} + + +.icon-moon { + .ie7icon(''); +} + + +.icon-archive { + .ie7icon(''); +} + + +.icon-bug { + .ie7icon(''); +} + + +.icon-vk { + .ie7icon(''); +} + + +.icon-weibo { + .ie7icon(''); +} + + +.icon-renren { + .ie7icon(''); +} + + diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less new file mode 100644 index 000000000..0f454612b --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less @@ -0,0 +1,33 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ + +@import "variables.less"; +@import "mixins.less"; +@import "path.less"; +@import "core.less"; +@import "bootstrap.less"; +@import "extras.less"; +@import "icons.less"; diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less new file mode 100644 index 000000000..476d201ec --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less @@ -0,0 +1,381 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +.icon-glass:before { content: @glass; } +.icon-music:before { content: @music; } +.icon-search:before { content: @search; } +.icon-envelope-alt:before { content: @envelope-alt; } +.icon-heart:before { content: @heart; } +.icon-star:before { content: @star; } +.icon-star-empty:before { content: @star-empty; } +.icon-user:before { content: @user; } +.icon-film:before { content: @film; } +.icon-th-large:before { content: @th-large; } +.icon-th:before { content: @th; } +.icon-th-list:before { content: @th-list; } +.icon-ok:before { content: @ok; } +.icon-remove:before { content: @remove; } +.icon-zoom-in:before { content: @zoom-in; } +.icon-zoom-out:before { content: @zoom-out; } +.icon-power-off:before, +.icon-off:before { content: @off; } +.icon-signal:before { content: @signal; } +.icon-gear:before, +.icon-cog:before { content: @cog; } +.icon-trash:before { content: @trash; } +.icon-home:before { content: @home; } +.icon-file-alt:before { content: @file-alt; } +.icon-time:before { content: @time; } +.icon-road:before { content: @road; } +.icon-download-alt:before { content: @download-alt; } +.icon-download:before { content: @download; } +.icon-upload:before { content: @upload; } +.icon-inbox:before { content: @inbox; } +.icon-play-circle:before { content: @play-circle; } +.icon-rotate-right:before, +.icon-repeat:before { content: @repeat; } +.icon-refresh:before { content: @refresh; } +.icon-list-alt:before { content: @list-alt; } +.icon-lock:before { content: @lock; } +.icon-flag:before { content: @flag; } +.icon-headphones:before { content: @headphones; } +.icon-volume-off:before { content: @volume-off; } +.icon-volume-down:before { content: @volume-down; } +.icon-volume-up:before { content: @volume-up; } +.icon-qrcode:before { content: @qrcode; } +.icon-barcode:before { content: @barcode; } +.icon-tag:before { content: @tag; } +.icon-tags:before { content: @tags; } +.icon-book:before { content: @book; } +.icon-bookmark:before { content: @bookmark; } +.icon-print:before { content: @print; } +.icon-camera:before { content: @camera; } +.icon-font:before { content: @font; } +.icon-bold:before { content: @bold; } +.icon-italic:before { content: @italic; } +.icon-text-height:before { content: @text-height; } +.icon-text-width:before { content: @text-width; } +.icon-align-left:before { content: @align-left; } +.icon-align-center:before { content: @align-center; } +.icon-align-right:before { content: @align-right; } +.icon-align-justify:before { content: @align-justify; } +.icon-list:before { content: @list; } +.icon-indent-left:before { content: @indent-left; } +.icon-indent-right:before { content: @indent-right; } +.icon-facetime-video:before { content: @facetime-video; } +.icon-picture:before { content: @picture; } +.icon-pencil:before { content: @pencil; } +.icon-map-marker:before { content: @map-marker; } +.icon-adjust:before { content: @adjust; } +.icon-tint:before { content: @tint; } +.icon-edit:before { content: @edit; } +.icon-share:before { content: @share; } +.icon-check:before { content: @check; } +.icon-move:before { content: @move; } +.icon-step-backward:before { content: @step-backward; } +.icon-fast-backward:before { content: @fast-backward; } +.icon-backward:before { content: @backward; } +.icon-play:before { content: @play; } +.icon-pause:before { content: @pause; } +.icon-stop:before { content: @stop; } +.icon-forward:before { content: @forward; } +.icon-fast-forward:before { content: @fast-forward; } +.icon-step-forward:before { content: @step-forward; } +.icon-eject:before { content: @eject; } +.icon-chevron-left:before { content: @chevron-left; } +.icon-chevron-right:before { content: @chevron-right; } +.icon-plus-sign:before { content: @plus-sign; } +.icon-minus-sign:before { content: @minus-sign; } +.icon-remove-sign:before { content: @remove-sign; } +.icon-ok-sign:before { content: @ok-sign; } +.icon-question-sign:before { content: @question-sign; } +.icon-info-sign:before { content: @info-sign; } +.icon-screenshot:before { content: @screenshot; } +.icon-remove-circle:before { content: @remove-circle; } +.icon-ok-circle:before { content: @ok-circle; } +.icon-ban-circle:before { content: @ban-circle; } +.icon-arrow-left:before { content: @arrow-left; } +.icon-arrow-right:before { content: @arrow-right; } +.icon-arrow-up:before { content: @arrow-up; } +.icon-arrow-down:before { content: @arrow-down; } +.icon-mail-forward:before, +.icon-share-alt:before { content: @share-alt; } +.icon-resize-full:before { content: @resize-full; } +.icon-resize-small:before { content: @resize-small; } +.icon-plus:before { content: @plus; } +.icon-minus:before { content: @minus; } +.icon-asterisk:before { content: @asterisk; } +.icon-exclamation-sign:before { content: @exclamation-sign; } +.icon-gift:before { content: @gift; } +.icon-leaf:before { content: @leaf; } +.icon-fire:before { content: @fire; } +.icon-eye-open:before { content: @eye-open; } +.icon-eye-close:before { content: @eye-close; } +.icon-warning-sign:before { content: @warning-sign; } +.icon-plane:before { content: @plane; } +.icon-calendar:before { content: @calendar; } +.icon-random:before { content: @random; } +.icon-comment:before { content: @comment; } +.icon-magnet:before { content: @magnet; } +.icon-chevron-up:before { content: @chevron-up; } +.icon-chevron-down:before { content: @chevron-down; } +.icon-retweet:before { content: @retweet; } +.icon-shopping-cart:before { content: @shopping-cart; } +.icon-folder-close:before { content: @folder-close; } +.icon-folder-open:before { content: @folder-open; } +.icon-resize-vertical:before { content: @resize-vertical; } +.icon-resize-horizontal:before { content: @resize-horizontal; } +.icon-bar-chart:before { content: @bar-chart; } +.icon-twitter-sign:before { content: @twitter-sign; } +.icon-facebook-sign:before { content: @facebook-sign; } +.icon-camera-retro:before { content: @camera-retro; } +.icon-key:before { content: @key; } +.icon-gears:before, +.icon-cogs:before { content: @cogs; } +.icon-comments:before { content: @comments; } +.icon-thumbs-up-alt:before { content: @thumbs-up-alt; } +.icon-thumbs-down-alt:before { content: @thumbs-down-alt; } +.icon-star-half:before { content: @star-half; } +.icon-heart-empty:before { content: @heart-empty; } +.icon-signout:before { content: @signout; } +.icon-linkedin-sign:before { content: @linkedin-sign; } +.icon-pushpin:before { content: @pushpin; } +.icon-external-link:before { content: @external-link; } +.icon-signin:before { content: @signin; } +.icon-trophy:before { content: @trophy; } +.icon-github-sign:before { content: @github-sign; } +.icon-upload-alt:before { content: @upload-alt; } +.icon-lemon:before { content: @lemon; } +.icon-phone:before { content: @phone; } +.icon-unchecked:before, +.icon-check-empty:before { content: @check-empty; } +.icon-bookmark-empty:before { content: @bookmark-empty; } +.icon-phone-sign:before { content: @phone-sign; } +.icon-twitter:before { content: @twitter; } +.icon-facebook:before { content: @facebook; } +.icon-github:before { content: @github; } +.icon-unlock:before { content: @unlock; } +.icon-credit-card:before { content: @credit-card; } +.icon-rss:before { content: @rss; } +.icon-hdd:before { content: @hdd; } +.icon-bullhorn:before { content: @bullhorn; } +.icon-bell:before { content: @bell; } +.icon-certificate:before { content: @certificate; } +.icon-hand-right:before { content: @hand-right; } +.icon-hand-left:before { content: @hand-left; } +.icon-hand-up:before { content: @hand-up; } +.icon-hand-down:before { content: @hand-down; } +.icon-circle-arrow-left:before { content: @circle-arrow-left; } +.icon-circle-arrow-right:before { content: @circle-arrow-right; } +.icon-circle-arrow-up:before { content: @circle-arrow-up; } +.icon-circle-arrow-down:before { content: @circle-arrow-down; } +.icon-globe:before { content: @globe; } +.icon-wrench:before { content: @wrench; } +.icon-tasks:before { content: @tasks; } +.icon-filter:before { content: @filter; } +.icon-briefcase:before { content: @briefcase; } +.icon-fullscreen:before { content: @fullscreen; } +.icon-group:before { content: @group; } +.icon-link:before { content: @link; } +.icon-cloud:before { content: @cloud; } +.icon-beaker:before { content: @beaker; } +.icon-cut:before { content: @cut; } +.icon-copy:before { content: @copy; } +.icon-paperclip:before, +.icon-paper-clip:before { content: @paper-clip; } +.icon-save:before { content: @save; } +.icon-sign-blank:before { content: @sign-blank; } +.icon-reorder:before { content: @reorder; } +.icon-list-ul:before { content: @list-ul; } +.icon-list-ol:before { content: @list-ol; } +.icon-strikethrough:before { content: @strikethrough; } +.icon-underline:before { content: @underline; } +.icon-table:before { content: @table; } +.icon-magic:before { content: @magic; } +.icon-truck:before { content: @truck; } +.icon-pinterest:before { content: @pinterest; } +.icon-pinterest-sign:before { content: @pinterest-sign; } +.icon-google-plus-sign:before { content: @google-plus-sign; } +.icon-google-plus:before { content: @google-plus; } +.icon-money:before { content: @money; } +.icon-caret-down:before { content: @caret-down; } +.icon-caret-up:before { content: @caret-up; } +.icon-caret-left:before { content: @caret-left; } +.icon-caret-right:before { content: @caret-right; } +.icon-columns:before { content: @columns; } +.icon-sort:before { content: @sort; } +.icon-sort-down:before { content: @sort-down; } +.icon-sort-up:before { content: @sort-up; } +.icon-envelope:before { content: @envelope; } +.icon-linkedin:before { content: @linkedin; } +.icon-rotate-left:before, +.icon-undo:before { content: @undo; } +.icon-legal:before { content: @legal; } +.icon-dashboard:before { content: @dashboard; } +.icon-comment-alt:before { content: @comment-alt; } +.icon-comments-alt:before { content: @comments-alt; } +.icon-bolt:before { content: @bolt; } +.icon-sitemap:before { content: @sitemap; } +.icon-umbrella:before { content: @umbrella; } +.icon-paste:before { content: @paste; } +.icon-lightbulb:before { content: @lightbulb; } +.icon-exchange:before { content: @exchange; } +.icon-cloud-download:before { content: @cloud-download; } +.icon-cloud-upload:before { content: @cloud-upload; } +.icon-user-md:before { content: @user-md; } +.icon-stethoscope:before { content: @stethoscope; } +.icon-suitcase:before { content: @suitcase; } +.icon-bell-alt:before { content: @bell-alt; } +.icon-coffee:before { content: @coffee; } +.icon-food:before { content: @food; } +.icon-file-text-alt:before { content: @file-text-alt; } +.icon-building:before { content: @building; } +.icon-hospital:before { content: @hospital; } +.icon-ambulance:before { content: @ambulance; } +.icon-medkit:before { content: @medkit; } +.icon-fighter-jet:before { content: @fighter-jet; } +.icon-beer:before { content: @beer; } +.icon-h-sign:before { content: @h-sign; } +.icon-plus-sign-alt:before { content: @plus-sign-alt; } +.icon-double-angle-left:before { content: @double-angle-left; } +.icon-double-angle-right:before { content: @double-angle-right; } +.icon-double-angle-up:before { content: @double-angle-up; } +.icon-double-angle-down:before { content: @double-angle-down; } +.icon-angle-left:before { content: @angle-left; } +.icon-angle-right:before { content: @angle-right; } +.icon-angle-up:before { content: @angle-up; } +.icon-angle-down:before { content: @angle-down; } +.icon-desktop:before { content: @desktop; } +.icon-laptop:before { content: @laptop; } +.icon-tablet:before { content: @tablet; } +.icon-mobile-phone:before { content: @mobile-phone; } +.icon-circle-blank:before { content: @circle-blank; } +.icon-quote-left:before { content: @quote-left; } +.icon-quote-right:before { content: @quote-right; } +.icon-spinner:before { content: @spinner; } +.icon-circle:before { content: @circle; } +.icon-mail-reply:before, +.icon-reply:before { content: @reply; } +.icon-github-alt:before { content: @github-alt; } +.icon-folder-close-alt:before { content: @folder-close-alt; } +.icon-folder-open-alt:before { content: @folder-open-alt; } +.icon-expand-alt:before { content: @expand-alt; } +.icon-collapse-alt:before { content: @collapse-alt; } +.icon-smile:before { content: @smile; } +.icon-frown:before { content: @frown; } +.icon-meh:before { content: @meh; } +.icon-gamepad:before { content: @gamepad; } +.icon-keyboard:before { content: @keyboard; } +.icon-flag-alt:before { content: @flag-alt; } +.icon-flag-checkered:before { content: @flag-checkered; } +.icon-terminal:before { content: @terminal; } +.icon-code:before { content: @code; } +.icon-reply-all:before { content: @reply-all; } +.icon-mail-reply-all:before { content: @mail-reply-all; } +.icon-star-half-full:before, +.icon-star-half-empty:before { content: @star-half-empty; } +.icon-location-arrow:before { content: @location-arrow; } +.icon-crop:before { content: @crop; } +.icon-code-fork:before { content: @code-fork; } +.icon-unlink:before { content: @unlink; } +.icon-question:before { content: @question; } +.icon-info:before { content: @info; } +.icon-exclamation:before { content: @exclamation; } +.icon-superscript:before { content: @superscript; } +.icon-subscript:before { content: @subscript; } +.icon-eraser:before { content: @eraser; } +.icon-puzzle-piece:before { content: @puzzle-piece; } +.icon-microphone:before { content: @microphone; } +.icon-microphone-off:before { content: @microphone-off; } +.icon-shield:before { content: @shield; } +.icon-calendar-empty:before { content: @calendar-empty; } +.icon-fire-extinguisher:before { content: @fire-extinguisher; } +.icon-rocket:before { content: @rocket; } +.icon-maxcdn:before { content: @maxcdn; } +.icon-chevron-sign-left:before { content: @chevron-sign-left; } +.icon-chevron-sign-right:before { content: @chevron-sign-right; } +.icon-chevron-sign-up:before { content: @chevron-sign-up; } +.icon-chevron-sign-down:before { content: @chevron-sign-down; } +.icon-html5:before { content: @html5; } +.icon-css3:before { content: @css3; } +.icon-anchor:before { content: @anchor; } +.icon-unlock-alt:before { content: @unlock-alt; } +.icon-bullseye:before { content: @bullseye; } +.icon-ellipsis-horizontal:before { content: @ellipsis-horizontal; } +.icon-ellipsis-vertical:before { content: @ellipsis-vertical; } +.icon-rss-sign:before { content: @rss-sign; } +.icon-play-sign:before { content: @play-sign; } +.icon-ticket:before { content: @ticket; } +.icon-minus-sign-alt:before { content: @minus-sign-alt; } +.icon-check-minus:before { content: @check-minus; } +.icon-level-up:before { content: @level-up; } +.icon-level-down:before { content: @level-down; } +.icon-check-sign:before { content: @check-sign; } +.icon-edit-sign:before { content: @edit-sign; } +.icon-external-link-sign:before { content: @external-link-sign; } +.icon-share-sign:before { content: @share-sign; } +.icon-compass:before { content: @compass; } +.icon-collapse:before { content: @collapse; } +.icon-collapse-top:before { content: @collapse-top; } +.icon-expand:before { content: @expand; } +.icon-euro:before, +.icon-eur:before { content: @eur; } +.icon-gbp:before { content: @gbp; } +.icon-dollar:before, +.icon-usd:before { content: @usd; } +.icon-rupee:before, +.icon-inr:before { content: @inr; } +.icon-yen:before, +.icon-jpy:before { content: @jpy; } +.icon-renminbi:before, +.icon-cny:before { content: @cny; } +.icon-won:before, +.icon-krw:before { content: @krw; } +.icon-bitcoin:before, +.icon-btc:before { content: @btc; } +.icon-file:before { content: @file; } +.icon-file-text:before { content: @file-text; } +.icon-sort-by-alphabet:before { content: @sort-by-alphabet; } +.icon-sort-by-alphabet-alt:before { content: @sort-by-alphabet-alt; } +.icon-sort-by-attributes:before { content: @sort-by-attributes; } +.icon-sort-by-attributes-alt:before { content: @sort-by-attributes-alt; } +.icon-sort-by-order:before { content: @sort-by-order; } +.icon-sort-by-order-alt:before { content: @sort-by-order-alt; } +.icon-thumbs-up:before { content: @thumbs-up; } +.icon-thumbs-down:before { content: @thumbs-down; } +.icon-youtube-sign:before { content: @youtube-sign; } +.icon-youtube:before { content: @youtube; } +.icon-xing:before { content: @xing; } +.icon-xing-sign:before { content: @xing-sign; } +.icon-youtube-play:before { content: @youtube-play; } +.icon-dropbox:before { content: @dropbox; } +.icon-stackexchange:before { content: @stackexchange; } +.icon-instagram:before { content: @instagram; } +.icon-flickr:before { content: @flickr; } +.icon-adn:before { content: @adn; } +.icon-bitbucket:before { content: @bitbucket; } +.icon-bitbucket-sign:before { content: @bitbucket-sign; } +.icon-tumblr:before { content: @tumblr; } +.icon-tumblr-sign:before { content: @tumblr-sign; } +.icon-long-arrow-down:before { content: @long-arrow-down; } +.icon-long-arrow-up:before { content: @long-arrow-up; } +.icon-long-arrow-left:before { content: @long-arrow-left; } +.icon-long-arrow-right:before { content: @long-arrow-right; } +.icon-apple:before { content: @apple; } +.icon-windows:before { content: @windows; } +.icon-android:before { content: @android; } +.icon-linux:before { content: @linux; } +.icon-dribbble:before { content: @dribbble; } +.icon-skype:before { content: @skype; } +.icon-foursquare:before { content: @foursquare; } +.icon-trello:before { content: @trello; } +.icon-female:before { content: @female; } +.icon-male:before { content: @male; } +.icon-gittip:before { content: @gittip; } +.icon-sun:before { content: @sun; } +.icon-moon:before { content: @moon; } +.icon-archive:before { content: @archive; } +.icon-bug:before { content: @bug; } +.icon-vk:before { content: @vk; } +.icon-weibo:before { content: @weibo; } +.icon-renren:before { content: @renren; } diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less new file mode 100644 index 000000000..f7fdda590 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less @@ -0,0 +1,48 @@ +// Mixins +// -------------------------- + +.icon(@icon) { + .icon-FontAwesome(); + content: @icon; +} + +.icon-FontAwesome() { + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + text-decoration: inherit; + -webkit-font-smoothing: antialiased; + *margin-right: .3em; // fixes ie7 issues +} + +.border-radius(@radius) { + -webkit-border-radius: @radius; + -moz-border-radius: @radius; + border-radius: @radius; +} + +.icon-stack(@width: 2em, @height: 2em, @top-font-size: 1em, @base-font-size: 2em) { + .icon-stack { + position: relative; + display: inline-block; + width: @width; + height: @height; + line-height: @width; + vertical-align: -35%; + [class^="icon-"], + [class*=" icon-"] { + display: block; + text-align: center; + position: absolute; + width: 100%; + height: 100%; + font-size: @top-font-size; + line-height: inherit; + *line-height: @height; + } + .icon-stack-base { + font-size: @base-font-size; + *line-height: @height / @base-font-size; + } + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less new file mode 100644 index 000000000..8ccef8cf0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less @@ -0,0 +1,14 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}'); + src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'), + url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'), + url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'), + url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg'); +// src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less new file mode 100644 index 000000000..9d0879b0d --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less @@ -0,0 +1,735 @@ +// Variables +// -------------------------- + +@FontAwesomePath: "../font"; +//@FontAwesomePath: "//netdna.bootstrapcdn.com/font-awesome/3.2.1/font"; // for referencing Bootstrap CDN font files directly +@FontAwesomeVersion: "3.2.1"; +@borderColor: #eee; +@iconMuted: #eee; +@iconLight: #fff; +@iconDark: #333; +@icons-li-width: 30/14em; + + + @glass: "\f000"; + + @music: "\f001"; + + @search: "\f002"; + + @envelope-alt: "\f003"; + + @heart: "\f004"; + + @star: "\f005"; + + @star-empty: "\f006"; + + @user: "\f007"; + + @film: "\f008"; + + @th-large: "\f009"; + + @th: "\f00a"; + + @th-list: "\f00b"; + + @ok: "\f00c"; + + @remove: "\f00d"; + + @zoom-in: "\f00e"; + + @zoom-out: "\f010"; + + @off: "\f011"; + + @signal: "\f012"; + + @cog: "\f013"; + + @trash: "\f014"; + + @home: "\f015"; + + @file-alt: "\f016"; + + @time: "\f017"; + + @road: "\f018"; + + @download-alt: "\f019"; + + @download: "\f01a"; + + @upload: "\f01b"; + + @inbox: "\f01c"; + + @play-circle: "\f01d"; + + @repeat: "\f01e"; + + @refresh: "\f021"; + + @list-alt: "\f022"; + + @lock: "\f023"; + + @flag: "\f024"; + + @headphones: "\f025"; + + @volume-off: "\f026"; + + @volume-down: "\f027"; + + @volume-up: "\f028"; + + @qrcode: "\f029"; + + @barcode: "\f02a"; + + @tag: "\f02b"; + + @tags: "\f02c"; + + @book: "\f02d"; + + @bookmark: "\f02e"; + + @print: "\f02f"; + + @camera: "\f030"; + + @font: "\f031"; + + @bold: "\f032"; + + @italic: "\f033"; + + @text-height: "\f034"; + + @text-width: "\f035"; + + @align-left: "\f036"; + + @align-center: "\f037"; + + @align-right: "\f038"; + + @align-justify: "\f039"; + + @list: "\f03a"; + + @indent-left: "\f03b"; + + @indent-right: "\f03c"; + + @facetime-video: "\f03d"; + + @picture: "\f03e"; + + @pencil: "\f040"; + + @map-marker: "\f041"; + + @adjust: "\f042"; + + @tint: "\f043"; + + @edit: "\f044"; + + @share: "\f045"; + + @check: "\f046"; + + @move: "\f047"; + + @step-backward: "\f048"; + + @fast-backward: "\f049"; + + @backward: "\f04a"; + + @play: "\f04b"; + + @pause: "\f04c"; + + @stop: "\f04d"; + + @forward: "\f04e"; + + @fast-forward: "\f050"; + + @step-forward: "\f051"; + + @eject: "\f052"; + + @chevron-left: "\f053"; + + @chevron-right: "\f054"; + + @plus-sign: "\f055"; + + @minus-sign: "\f056"; + + @remove-sign: "\f057"; + + @ok-sign: "\f058"; + + @question-sign: "\f059"; + + @info-sign: "\f05a"; + + @screenshot: "\f05b"; + + @remove-circle: "\f05c"; + + @ok-circle: "\f05d"; + + @ban-circle: "\f05e"; + + @arrow-left: "\f060"; + + @arrow-right: "\f061"; + + @arrow-up: "\f062"; + + @arrow-down: "\f063"; + + @share-alt: "\f064"; + + @resize-full: "\f065"; + + @resize-small: "\f066"; + + @plus: "\f067"; + + @minus: "\f068"; + + @asterisk: "\f069"; + + @exclamation-sign: "\f06a"; + + @gift: "\f06b"; + + @leaf: "\f06c"; + + @fire: "\f06d"; + + @eye-open: "\f06e"; + + @eye-close: "\f070"; + + @warning-sign: "\f071"; + + @plane: "\f072"; + + @calendar: "\f073"; + + @random: "\f074"; + + @comment: "\f075"; + + @magnet: "\f076"; + + @chevron-up: "\f077"; + + @chevron-down: "\f078"; + + @retweet: "\f079"; + + @shopping-cart: "\f07a"; + + @folder-close: "\f07b"; + + @folder-open: "\f07c"; + + @resize-vertical: "\f07d"; + + @resize-horizontal: "\f07e"; + + @bar-chart: "\f080"; + + @twitter-sign: "\f081"; + + @facebook-sign: "\f082"; + + @camera-retro: "\f083"; + + @key: "\f084"; + + @cogs: "\f085"; + + @comments: "\f086"; + + @thumbs-up-alt: "\f087"; + + @thumbs-down-alt: "\f088"; + + @star-half: "\f089"; + + @heart-empty: "\f08a"; + + @signout: "\f08b"; + + @linkedin-sign: "\f08c"; + + @pushpin: "\f08d"; + + @external-link: "\f08e"; + + @signin: "\f090"; + + @trophy: "\f091"; + + @github-sign: "\f092"; + + @upload-alt: "\f093"; + + @lemon: "\f094"; + + @phone: "\f095"; + + @check-empty: "\f096"; + + @bookmark-empty: "\f097"; + + @phone-sign: "\f098"; + + @twitter: "\f099"; + + @facebook: "\f09a"; + + @github: "\f09b"; + + @unlock: "\f09c"; + + @credit-card: "\f09d"; + + @rss: "\f09e"; + + @hdd: "\f0a0"; + + @bullhorn: "\f0a1"; + + @bell: "\f0a2"; + + @certificate: "\f0a3"; + + @hand-right: "\f0a4"; + + @hand-left: "\f0a5"; + + @hand-up: "\f0a6"; + + @hand-down: "\f0a7"; + + @circle-arrow-left: "\f0a8"; + + @circle-arrow-right: "\f0a9"; + + @circle-arrow-up: "\f0aa"; + + @circle-arrow-down: "\f0ab"; + + @globe: "\f0ac"; + + @wrench: "\f0ad"; + + @tasks: "\f0ae"; + + @filter: "\f0b0"; + + @briefcase: "\f0b1"; + + @fullscreen: "\f0b2"; + + @group: "\f0c0"; + + @link: "\f0c1"; + + @cloud: "\f0c2"; + + @beaker: "\f0c3"; + + @cut: "\f0c4"; + + @copy: "\f0c5"; + + @paper-clip: "\f0c6"; + + @save: "\f0c7"; + + @sign-blank: "\f0c8"; + + @reorder: "\f0c9"; + + @list-ul: "\f0ca"; + + @list-ol: "\f0cb"; + + @strikethrough: "\f0cc"; + + @underline: "\f0cd"; + + @table: "\f0ce"; + + @magic: "\f0d0"; + + @truck: "\f0d1"; + + @pinterest: "\f0d2"; + + @pinterest-sign: "\f0d3"; + + @google-plus-sign: "\f0d4"; + + @google-plus: "\f0d5"; + + @money: "\f0d6"; + + @caret-down: "\f0d7"; + + @caret-up: "\f0d8"; + + @caret-left: "\f0d9"; + + @caret-right: "\f0da"; + + @columns: "\f0db"; + + @sort: "\f0dc"; + + @sort-down: "\f0dd"; + + @sort-up: "\f0de"; + + @envelope: "\f0e0"; + + @linkedin: "\f0e1"; + + @undo: "\f0e2"; + + @legal: "\f0e3"; + + @dashboard: "\f0e4"; + + @comment-alt: "\f0e5"; + + @comments-alt: "\f0e6"; + + @bolt: "\f0e7"; + + @sitemap: "\f0e8"; + + @umbrella: "\f0e9"; + + @paste: "\f0ea"; + + @lightbulb: "\f0eb"; + + @exchange: "\f0ec"; + + @cloud-download: "\f0ed"; + + @cloud-upload: "\f0ee"; + + @user-md: "\f0f0"; + + @stethoscope: "\f0f1"; + + @suitcase: "\f0f2"; + + @bell-alt: "\f0f3"; + + @coffee: "\f0f4"; + + @food: "\f0f5"; + + @file-text-alt: "\f0f6"; + + @building: "\f0f7"; + + @hospital: "\f0f8"; + + @ambulance: "\f0f9"; + + @medkit: "\f0fa"; + + @fighter-jet: "\f0fb"; + + @beer: "\f0fc"; + + @h-sign: "\f0fd"; + + @plus-sign-alt: "\f0fe"; + + @double-angle-left: "\f100"; + + @double-angle-right: "\f101"; + + @double-angle-up: "\f102"; + + @double-angle-down: "\f103"; + + @angle-left: "\f104"; + + @angle-right: "\f105"; + + @angle-up: "\f106"; + + @angle-down: "\f107"; + + @desktop: "\f108"; + + @laptop: "\f109"; + + @tablet: "\f10a"; + + @mobile-phone: "\f10b"; + + @circle-blank: "\f10c"; + + @quote-left: "\f10d"; + + @quote-right: "\f10e"; + + @spinner: "\f110"; + + @circle: "\f111"; + + @reply: "\f112"; + + @github-alt: "\f113"; + + @folder-close-alt: "\f114"; + + @folder-open-alt: "\f115"; + + @expand-alt: "\f116"; + + @collapse-alt: "\f117"; + + @smile: "\f118"; + + @frown: "\f119"; + + @meh: "\f11a"; + + @gamepad: "\f11b"; + + @keyboard: "\f11c"; + + @flag-alt: "\f11d"; + + @flag-checkered: "\f11e"; + + @terminal: "\f120"; + + @code: "\f121"; + + @reply-all: "\f122"; + + @mail-reply-all: "\f122"; + + @star-half-empty: "\f123"; + + @location-arrow: "\f124"; + + @crop: "\f125"; + + @code-fork: "\f126"; + + @unlink: "\f127"; + + @question: "\f128"; + + @info: "\f129"; + + @exclamation: "\f12a"; + + @superscript: "\f12b"; + + @subscript: "\f12c"; + + @eraser: "\f12d"; + + @puzzle-piece: "\f12e"; + + @microphone: "\f130"; + + @microphone-off: "\f131"; + + @shield: "\f132"; + + @calendar-empty: "\f133"; + + @fire-extinguisher: "\f134"; + + @rocket: "\f135"; + + @maxcdn: "\f136"; + + @chevron-sign-left: "\f137"; + + @chevron-sign-right: "\f138"; + + @chevron-sign-up: "\f139"; + + @chevron-sign-down: "\f13a"; + + @html5: "\f13b"; + + @css3: "\f13c"; + + @anchor: "\f13d"; + + @unlock-alt: "\f13e"; + + @bullseye: "\f140"; + + @ellipsis-horizontal: "\f141"; + + @ellipsis-vertical: "\f142"; + + @rss-sign: "\f143"; + + @play-sign: "\f144"; + + @ticket: "\f145"; + + @minus-sign-alt: "\f146"; + + @check-minus: "\f147"; + + @level-up: "\f148"; + + @level-down: "\f149"; + + @check-sign: "\f14a"; + + @edit-sign: "\f14b"; + + @external-link-sign: "\f14c"; + + @share-sign: "\f14d"; + + @compass: "\f14e"; + + @collapse: "\f150"; + + @collapse-top: "\f151"; + + @expand: "\f152"; + + @eur: "\f153"; + + @gbp: "\f154"; + + @usd: "\f155"; + + @inr: "\f156"; + + @jpy: "\f157"; + + @cny: "\f158"; + + @krw: "\f159"; + + @btc: "\f15a"; + + @file: "\f15b"; + + @file-text: "\f15c"; + + @sort-by-alphabet: "\f15d"; + + @sort-by-alphabet-alt: "\f15e"; + + @sort-by-attributes: "\f160"; + + @sort-by-attributes-alt: "\f161"; + + @sort-by-order: "\f162"; + + @sort-by-order-alt: "\f163"; + + @thumbs-up: "\f164"; + + @thumbs-down: "\f165"; + + @youtube-sign: "\f166"; + + @youtube: "\f167"; + + @xing: "\f168"; + + @xing-sign: "\f169"; + + @youtube-play: "\f16a"; + + @dropbox: "\f16b"; + + @stackexchange: "\f16c"; + + @instagram: "\f16d"; + + @flickr: "\f16e"; + + @adn: "\f170"; + + @bitbucket: "\f171"; + + @bitbucket-sign: "\f172"; + + @tumblr: "\f173"; + + @tumblr-sign: "\f174"; + + @long-arrow-down: "\f175"; + + @long-arrow-up: "\f176"; + + @long-arrow-left: "\f177"; + + @long-arrow-right: "\f178"; + + @apple: "\f179"; + + @windows: "\f17a"; + + @android: "\f17b"; + + @linux: "\f17c"; + + @dribbble: "\f17d"; + + @skype: "\f17e"; + + @foursquare: "\f180"; + + @trello: "\f181"; + + @female: "\f182"; + + @male: "\f183"; + + @gittip: "\f184"; + + @sun: "\f185"; + + @moon: "\f186"; + + @archive: "\f187"; + + @bug: "\f188"; + + @vk: "\f189"; + + @weibo: "\f18a"; + + @renren: "\f18b"; + diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss new file mode 100644 index 000000000..837d2df65 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss @@ -0,0 +1,84 @@ +/* BOOTSTRAP SPECIFIC CLASSES + * -------------------------- */ + +/* Bootstrap 2.0 sprites.less reset */ +[class^="icon-"], +[class*=" icon-"] { + display: inline; + width: auto; + height: auto; + line-height: normal; + vertical-align: baseline; + background-image: none; + background-position: 0% 0%; + background-repeat: repeat; + margin-top: 0; +} + +/* more sprites.less reset */ +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"] { + background-image: none; +} + + +/* keeps Bootstrap styles with and without icons the same */ +.btn, .nav { + [class^="icon-"], + [class*=" icon-"] { + // display: inline; + &.icon-large { line-height: .9em; } + &.icon-spin { display: inline-block; } + } +} +.nav-tabs, .nav-pills { + [class^="icon-"], + [class*=" icon-"] { + &, &.icon-large { line-height: .9em; } + } +} +.btn { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .18em; } + } + &.icon-spin.icon-large { line-height: .8em; } + } +} +.btn.btn-small { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .25em; } + } + } +} +.btn.btn-large { + [class^="icon-"], + [class*=" icon-"] { + margin-top: 0; // overrides bootstrap default + &.pull-left, &.pull-right { + &.icon-2x { margin-top: .05em; } + } + &.pull-left.icon-2x { margin-right: .2em; } + &.pull-right.icon-2x { margin-left: .2em; } + } +} + +/* Fixes alignment in nav lists */ +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + line-height: inherit; +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss new file mode 100644 index 000000000..0189c73df --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss @@ -0,0 +1,129 @@ +/* FONT AWESOME CORE + * -------------------------- */ + +[class^="icon-"], +[class*=" icon-"] { + @include icon-FontAwesome(); +} + +[class^="icon-"]:before, +[class*=" icon-"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} + +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: -10%; + font-size: (4em/3); +} + +/* makes sure icons active on rollover in links */ +a { + [class^="icon-"], + [class*=" icon-"] { + display: inline; + } +} + +/* increased font size for icon-large */ +[class^="icon-"], +[class*=" icon-"] { + &.icon-fixed-width { + display: inline-block; + width: (16em/14); + text-align: right; + padding-right: (4em/14); + &.icon-large { + width: (20em/14); + } + } +} + +.icons-ul { + margin-left: $icons-li-width; + list-style-type: none; + + > li { position: relative; } + + .icon-li { + position: absolute; + left: -$icons-li-width; + width: $icons-li-width; + text-align: center; + line-height: inherit; + } +} + +// allows usage of the hide class directly on font awesome icons +[class^="icon-"], +[class*=" icon-"] { + &.hide { + display: none; + } +} + +.icon-muted { color: $iconMuted; } +.icon-light { color: $iconLight; } +.icon-dark { color: $iconDark; } + +// Icon Borders +// ------------------------- + +.icon-border { + border: solid 1px $borderColor; + padding: .2em .25em .15em; + @include border-radius(3px); +} + +// Icon Sizes +// ------------------------- + +.icon-2x { + font-size: 2em; + &.icon-border { + border-width: 2px; + @include border-radius(4px); + } +} +.icon-3x { + font-size: 3em; + &.icon-border { + border-width: 3px; + @include border-radius(5px); + } +} +.icon-4x { + font-size: 4em; + &.icon-border { + border-width: 4px; + @include border-radius(6px); + } +} + +.icon-5x { + font-size: 5em; + &.icon-border { + border-width: 5px; + @include border-radius(7px); + } +} + + +// Floats & Margins +// ------------------------- + +// Quick floats +.pull-right { float: right; } +.pull-left { float: left; } + +[class^="icon-"], +[class*=" icon-"] { + &.pull-left { + margin-right: .3em; + } + &.pull-right { + margin-left: .3em; + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss new file mode 100644 index 000000000..9a25845d8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss @@ -0,0 +1,93 @@ +/* EXTRAS + * -------------------------- */ + +/* Stacked and layered icon */ +@include icon-stack(); + +/* Animated rotating icon */ +.icon-spin { + display: inline-block; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} + +/* Prevent stack and spinners from being taken inline when inside a link */ +a .icon-stack, +a .icon-spin { + display: inline-block; + text-decoration: none; +} + +@-moz-keyframes spin { + 0% { -moz-transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); } +} +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); } +} +@-o-keyframes spin { + 0% { -o-transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); } +} +@-ms-keyframes spin { + 0% { -ms-transform: rotate(0deg); } + 100% { -ms-transform: rotate(359deg); } +} +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } +} + +/* Icon rotations and mirroring */ +.icon-rotate-90:before { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +.icon-rotate-180:before { + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); +} + +.icon-rotate-270:before { + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +.icon-flip-horizontal:before { + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.icon-flip-vertical:before { + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} + +/* ensure rotation occurs inside anchor tags */ +a { + .icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical { + &:before { display: inline-block; } + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss new file mode 100644 index 000000000..eefda0c9e --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss @@ -0,0 +1,381 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + * readers do not read off random characters that represent icons */ + +.icon-glass:before { content: $glass; } +.icon-music:before { content: $music; } +.icon-search:before { content: $search; } +.icon-envelope-alt:before { content: $envelope-alt; } +.icon-heart:before { content: $heart; } +.icon-star:before { content: $star; } +.icon-star-empty:before { content: $star-empty; } +.icon-user:before { content: $user; } +.icon-film:before { content: $film; } +.icon-th-large:before { content: $th-large; } +.icon-th:before { content: $th; } +.icon-th-list:before { content: $th-list; } +.icon-ok:before { content: $ok; } +.icon-remove:before { content: $remove; } +.icon-zoom-in:before { content: $zoom-in; } +.icon-zoom-out:before { content: $zoom-out; } +.icon-power-off:before, +.icon-off:before { content: $off; } +.icon-signal:before { content: $signal; } +.icon-gear:before, +.icon-cog:before { content: $cog; } +.icon-trash:before { content: $trash; } +.icon-home:before { content: $home; } +.icon-file-alt:before { content: $file-alt; } +.icon-time:before { content: $time; } +.icon-road:before { content: $road; } +.icon-download-alt:before { content: $download-alt; } +.icon-download:before { content: $download; } +.icon-upload:before { content: $upload; } +.icon-inbox:before { content: $inbox; } +.icon-play-circle:before { content: $play-circle; } +.icon-rotate-right:before, +.icon-repeat:before { content: $repeat; } +.icon-refresh:before { content: $refresh; } +.icon-list-alt:before { content: $list-alt; } +.icon-lock:before { content: $lock; } +.icon-flag:before { content: $flag; } +.icon-headphones:before { content: $headphones; } +.icon-volume-off:before { content: $volume-off; } +.icon-volume-down:before { content: $volume-down; } +.icon-volume-up:before { content: $volume-up; } +.icon-qrcode:before { content: $qrcode; } +.icon-barcode:before { content: $barcode; } +.icon-tag:before { content: $tag; } +.icon-tags:before { content: $tags; } +.icon-book:before { content: $book; } +.icon-bookmark:before { content: $bookmark; } +.icon-print:before { content: $print; } +.icon-camera:before { content: $camera; } +.icon-font:before { content: $font; } +.icon-bold:before { content: $bold; } +.icon-italic:before { content: $italic; } +.icon-text-height:before { content: $text-height; } +.icon-text-width:before { content: $text-width; } +.icon-align-left:before { content: $align-left; } +.icon-align-center:before { content: $align-center; } +.icon-align-right:before { content: $align-right; } +.icon-align-justify:before { content: $align-justify; } +.icon-list:before { content: $list; } +.icon-indent-left:before { content: $indent-left; } +.icon-indent-right:before { content: $indent-right; } +.icon-facetime-video:before { content: $facetime-video; } +.icon-picture:before { content: $picture; } +.icon-pencil:before { content: $pencil; } +.icon-map-marker:before { content: $map-marker; } +.icon-adjust:before { content: $adjust; } +.icon-tint:before { content: $tint; } +.icon-edit:before { content: $edit; } +.icon-share:before { content: $share; } +.icon-check:before { content: $check; } +.icon-move:before { content: $move; } +.icon-step-backward:before { content: $step-backward; } +.icon-fast-backward:before { content: $fast-backward; } +.icon-backward:before { content: $backward; } +.icon-play:before { content: $play; } +.icon-pause:before { content: $pause; } +.icon-stop:before { content: $stop; } +.icon-forward:before { content: $forward; } +.icon-fast-forward:before { content: $fast-forward; } +.icon-step-forward:before { content: $step-forward; } +.icon-eject:before { content: $eject; } +.icon-chevron-left:before { content: $chevron-left; } +.icon-chevron-right:before { content: $chevron-right; } +.icon-plus-sign:before { content: $plus-sign; } +.icon-minus-sign:before { content: $minus-sign; } +.icon-remove-sign:before { content: $remove-sign; } +.icon-ok-sign:before { content: $ok-sign; } +.icon-question-sign:before { content: $question-sign; } +.icon-info-sign:before { content: $info-sign; } +.icon-screenshot:before { content: $screenshot; } +.icon-remove-circle:before { content: $remove-circle; } +.icon-ok-circle:before { content: $ok-circle; } +.icon-ban-circle:before { content: $ban-circle; } +.icon-arrow-left:before { content: $arrow-left; } +.icon-arrow-right:before { content: $arrow-right; } +.icon-arrow-up:before { content: $arrow-up; } +.icon-arrow-down:before { content: $arrow-down; } +.icon-mail-forward:before, +.icon-share-alt:before { content: $share-alt; } +.icon-resize-full:before { content: $resize-full; } +.icon-resize-small:before { content: $resize-small; } +.icon-plus:before { content: $plus; } +.icon-minus:before { content: $minus; } +.icon-asterisk:before { content: $asterisk; } +.icon-exclamation-sign:before { content: $exclamation-sign; } +.icon-gift:before { content: $gift; } +.icon-leaf:before { content: $leaf; } +.icon-fire:before { content: $fire; } +.icon-eye-open:before { content: $eye-open; } +.icon-eye-close:before { content: $eye-close; } +.icon-warning-sign:before { content: $warning-sign; } +.icon-plane:before { content: $plane; } +.icon-calendar:before { content: $calendar; } +.icon-random:before { content: $random; } +.icon-comment:before { content: $comment; } +.icon-magnet:before { content: $magnet; } +.icon-chevron-up:before { content: $chevron-up; } +.icon-chevron-down:before { content: $chevron-down; } +.icon-retweet:before { content: $retweet; } +.icon-shopping-cart:before { content: $shopping-cart; } +.icon-folder-close:before { content: $folder-close; } +.icon-folder-open:before { content: $folder-open; } +.icon-resize-vertical:before { content: $resize-vertical; } +.icon-resize-horizontal:before { content: $resize-horizontal; } +.icon-bar-chart:before { content: $bar-chart; } +.icon-twitter-sign:before { content: $twitter-sign; } +.icon-facebook-sign:before { content: $facebook-sign; } +.icon-camera-retro:before { content: $camera-retro; } +.icon-key:before { content: $key; } +.icon-gears:before, +.icon-cogs:before { content: $cogs; } +.icon-comments:before { content: $comments; } +.icon-thumbs-up-alt:before { content: $thumbs-up-alt; } +.icon-thumbs-down-alt:before { content: $thumbs-down-alt; } +.icon-star-half:before { content: $star-half; } +.icon-heart-empty:before { content: $heart-empty; } +.icon-signout:before { content: $signout; } +.icon-linkedin-sign:before { content: $linkedin-sign; } +.icon-pushpin:before { content: $pushpin; } +.icon-external-link:before { content: $external-link; } +.icon-signin:before { content: $signin; } +.icon-trophy:before { content: $trophy; } +.icon-github-sign:before { content: $github-sign; } +.icon-upload-alt:before { content: $upload-alt; } +.icon-lemon:before { content: $lemon; } +.icon-phone:before { content: $phone; } +.icon-unchecked:before, +.icon-check-empty:before { content: $check-empty; } +.icon-bookmark-empty:before { content: $bookmark-empty; } +.icon-phone-sign:before { content: $phone-sign; } +.icon-twitter:before { content: $twitter; } +.icon-facebook:before { content: $facebook; } +.icon-github:before { content: $github; } +.icon-unlock:before { content: $unlock; } +.icon-credit-card:before { content: $credit-card; } +.icon-rss:before { content: $rss; } +.icon-hdd:before { content: $hdd; } +.icon-bullhorn:before { content: $bullhorn; } +.icon-bell:before { content: $bell; } +.icon-certificate:before { content: $certificate; } +.icon-hand-right:before { content: $hand-right; } +.icon-hand-left:before { content: $hand-left; } +.icon-hand-up:before { content: $hand-up; } +.icon-hand-down:before { content: $hand-down; } +.icon-circle-arrow-left:before { content: $circle-arrow-left; } +.icon-circle-arrow-right:before { content: $circle-arrow-right; } +.icon-circle-arrow-up:before { content: $circle-arrow-up; } +.icon-circle-arrow-down:before { content: $circle-arrow-down; } +.icon-globe:before { content: $globe; } +.icon-wrench:before { content: $wrench; } +.icon-tasks:before { content: $tasks; } +.icon-filter:before { content: $filter; } +.icon-briefcase:before { content: $briefcase; } +.icon-fullscreen:before { content: $fullscreen; } +.icon-group:before { content: $group; } +.icon-link:before { content: $link; } +.icon-cloud:before { content: $cloud; } +.icon-beaker:before { content: $beaker; } +.icon-cut:before { content: $cut; } +.icon-copy:before { content: $copy; } +.icon-paperclip:before, +.icon-paper-clip:before { content: $paper-clip; } +.icon-save:before { content: $save; } +.icon-sign-blank:before { content: $sign-blank; } +.icon-reorder:before { content: $reorder; } +.icon-list-ul:before { content: $list-ul; } +.icon-list-ol:before { content: $list-ol; } +.icon-strikethrough:before { content: $strikethrough; } +.icon-underline:before { content: $underline; } +.icon-table:before { content: $table; } +.icon-magic:before { content: $magic; } +.icon-truck:before { content: $truck; } +.icon-pinterest:before { content: $pinterest; } +.icon-pinterest-sign:before { content: $pinterest-sign; } +.icon-google-plus-sign:before { content: $google-plus-sign; } +.icon-google-plus:before { content: $google-plus; } +.icon-money:before { content: $money; } +.icon-caret-down:before { content: $caret-down; } +.icon-caret-up:before { content: $caret-up; } +.icon-caret-left:before { content: $caret-left; } +.icon-caret-right:before { content: $caret-right; } +.icon-columns:before { content: $columns; } +.icon-sort:before { content: $sort; } +.icon-sort-down:before { content: $sort-down; } +.icon-sort-up:before { content: $sort-up; } +.icon-envelope:before { content: $envelope; } +.icon-linkedin:before { content: $linkedin; } +.icon-rotate-left:before, +.icon-undo:before { content: $undo; } +.icon-legal:before { content: $legal; } +.icon-dashboard:before { content: $dashboard; } +.icon-comment-alt:before { content: $comment-alt; } +.icon-comments-alt:before { content: $comments-alt; } +.icon-bolt:before { content: $bolt; } +.icon-sitemap:before { content: $sitemap; } +.icon-umbrella:before { content: $umbrella; } +.icon-paste:before { content: $paste; } +.icon-lightbulb:before { content: $lightbulb; } +.icon-exchange:before { content: $exchange; } +.icon-cloud-download:before { content: $cloud-download; } +.icon-cloud-upload:before { content: $cloud-upload; } +.icon-user-md:before { content: $user-md; } +.icon-stethoscope:before { content: $stethoscope; } +.icon-suitcase:before { content: $suitcase; } +.icon-bell-alt:before { content: $bell-alt; } +.icon-coffee:before { content: $coffee; } +.icon-food:before { content: $food; } +.icon-file-text-alt:before { content: $file-text-alt; } +.icon-building:before { content: $building; } +.icon-hospital:before { content: $hospital; } +.icon-ambulance:before { content: $ambulance; } +.icon-medkit:before { content: $medkit; } +.icon-fighter-jet:before { content: $fighter-jet; } +.icon-beer:before { content: $beer; } +.icon-h-sign:before { content: $h-sign; } +.icon-plus-sign-alt:before { content: $plus-sign-alt; } +.icon-double-angle-left:before { content: $double-angle-left; } +.icon-double-angle-right:before { content: $double-angle-right; } +.icon-double-angle-up:before { content: $double-angle-up; } +.icon-double-angle-down:before { content: $double-angle-down; } +.icon-angle-left:before { content: $angle-left; } +.icon-angle-right:before { content: $angle-right; } +.icon-angle-up:before { content: $angle-up; } +.icon-angle-down:before { content: $angle-down; } +.icon-desktop:before { content: $desktop; } +.icon-laptop:before { content: $laptop; } +.icon-tablet:before { content: $tablet; } +.icon-mobile-phone:before { content: $mobile-phone; } +.icon-circle-blank:before { content: $circle-blank; } +.icon-quote-left:before { content: $quote-left; } +.icon-quote-right:before { content: $quote-right; } +.icon-spinner:before { content: $spinner; } +.icon-circle:before { content: $circle; } +.icon-mail-reply:before, +.icon-reply:before { content: $reply; } +.icon-github-alt:before { content: $github-alt; } +.icon-folder-close-alt:before { content: $folder-close-alt; } +.icon-folder-open-alt:before { content: $folder-open-alt; } +.icon-expand-alt:before { content: $expand-alt; } +.icon-collapse-alt:before { content: $collapse-alt; } +.icon-smile:before { content: $smile; } +.icon-frown:before { content: $frown; } +.icon-meh:before { content: $meh; } +.icon-gamepad:before { content: $gamepad; } +.icon-keyboard:before { content: $keyboard; } +.icon-flag-alt:before { content: $flag-alt; } +.icon-flag-checkered:before { content: $flag-checkered; } +.icon-terminal:before { content: $terminal; } +.icon-code:before { content: $code; } +.icon-reply-all:before { content: $reply-all; } +.icon-mail-reply-all:before { content: $mail-reply-all; } +.icon-star-half-full:before, +.icon-star-half-empty:before { content: $star-half-empty; } +.icon-location-arrow:before { content: $location-arrow; } +.icon-crop:before { content: $crop; } +.icon-code-fork:before { content: $code-fork; } +.icon-unlink:before { content: $unlink; } +.icon-question:before { content: $question; } +.icon-info:before { content: $info; } +.icon-exclamation:before { content: $exclamation; } +.icon-superscript:before { content: $superscript; } +.icon-subscript:before { content: $subscript; } +.icon-eraser:before { content: $eraser; } +.icon-puzzle-piece:before { content: $puzzle-piece; } +.icon-microphone:before { content: $microphone; } +.icon-microphone-off:before { content: $microphone-off; } +.icon-shield:before { content: $shield; } +.icon-calendar-empty:before { content: $calendar-empty; } +.icon-fire-extinguisher:before { content: $fire-extinguisher; } +.icon-rocket:before { content: $rocket; } +.icon-maxcdn:before { content: $maxcdn; } +.icon-chevron-sign-left:before { content: $chevron-sign-left; } +.icon-chevron-sign-right:before { content: $chevron-sign-right; } +.icon-chevron-sign-up:before { content: $chevron-sign-up; } +.icon-chevron-sign-down:before { content: $chevron-sign-down; } +.icon-html5:before { content: $html5; } +.icon-css3:before { content: $css3; } +.icon-anchor:before { content: $anchor; } +.icon-unlock-alt:before { content: $unlock-alt; } +.icon-bullseye:before { content: $bullseye; } +.icon-ellipsis-horizontal:before { content: $ellipsis-horizontal; } +.icon-ellipsis-vertical:before { content: $ellipsis-vertical; } +.icon-rss-sign:before { content: $rss-sign; } +.icon-play-sign:before { content: $play-sign; } +.icon-ticket:before { content: $ticket; } +.icon-minus-sign-alt:before { content: $minus-sign-alt; } +.icon-check-minus:before { content: $check-minus; } +.icon-level-up:before { content: $level-up; } +.icon-level-down:before { content: $level-down; } +.icon-check-sign:before { content: $check-sign; } +.icon-edit-sign:before { content: $edit-sign; } +.icon-external-link-sign:before { content: $external-link-sign; } +.icon-share-sign:before { content: $share-sign; } +.icon-compass:before { content: $compass; } +.icon-collapse:before { content: $collapse; } +.icon-collapse-top:before { content: $collapse-top; } +.icon-expand:before { content: $expand; } +.icon-euro:before, +.icon-eur:before { content: $eur; } +.icon-gbp:before { content: $gbp; } +.icon-dollar:before, +.icon-usd:before { content: $usd; } +.icon-rupee:before, +.icon-inr:before { content: $inr; } +.icon-yen:before, +.icon-jpy:before { content: $jpy; } +.icon-renminbi:before, +.icon-cny:before { content: $cny; } +.icon-won:before, +.icon-krw:before { content: $krw; } +.icon-bitcoin:before, +.icon-btc:before { content: $btc; } +.icon-file:before { content: $file; } +.icon-file-text:before { content: $file-text; } +.icon-sort-by-alphabet:before { content: $sort-by-alphabet; } +.icon-sort-by-alphabet-alt:before { content: $sort-by-alphabet-alt; } +.icon-sort-by-attributes:before { content: $sort-by-attributes; } +.icon-sort-by-attributes-alt:before { content: $sort-by-attributes-alt; } +.icon-sort-by-order:before { content: $sort-by-order; } +.icon-sort-by-order-alt:before { content: $sort-by-order-alt; } +.icon-thumbs-up:before { content: $thumbs-up; } +.icon-thumbs-down:before { content: $thumbs-down; } +.icon-youtube-sign:before { content: $youtube-sign; } +.icon-youtube:before { content: $youtube; } +.icon-xing:before { content: $xing; } +.icon-xing-sign:before { content: $xing-sign; } +.icon-youtube-play:before { content: $youtube-play; } +.icon-dropbox:before { content: $dropbox; } +.icon-stackexchange:before { content: $stackexchange; } +.icon-instagram:before { content: $instagram; } +.icon-flickr:before { content: $flickr; } +.icon-adn:before { content: $adn; } +.icon-bitbucket:before { content: $bitbucket; } +.icon-bitbucket-sign:before { content: $bitbucket-sign; } +.icon-tumblr:before { content: $tumblr; } +.icon-tumblr-sign:before { content: $tumblr-sign; } +.icon-long-arrow-down:before { content: $long-arrow-down; } +.icon-long-arrow-up:before { content: $long-arrow-up; } +.icon-long-arrow-left:before { content: $long-arrow-left; } +.icon-long-arrow-right:before { content: $long-arrow-right; } +.icon-apple:before { content: $apple; } +.icon-windows:before { content: $windows; } +.icon-android:before { content: $android; } +.icon-linux:before { content: $linux; } +.icon-dribbble:before { content: $dribbble; } +.icon-skype:before { content: $skype; } +.icon-foursquare:before { content: $foursquare; } +.icon-trello:before { content: $trello; } +.icon-female:before { content: $female; } +.icon-male:before { content: $male; } +.icon-gittip:before { content: $gittip; } +.icon-sun:before { content: $sun; } +.icon-moon:before { content: $moon; } +.icon-archive:before { content: $archive; } +.icon-bug:before { content: $bug; } +.icon-vk:before { content: $vk; } +.icon-weibo:before { content: $weibo; } +.icon-renren:before { content: $renren; } diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss new file mode 100644 index 000000000..ca9c5931b --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss @@ -0,0 +1,48 @@ +// Mixins +// -------------------------- + +@mixin icon($icon) { + @include icon-FontAwesome(); + content: $icon; +} + +@mixin icon-FontAwesome() { + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + text-decoration: inherit; + -webkit-font-smoothing: antialiased; + *margin-right: .3em; // fixes ie7 issues +} + +@mixin border-radius($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + border-radius: $radius; +} + +@mixin icon-stack($width: 2em, $height: 2em, $top-font-size: 1em, $base-font-size: 2em) { + .icon-stack { + position: relative; + display: inline-block; + width: $width; + height: $height; + line-height: $width; + vertical-align: -35%; + [class^="icon-"], + [class*=" icon-"] { + display: block; + text-align: center; + position: absolute; + width: 100%; + height: 100%; + font-size: $top-font-size; + line-height: inherit; + *line-height: $height; + } + .icon-stack-base { + font-size: $base-font-size; + *line-height: #{$height / $base-font-size}em; + } + } +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss new file mode 100644 index 000000000..bb3f36b70 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss @@ -0,0 +1,14 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: 'FontAwesome'; + src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?v=#{$FontAwesomeVersion}'); + src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=#{$FontAwesomeVersion}') format('embedded-opentype'), + url('#{$FontAwesomePath}/fontawesome-webfont.woff?v=#{$FontAwesomeVersion}') format('woff'), + url('#{$FontAwesomePath}/fontawesome-webfont.ttf?v=#{$FontAwesomeVersion}') format('truetype'), + url('#{$FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=#{$FontAwesomeVersion}') format('svg'); +// src: url('#{$FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts + font-weight: normal; + font-style: normal; +} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss new file mode 100644 index 000000000..7d6bbc5b1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss @@ -0,0 +1,734 @@ +// Variables +// -------------------------- + +$FontAwesomePath: "../font" !default; +$FontAwesomeVersion: "3.2.1" !default; +$borderColor: #eeeeee !default; +$iconMuted: #eeeeee !default; +$iconLight: white !default; +$iconDark: #333333 !default; +$icons-li-width: (30em/14); + + +$glass: "\f000"; + +$music: "\f001"; + +$search: "\f002"; + +$envelope-alt: "\f003"; + +$heart: "\f004"; + +$star: "\f005"; + +$star-empty: "\f006"; + +$user: "\f007"; + +$film: "\f008"; + +$th-large: "\f009"; + +$th: "\f00a"; + +$th-list: "\f00b"; + +$ok: "\f00c"; + +$remove: "\f00d"; + +$zoom-in: "\f00e"; + +$zoom-out: "\f010"; + +$off: "\f011"; + +$signal: "\f012"; + +$cog: "\f013"; + +$trash: "\f014"; + +$home: "\f015"; + +$file-alt: "\f016"; + +$time: "\f017"; + +$road: "\f018"; + +$download-alt: "\f019"; + +$download: "\f01a"; + +$upload: "\f01b"; + +$inbox: "\f01c"; + +$play-circle: "\f01d"; + +$repeat: "\f01e"; + +$refresh: "\f021"; + +$list-alt: "\f022"; + +$lock: "\f023"; + +$flag: "\f024"; + +$headphones: "\f025"; + +$volume-off: "\f026"; + +$volume-down: "\f027"; + +$volume-up: "\f028"; + +$qrcode: "\f029"; + +$barcode: "\f02a"; + +$tag: "\f02b"; + +$tags: "\f02c"; + +$book: "\f02d"; + +$bookmark: "\f02e"; + +$print: "\f02f"; + +$camera: "\f030"; + +$font: "\f031"; + +$bold: "\f032"; + +$italic: "\f033"; + +$text-height: "\f034"; + +$text-width: "\f035"; + +$align-left: "\f036"; + +$align-center: "\f037"; + +$align-right: "\f038"; + +$align-justify: "\f039"; + +$list: "\f03a"; + +$indent-left: "\f03b"; + +$indent-right: "\f03c"; + +$facetime-video: "\f03d"; + +$picture: "\f03e"; + +$pencil: "\f040"; + +$map-marker: "\f041"; + +$adjust: "\f042"; + +$tint: "\f043"; + +$edit: "\f044"; + +$share: "\f045"; + +$check: "\f046"; + +$move: "\f047"; + +$step-backward: "\f048"; + +$fast-backward: "\f049"; + +$backward: "\f04a"; + +$play: "\f04b"; + +$pause: "\f04c"; + +$stop: "\f04d"; + +$forward: "\f04e"; + +$fast-forward: "\f050"; + +$step-forward: "\f051"; + +$eject: "\f052"; + +$chevron-left: "\f053"; + +$chevron-right: "\f054"; + +$plus-sign: "\f055"; + +$minus-sign: "\f056"; + +$remove-sign: "\f057"; + +$ok-sign: "\f058"; + +$question-sign: "\f059"; + +$info-sign: "\f05a"; + +$screenshot: "\f05b"; + +$remove-circle: "\f05c"; + +$ok-circle: "\f05d"; + +$ban-circle: "\f05e"; + +$arrow-left: "\f060"; + +$arrow-right: "\f061"; + +$arrow-up: "\f062"; + +$arrow-down: "\f063"; + +$share-alt: "\f064"; + +$resize-full: "\f065"; + +$resize-small: "\f066"; + +$plus: "\f067"; + +$minus: "\f068"; + +$asterisk: "\f069"; + +$exclamation-sign: "\f06a"; + +$gift: "\f06b"; + +$leaf: "\f06c"; + +$fire: "\f06d"; + +$eye-open: "\f06e"; + +$eye-close: "\f070"; + +$warning-sign: "\f071"; + +$plane: "\f072"; + +$calendar: "\f073"; + +$random: "\f074"; + +$comment: "\f075"; + +$magnet: "\f076"; + +$chevron-up: "\f077"; + +$chevron-down: "\f078"; + +$retweet: "\f079"; + +$shopping-cart: "\f07a"; + +$folder-close: "\f07b"; + +$folder-open: "\f07c"; + +$resize-vertical: "\f07d"; + +$resize-horizontal: "\f07e"; + +$bar-chart: "\f080"; + +$twitter-sign: "\f081"; + +$facebook-sign: "\f082"; + +$camera-retro: "\f083"; + +$key: "\f084"; + +$cogs: "\f085"; + +$comments: "\f086"; + +$thumbs-up-alt: "\f087"; + +$thumbs-down-alt: "\f088"; + +$star-half: "\f089"; + +$heart-empty: "\f08a"; + +$signout: "\f08b"; + +$linkedin-sign: "\f08c"; + +$pushpin: "\f08d"; + +$external-link: "\f08e"; + +$signin: "\f090"; + +$trophy: "\f091"; + +$github-sign: "\f092"; + +$upload-alt: "\f093"; + +$lemon: "\f094"; + +$phone: "\f095"; + +$check-empty: "\f096"; + +$bookmark-empty: "\f097"; + +$phone-sign: "\f098"; + +$twitter: "\f099"; + +$facebook: "\f09a"; + +$github: "\f09b"; + +$unlock: "\f09c"; + +$credit-card: "\f09d"; + +$rss: "\f09e"; + +$hdd: "\f0a0"; + +$bullhorn: "\f0a1"; + +$bell: "\f0a2"; + +$certificate: "\f0a3"; + +$hand-right: "\f0a4"; + +$hand-left: "\f0a5"; + +$hand-up: "\f0a6"; + +$hand-down: "\f0a7"; + +$circle-arrow-left: "\f0a8"; + +$circle-arrow-right: "\f0a9"; + +$circle-arrow-up: "\f0aa"; + +$circle-arrow-down: "\f0ab"; + +$globe: "\f0ac"; + +$wrench: "\f0ad"; + +$tasks: "\f0ae"; + +$filter: "\f0b0"; + +$briefcase: "\f0b1"; + +$fullscreen: "\f0b2"; + +$group: "\f0c0"; + +$link: "\f0c1"; + +$cloud: "\f0c2"; + +$beaker: "\f0c3"; + +$cut: "\f0c4"; + +$copy: "\f0c5"; + +$paper-clip: "\f0c6"; + +$save: "\f0c7"; + +$sign-blank: "\f0c8"; + +$reorder: "\f0c9"; + +$list-ul: "\f0ca"; + +$list-ol: "\f0cb"; + +$strikethrough: "\f0cc"; + +$underline: "\f0cd"; + +$table: "\f0ce"; + +$magic: "\f0d0"; + +$truck: "\f0d1"; + +$pinterest: "\f0d2"; + +$pinterest-sign: "\f0d3"; + +$google-plus-sign: "\f0d4"; + +$google-plus: "\f0d5"; + +$money: "\f0d6"; + +$caret-down: "\f0d7"; + +$caret-up: "\f0d8"; + +$caret-left: "\f0d9"; + +$caret-right: "\f0da"; + +$columns: "\f0db"; + +$sort: "\f0dc"; + +$sort-down: "\f0dd"; + +$sort-up: "\f0de"; + +$envelope: "\f0e0"; + +$linkedin: "\f0e1"; + +$undo: "\f0e2"; + +$legal: "\f0e3"; + +$dashboard: "\f0e4"; + +$comment-alt: "\f0e5"; + +$comments-alt: "\f0e6"; + +$bolt: "\f0e7"; + +$sitemap: "\f0e8"; + +$umbrella: "\f0e9"; + +$paste: "\f0ea"; + +$lightbulb: "\f0eb"; + +$exchange: "\f0ec"; + +$cloud-download: "\f0ed"; + +$cloud-upload: "\f0ee"; + +$user-md: "\f0f0"; + +$stethoscope: "\f0f1"; + +$suitcase: "\f0f2"; + +$bell-alt: "\f0f3"; + +$coffee: "\f0f4"; + +$food: "\f0f5"; + +$file-text-alt: "\f0f6"; + +$building: "\f0f7"; + +$hospital: "\f0f8"; + +$ambulance: "\f0f9"; + +$medkit: "\f0fa"; + +$fighter-jet: "\f0fb"; + +$beer: "\f0fc"; + +$h-sign: "\f0fd"; + +$plus-sign-alt: "\f0fe"; + +$double-angle-left: "\f100"; + +$double-angle-right: "\f101"; + +$double-angle-up: "\f102"; + +$double-angle-down: "\f103"; + +$angle-left: "\f104"; + +$angle-right: "\f105"; + +$angle-up: "\f106"; + +$angle-down: "\f107"; + +$desktop: "\f108"; + +$laptop: "\f109"; + +$tablet: "\f10a"; + +$mobile-phone: "\f10b"; + +$circle-blank: "\f10c"; + +$quote-left: "\f10d"; + +$quote-right: "\f10e"; + +$spinner: "\f110"; + +$circle: "\f111"; + +$reply: "\f112"; + +$github-alt: "\f113"; + +$folder-close-alt: "\f114"; + +$folder-open-alt: "\f115"; + +$expand-alt: "\f116"; + +$collapse-alt: "\f117"; + +$smile: "\f118"; + +$frown: "\f119"; + +$meh: "\f11a"; + +$gamepad: "\f11b"; + +$keyboard: "\f11c"; + +$flag-alt: "\f11d"; + +$flag-checkered: "\f11e"; + +$terminal: "\f120"; + +$code: "\f121"; + +$reply-all: "\f122"; + +$mail-reply-all: "\f122"; + +$star-half-empty: "\f123"; + +$location-arrow: "\f124"; + +$crop: "\f125"; + +$code-fork: "\f126"; + +$unlink: "\f127"; + +$question: "\f128"; + +$info: "\f129"; + +$exclamation: "\f12a"; + +$superscript: "\f12b"; + +$subscript: "\f12c"; + +$eraser: "\f12d"; + +$puzzle-piece: "\f12e"; + +$microphone: "\f130"; + +$microphone-off: "\f131"; + +$shield: "\f132"; + +$calendar-empty: "\f133"; + +$fire-extinguisher: "\f134"; + +$rocket: "\f135"; + +$maxcdn: "\f136"; + +$chevron-sign-left: "\f137"; + +$chevron-sign-right: "\f138"; + +$chevron-sign-up: "\f139"; + +$chevron-sign-down: "\f13a"; + +$html5: "\f13b"; + +$css3: "\f13c"; + +$anchor: "\f13d"; + +$unlock-alt: "\f13e"; + +$bullseye: "\f140"; + +$ellipsis-horizontal: "\f141"; + +$ellipsis-vertical: "\f142"; + +$rss-sign: "\f143"; + +$play-sign: "\f144"; + +$ticket: "\f145"; + +$minus-sign-alt: "\f146"; + +$check-minus: "\f147"; + +$level-up: "\f148"; + +$level-down: "\f149"; + +$check-sign: "\f14a"; + +$edit-sign: "\f14b"; + +$external-link-sign: "\f14c"; + +$share-sign: "\f14d"; + +$compass: "\f14e"; + +$collapse: "\f150"; + +$collapse-top: "\f151"; + +$expand: "\f152"; + +$eur: "\f153"; + +$gbp: "\f154"; + +$usd: "\f155"; + +$inr: "\f156"; + +$jpy: "\f157"; + +$cny: "\f158"; + +$krw: "\f159"; + +$btc: "\f15a"; + +$file: "\f15b"; + +$file-text: "\f15c"; + +$sort-by-alphabet: "\f15d"; + +$sort-by-alphabet-alt: "\f15e"; + +$sort-by-attributes: "\f160"; + +$sort-by-attributes-alt: "\f161"; + +$sort-by-order: "\f162"; + +$sort-by-order-alt: "\f163"; + +$thumbs-up: "\f164"; + +$thumbs-down: "\f165"; + +$youtube-sign: "\f166"; + +$youtube: "\f167"; + +$xing: "\f168"; + +$xing-sign: "\f169"; + +$youtube-play: "\f16a"; + +$dropbox: "\f16b"; + +$stackexchange: "\f16c"; + +$instagram: "\f16d"; + +$flickr: "\f16e"; + +$adn: "\f170"; + +$bitbucket: "\f171"; + +$bitbucket-sign: "\f172"; + +$tumblr: "\f173"; + +$tumblr-sign: "\f174"; + +$long-arrow-down: "\f175"; + +$long-arrow-up: "\f176"; + +$long-arrow-left: "\f177"; + +$long-arrow-right: "\f178"; + +$apple: "\f179"; + +$windows: "\f17a"; + +$android: "\f17b"; + +$linux: "\f17c"; + +$dribbble: "\f17d"; + +$skype: "\f17e"; + +$foursquare: "\f180"; + +$trello: "\f181"; + +$female: "\f182"; + +$male: "\f183"; + +$gittip: "\f184"; + +$sun: "\f185"; + +$moon: "\f186"; + +$archive: "\f187"; + +$bug: "\f188"; + +$vk: "\f189"; + +$weibo: "\f18a"; + +$renren: "\f18b"; + diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss new file mode 100644 index 000000000..0e236f61e --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss @@ -0,0 +1,1953 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ + +.icon-large { + font-size: (4em/3); + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; + vertical-align: middle; +} + +.nav { + [class^="icon-"], + [class*=" icon-"] { + vertical-align: inherit; + margin-top: -4px; + padding-top: 3px; + margin-bottom: -4px; + padding-bottom: 3px; + &.icon-large { + vertical-align: -25%; + } + } +} + +.nav-pills, .nav-tabs { + [class^="icon-"], + [class*=" icon-"] { + &.icon-large { + line-height: .75em; + margin-top: -7px; + padding-top: 5px; + margin-bottom: -5px; + padding-bottom: 4px; + } + } +} + +.btn { + [class^="icon-"], + [class*=" icon-"] { + &.pull-left, &.pull-right { vertical-align: inherit; } + &.icon-large { + margin-top: -.5em; + } + } +} + +a [class^="icon-"], +a [class*=" icon-"] { + cursor: pointer; +} + +@mixin ie7icon($inner) { *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '#{$inner}'); } + + +.icon-glass { + @include ie7icon(''); +} + + +.icon-music { + @include ie7icon(''); +} + + +.icon-search { + @include ie7icon(''); +} + + +.icon-envelope-alt { + @include ie7icon(''); +} + + +.icon-heart { + @include ie7icon(''); +} + + +.icon-star { + @include ie7icon(''); +} + + +.icon-star-empty { + @include ie7icon(''); +} + + +.icon-user { + @include ie7icon(''); +} + + +.icon-film { + @include ie7icon(''); +} + + +.icon-th-large { + @include ie7icon(''); +} + + +.icon-th { + @include ie7icon(''); +} + + +.icon-th-list { + @include ie7icon(''); +} + + +.icon-ok { + @include ie7icon(''); +} + + +.icon-remove { + @include ie7icon(''); +} + + +.icon-zoom-in { + @include ie7icon(''); +} + + +.icon-zoom-out { + @include ie7icon(''); +} + + +.icon-off { + @include ie7icon(''); +} + +.icon-power-off { + @include ie7icon(''); +} + + +.icon-signal { + @include ie7icon(''); +} + + +.icon-cog { + @include ie7icon(''); +} + +.icon-gear { + @include ie7icon(''); +} + + +.icon-trash { + @include ie7icon(''); +} + + +.icon-home { + @include ie7icon(''); +} + + +.icon-file-alt { + @include ie7icon(''); +} + + +.icon-time { + @include ie7icon(''); +} + + +.icon-road { + @include ie7icon(''); +} + + +.icon-download-alt { + @include ie7icon(''); +} + + +.icon-download { + @include ie7icon(''); +} + + +.icon-upload { + @include ie7icon(''); +} + + +.icon-inbox { + @include ie7icon(''); +} + + +.icon-play-circle { + @include ie7icon(''); +} + + +.icon-repeat { + @include ie7icon(''); +} + +.icon-rotate-right { + @include ie7icon(''); +} + + +.icon-refresh { + @include ie7icon(''); +} + + +.icon-list-alt { + @include ie7icon(''); +} + + +.icon-lock { + @include ie7icon(''); +} + + +.icon-flag { + @include ie7icon(''); +} + + +.icon-headphones { + @include ie7icon(''); +} + + +.icon-volume-off { + @include ie7icon(''); +} + + +.icon-volume-down { + @include ie7icon(''); +} + + +.icon-volume-up { + @include ie7icon(''); +} + + +.icon-qrcode { + @include ie7icon(''); +} + + +.icon-barcode { + @include ie7icon(''); +} + + +.icon-tag { + @include ie7icon(''); +} + + +.icon-tags { + @include ie7icon(''); +} + + +.icon-book { + @include ie7icon(''); +} + + +.icon-bookmark { + @include ie7icon(''); +} + + +.icon-print { + @include ie7icon(''); +} + + +.icon-camera { + @include ie7icon(''); +} + + +.icon-font { + @include ie7icon(''); +} + + +.icon-bold { + @include ie7icon(''); +} + + +.icon-italic { + @include ie7icon(''); +} + + +.icon-text-height { + @include ie7icon(''); +} + + +.icon-text-width { + @include ie7icon(''); +} + + +.icon-align-left { + @include ie7icon(''); +} + + +.icon-align-center { + @include ie7icon(''); +} + + +.icon-align-right { + @include ie7icon(''); +} + + +.icon-align-justify { + @include ie7icon(''); +} + + +.icon-list { + @include ie7icon(''); +} + + +.icon-indent-left { + @include ie7icon(''); +} + + +.icon-indent-right { + @include ie7icon(''); +} + + +.icon-facetime-video { + @include ie7icon(''); +} + + +.icon-picture { + @include ie7icon(''); +} + + +.icon-pencil { + @include ie7icon(''); +} + + +.icon-map-marker { + @include ie7icon(''); +} + + +.icon-adjust { + @include ie7icon(''); +} + + +.icon-tint { + @include ie7icon(''); +} + + +.icon-edit { + @include ie7icon(''); +} + + +.icon-share { + @include ie7icon(''); +} + + +.icon-check { + @include ie7icon(''); +} + + +.icon-move { + @include ie7icon(''); +} + + +.icon-step-backward { + @include ie7icon(''); +} + + +.icon-fast-backward { + @include ie7icon(''); +} + + +.icon-backward { + @include ie7icon(''); +} + + +.icon-play { + @include ie7icon(''); +} + + +.icon-pause { + @include ie7icon(''); +} + + +.icon-stop { + @include ie7icon(''); +} + + +.icon-forward { + @include ie7icon(''); +} + + +.icon-fast-forward { + @include ie7icon(''); +} + + +.icon-step-forward { + @include ie7icon(''); +} + + +.icon-eject { + @include ie7icon(''); +} + + +.icon-chevron-left { + @include ie7icon(''); +} + + +.icon-chevron-right { + @include ie7icon(''); +} + + +.icon-plus-sign { + @include ie7icon(''); +} + + +.icon-minus-sign { + @include ie7icon(''); +} + + +.icon-remove-sign { + @include ie7icon(''); +} + + +.icon-ok-sign { + @include ie7icon(''); +} + + +.icon-question-sign { + @include ie7icon(''); +} + + +.icon-info-sign { + @include ie7icon(''); +} + + +.icon-screenshot { + @include ie7icon(''); +} + + +.icon-remove-circle { + @include ie7icon(''); +} + + +.icon-ok-circle { + @include ie7icon(''); +} + + +.icon-ban-circle { + @include ie7icon(''); +} + + +.icon-arrow-left { + @include ie7icon(''); +} + + +.icon-arrow-right { + @include ie7icon(''); +} + + +.icon-arrow-up { + @include ie7icon(''); +} + + +.icon-arrow-down { + @include ie7icon(''); +} + + +.icon-share-alt { + @include ie7icon(''); +} + +.icon-mail-forward { + @include ie7icon(''); +} + + +.icon-resize-full { + @include ie7icon(''); +} + + +.icon-resize-small { + @include ie7icon(''); +} + + +.icon-plus { + @include ie7icon(''); +} + + +.icon-minus { + @include ie7icon(''); +} + + +.icon-asterisk { + @include ie7icon(''); +} + + +.icon-exclamation-sign { + @include ie7icon(''); +} + + +.icon-gift { + @include ie7icon(''); +} + + +.icon-leaf { + @include ie7icon(''); +} + + +.icon-fire { + @include ie7icon(''); +} + + +.icon-eye-open { + @include ie7icon(''); +} + + +.icon-eye-close { + @include ie7icon(''); +} + + +.icon-warning-sign { + @include ie7icon(''); +} + + +.icon-plane { + @include ie7icon(''); +} + + +.icon-calendar { + @include ie7icon(''); +} + + +.icon-random { + @include ie7icon(''); +} + + +.icon-comment { + @include ie7icon(''); +} + + +.icon-magnet { + @include ie7icon(''); +} + + +.icon-chevron-up { + @include ie7icon(''); +} + + +.icon-chevron-down { + @include ie7icon(''); +} + + +.icon-retweet { + @include ie7icon(''); +} + + +.icon-shopping-cart { + @include ie7icon(''); +} + + +.icon-folder-close { + @include ie7icon(''); +} + + +.icon-folder-open { + @include ie7icon(''); +} + + +.icon-resize-vertical { + @include ie7icon(''); +} + + +.icon-resize-horizontal { + @include ie7icon(''); +} + + +.icon-bar-chart { + @include ie7icon(''); +} + + +.icon-twitter-sign { + @include ie7icon(''); +} + + +.icon-facebook-sign { + @include ie7icon(''); +} + + +.icon-camera-retro { + @include ie7icon(''); +} + + +.icon-key { + @include ie7icon(''); +} + + +.icon-cogs { + @include ie7icon(''); +} + +.icon-gears { + @include ie7icon(''); +} + + +.icon-comments { + @include ie7icon(''); +} + + +.icon-thumbs-up-alt { + @include ie7icon(''); +} + + +.icon-thumbs-down-alt { + @include ie7icon(''); +} + + +.icon-star-half { + @include ie7icon(''); +} + + +.icon-heart-empty { + @include ie7icon(''); +} + + +.icon-signout { + @include ie7icon(''); +} + + +.icon-linkedin-sign { + @include ie7icon(''); +} + + +.icon-pushpin { + @include ie7icon(''); +} + + +.icon-external-link { + @include ie7icon(''); +} + + +.icon-signin { + @include ie7icon(''); +} + + +.icon-trophy { + @include ie7icon(''); +} + + +.icon-github-sign { + @include ie7icon(''); +} + + +.icon-upload-alt { + @include ie7icon(''); +} + + +.icon-lemon { + @include ie7icon(''); +} + + +.icon-phone { + @include ie7icon(''); +} + + +.icon-check-empty { + @include ie7icon(''); +} + +.icon-unchecked { + @include ie7icon(''); +} + + +.icon-bookmark-empty { + @include ie7icon(''); +} + + +.icon-phone-sign { + @include ie7icon(''); +} + + +.icon-twitter { + @include ie7icon(''); +} + + +.icon-facebook { + @include ie7icon(''); +} + + +.icon-github { + @include ie7icon(''); +} + + +.icon-unlock { + @include ie7icon(''); +} + + +.icon-credit-card { + @include ie7icon(''); +} + + +.icon-rss { + @include ie7icon(''); +} + + +.icon-hdd { + @include ie7icon(''); +} + + +.icon-bullhorn { + @include ie7icon(''); +} + + +.icon-bell { + @include ie7icon(''); +} + + +.icon-certificate { + @include ie7icon(''); +} + + +.icon-hand-right { + @include ie7icon(''); +} + + +.icon-hand-left { + @include ie7icon(''); +} + + +.icon-hand-up { + @include ie7icon(''); +} + + +.icon-hand-down { + @include ie7icon(''); +} + + +.icon-circle-arrow-left { + @include ie7icon(''); +} + + +.icon-circle-arrow-right { + @include ie7icon(''); +} + + +.icon-circle-arrow-up { + @include ie7icon(''); +} + + +.icon-circle-arrow-down { + @include ie7icon(''); +} + + +.icon-globe { + @include ie7icon(''); +} + + +.icon-wrench { + @include ie7icon(''); +} + + +.icon-tasks { + @include ie7icon(''); +} + + +.icon-filter { + @include ie7icon(''); +} + + +.icon-briefcase { + @include ie7icon(''); +} + + +.icon-fullscreen { + @include ie7icon(''); +} + + +.icon-group { + @include ie7icon(''); +} + + +.icon-link { + @include ie7icon(''); +} + + +.icon-cloud { + @include ie7icon(''); +} + + +.icon-beaker { + @include ie7icon(''); +} + + +.icon-cut { + @include ie7icon(''); +} + + +.icon-copy { + @include ie7icon(''); +} + + +.icon-paper-clip { + @include ie7icon(''); +} + +.icon-paperclip { + @include ie7icon(''); +} + + +.icon-save { + @include ie7icon(''); +} + + +.icon-sign-blank { + @include ie7icon(''); +} + + +.icon-reorder { + @include ie7icon(''); +} + + +.icon-list-ul { + @include ie7icon(''); +} + + +.icon-list-ol { + @include ie7icon(''); +} + + +.icon-strikethrough { + @include ie7icon(''); +} + + +.icon-underline { + @include ie7icon(''); +} + + +.icon-table { + @include ie7icon(''); +} + + +.icon-magic { + @include ie7icon(''); +} + + +.icon-truck { + @include ie7icon(''); +} + + +.icon-pinterest { + @include ie7icon(''); +} + + +.icon-pinterest-sign { + @include ie7icon(''); +} + + +.icon-google-plus-sign { + @include ie7icon(''); +} + + +.icon-google-plus { + @include ie7icon(''); +} + + +.icon-money { + @include ie7icon(''); +} + + +.icon-caret-down { + @include ie7icon(''); +} + + +.icon-caret-up { + @include ie7icon(''); +} + + +.icon-caret-left { + @include ie7icon(''); +} + + +.icon-caret-right { + @include ie7icon(''); +} + + +.icon-columns { + @include ie7icon(''); +} + + +.icon-sort { + @include ie7icon(''); +} + + +.icon-sort-down { + @include ie7icon(''); +} + + +.icon-sort-up { + @include ie7icon(''); +} + + +.icon-envelope { + @include ie7icon(''); +} + + +.icon-linkedin { + @include ie7icon(''); +} + + +.icon-undo { + @include ie7icon(''); +} + +.icon-rotate-left { + @include ie7icon(''); +} + + +.icon-legal { + @include ie7icon(''); +} + + +.icon-dashboard { + @include ie7icon(''); +} + + +.icon-comment-alt { + @include ie7icon(''); +} + + +.icon-comments-alt { + @include ie7icon(''); +} + + +.icon-bolt { + @include ie7icon(''); +} + + +.icon-sitemap { + @include ie7icon(''); +} + + +.icon-umbrella { + @include ie7icon(''); +} + + +.icon-paste { + @include ie7icon(''); +} + + +.icon-lightbulb { + @include ie7icon(''); +} + + +.icon-exchange { + @include ie7icon(''); +} + + +.icon-cloud-download { + @include ie7icon(''); +} + + +.icon-cloud-upload { + @include ie7icon(''); +} + + +.icon-user-md { + @include ie7icon(''); +} + + +.icon-stethoscope { + @include ie7icon(''); +} + + +.icon-suitcase { + @include ie7icon(''); +} + + +.icon-bell-alt { + @include ie7icon(''); +} + + +.icon-coffee { + @include ie7icon(''); +} + + +.icon-food { + @include ie7icon(''); +} + + +.icon-file-text-alt { + @include ie7icon(''); +} + + +.icon-building { + @include ie7icon(''); +} + + +.icon-hospital { + @include ie7icon(''); +} + + +.icon-ambulance { + @include ie7icon(''); +} + + +.icon-medkit { + @include ie7icon(''); +} + + +.icon-fighter-jet { + @include ie7icon(''); +} + + +.icon-beer { + @include ie7icon(''); +} + + +.icon-h-sign { + @include ie7icon(''); +} + + +.icon-plus-sign-alt { + @include ie7icon(''); +} + + +.icon-double-angle-left { + @include ie7icon(''); +} + + +.icon-double-angle-right { + @include ie7icon(''); +} + + +.icon-double-angle-up { + @include ie7icon(''); +} + + +.icon-double-angle-down { + @include ie7icon(''); +} + + +.icon-angle-left { + @include ie7icon(''); +} + + +.icon-angle-right { + @include ie7icon(''); +} + + +.icon-angle-up { + @include ie7icon(''); +} + + +.icon-angle-down { + @include ie7icon(''); +} + + +.icon-desktop { + @include ie7icon(''); +} + + +.icon-laptop { + @include ie7icon(''); +} + + +.icon-tablet { + @include ie7icon(''); +} + + +.icon-mobile-phone { + @include ie7icon(''); +} + + +.icon-circle-blank { + @include ie7icon(''); +} + + +.icon-quote-left { + @include ie7icon(''); +} + + +.icon-quote-right { + @include ie7icon(''); +} + + +.icon-spinner { + @include ie7icon(''); +} + + +.icon-circle { + @include ie7icon(''); +} + + +.icon-reply { + @include ie7icon(''); +} + +.icon-mail-reply { + @include ie7icon(''); +} + + +.icon-github-alt { + @include ie7icon(''); +} + + +.icon-folder-close-alt { + @include ie7icon(''); +} + + +.icon-folder-open-alt { + @include ie7icon(''); +} + + +.icon-expand-alt { + @include ie7icon(''); +} + + +.icon-collapse-alt { + @include ie7icon(''); +} + + +.icon-smile { + @include ie7icon(''); +} + + +.icon-frown { + @include ie7icon(''); +} + + +.icon-meh { + @include ie7icon(''); +} + + +.icon-gamepad { + @include ie7icon(''); +} + + +.icon-keyboard { + @include ie7icon(''); +} + + +.icon-flag-alt { + @include ie7icon(''); +} + + +.icon-flag-checkered { + @include ie7icon(''); +} + + +.icon-terminal { + @include ie7icon(''); +} + + +.icon-code { + @include ie7icon(''); +} + + +.icon-reply-all { + @include ie7icon(''); +} + + +.icon-mail-reply-all { + @include ie7icon(''); +} + + +.icon-star-half-empty { + @include ie7icon(''); +} + +.icon-star-half-full { + @include ie7icon(''); +} + + +.icon-location-arrow { + @include ie7icon(''); +} + + +.icon-crop { + @include ie7icon(''); +} + + +.icon-code-fork { + @include ie7icon(''); +} + + +.icon-unlink { + @include ie7icon(''); +} + + +.icon-question { + @include ie7icon(''); +} + + +.icon-info { + @include ie7icon(''); +} + + +.icon-exclamation { + @include ie7icon(''); +} + + +.icon-superscript { + @include ie7icon(''); +} + + +.icon-subscript { + @include ie7icon(''); +} + + +.icon-eraser { + @include ie7icon(''); +} + + +.icon-puzzle-piece { + @include ie7icon(''); +} + + +.icon-microphone { + @include ie7icon(''); +} + + +.icon-microphone-off { + @include ie7icon(''); +} + + +.icon-shield { + @include ie7icon(''); +} + + +.icon-calendar-empty { + @include ie7icon(''); +} + + +.icon-fire-extinguisher { + @include ie7icon(''); +} + + +.icon-rocket { + @include ie7icon(''); +} + + +.icon-maxcdn { + @include ie7icon(''); +} + + +.icon-chevron-sign-left { + @include ie7icon(''); +} + + +.icon-chevron-sign-right { + @include ie7icon(''); +} + + +.icon-chevron-sign-up { + @include ie7icon(''); +} + + +.icon-chevron-sign-down { + @include ie7icon(''); +} + + +.icon-html5 { + @include ie7icon(''); +} + + +.icon-css3 { + @include ie7icon(''); +} + + +.icon-anchor { + @include ie7icon(''); +} + + +.icon-unlock-alt { + @include ie7icon(''); +} + + +.icon-bullseye { + @include ie7icon(''); +} + + +.icon-ellipsis-horizontal { + @include ie7icon(''); +} + + +.icon-ellipsis-vertical { + @include ie7icon(''); +} + + +.icon-rss-sign { + @include ie7icon(''); +} + + +.icon-play-sign { + @include ie7icon(''); +} + + +.icon-ticket { + @include ie7icon(''); +} + + +.icon-minus-sign-alt { + @include ie7icon(''); +} + + +.icon-check-minus { + @include ie7icon(''); +} + + +.icon-level-up { + @include ie7icon(''); +} + + +.icon-level-down { + @include ie7icon(''); +} + + +.icon-check-sign { + @include ie7icon(''); +} + + +.icon-edit-sign { + @include ie7icon(''); +} + + +.icon-external-link-sign { + @include ie7icon(''); +} + + +.icon-share-sign { + @include ie7icon(''); +} + + +.icon-compass { + @include ie7icon(''); +} + + +.icon-collapse { + @include ie7icon(''); +} + + +.icon-collapse-top { + @include ie7icon(''); +} + + +.icon-expand { + @include ie7icon(''); +} + + +.icon-eur { + @include ie7icon(''); +} + +.icon-euro { + @include ie7icon(''); +} + + +.icon-gbp { + @include ie7icon(''); +} + + +.icon-usd { + @include ie7icon(''); +} + +.icon-dollar { + @include ie7icon(''); +} + + +.icon-inr { + @include ie7icon(''); +} + +.icon-rupee { + @include ie7icon(''); +} + + +.icon-jpy { + @include ie7icon(''); +} + +.icon-yen { + @include ie7icon(''); +} + + +.icon-cny { + @include ie7icon(''); +} + +.icon-renminbi { + @include ie7icon(''); +} + + +.icon-krw { + @include ie7icon(''); +} + +.icon-won { + @include ie7icon(''); +} + + +.icon-btc { + @include ie7icon(''); +} + +.icon-bitcoin { + @include ie7icon(''); +} + + +.icon-file { + @include ie7icon(''); +} + + +.icon-file-text { + @include ie7icon(''); +} + + +.icon-sort-by-alphabet { + @include ie7icon(''); +} + + +.icon-sort-by-alphabet-alt { + @include ie7icon(''); +} + + +.icon-sort-by-attributes { + @include ie7icon(''); +} + + +.icon-sort-by-attributes-alt { + @include ie7icon(''); +} + + +.icon-sort-by-order { + @include ie7icon(''); +} + + +.icon-sort-by-order-alt { + @include ie7icon(''); +} + + +.icon-thumbs-up { + @include ie7icon(''); +} + + +.icon-thumbs-down { + @include ie7icon(''); +} + + +.icon-youtube-sign { + @include ie7icon(''); +} + + +.icon-youtube { + @include ie7icon(''); +} + + +.icon-xing { + @include ie7icon(''); +} + + +.icon-xing-sign { + @include ie7icon(''); +} + + +.icon-youtube-play { + @include ie7icon(''); +} + + +.icon-dropbox { + @include ie7icon(''); +} + + +.icon-stackexchange { + @include ie7icon(''); +} + + +.icon-instagram { + @include ie7icon(''); +} + + +.icon-flickr { + @include ie7icon(''); +} + + +.icon-adn { + @include ie7icon(''); +} + + +.icon-bitbucket { + @include ie7icon(''); +} + + +.icon-bitbucket-sign { + @include ie7icon(''); +} + + +.icon-tumblr { + @include ie7icon(''); +} + + +.icon-tumblr-sign { + @include ie7icon(''); +} + + +.icon-long-arrow-down { + @include ie7icon(''); +} + + +.icon-long-arrow-up { + @include ie7icon(''); +} + + +.icon-long-arrow-left { + @include ie7icon(''); +} + + +.icon-long-arrow-right { + @include ie7icon(''); +} + + +.icon-apple { + @include ie7icon(''); +} + + +.icon-windows { + @include ie7icon(''); +} + + +.icon-android { + @include ie7icon(''); +} + + +.icon-linux { + @include ie7icon(''); +} + + +.icon-dribbble { + @include ie7icon(''); +} + + +.icon-skype { + @include ie7icon(''); +} + + +.icon-foursquare { + @include ie7icon(''); +} + + +.icon-trello { + @include ie7icon(''); +} + + +.icon-female { + @include ie7icon(''); +} + + +.icon-male { + @include ie7icon(''); +} + + +.icon-gittip { + @include ie7icon(''); +} + + +.icon-sun { + @include ie7icon(''); +} + + +.icon-moon { + @include ie7icon(''); +} + + +.icon-archive { + @include ie7icon(''); +} + + +.icon-bug { + @include ie7icon(''); +} + + +.icon-vk { + @include ie7icon(''); +} + + +.icon-weibo { + @include ie7icon(''); +} + + +.icon-renren { + @include ie7icon(''); +} + + diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss new file mode 100644 index 000000000..e5903d856 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss @@ -0,0 +1,33 @@ +/*! + * Font Awesome 3.2.1 + * the iconic font designed for Bootstrap + * ------------------------------------------------------------------------------ + * The full suite of pictographic icons, examples, and documentation can be + * found at http://fontawesome.io. Stay up to date on Twitter at + * http://twitter.com/fontawesome. + * + * License + * ------------------------------------------------------------------------------ + * - The Font Awesome font is licensed under SIL OFL 1.1 - + * http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - + * http://opensource.org/licenses/mit-license.html + * - Font Awesome documentation licensed under CC BY 3.0 - + * http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fontawesome.io" + * + * Author - Dave Gandy + * ------------------------------------------------------------------------------ + * Email: dave@fontawesome.io + * Twitter: http://twitter.com/davegandy + * Work: Lead Product Designer @ Kyruus - http://kyruus.com + */ + +@import "variables"; +@import "mixins"; +@import "path"; +@import "core"; +@import "bootstrap"; +@import "extras"; +@import "icons"; diff --git a/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png b/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png new file mode 100644 index 000000000..7e6356279 Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png differ diff --git a/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg b/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg new file mode 100644 index 000000000..3542fae0f Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg differ diff --git a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png new file mode 100644 index 000000000..3bf6484a2 Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png differ diff --git a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png new file mode 100644 index 000000000..8bc9e642b Binary files /dev/null and b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png differ diff --git a/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf b/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf new file mode 100644 index 000000000..1c8913d14 --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf @@ -0,0 +1,1355 @@ +%PDF-1.5 %âăĎÓ +1 0 obj <>/OCGs[5 0 R 29 0 R 51 0 R 73 0 R 95 0 R 117 0 R 140 0 R 163 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + Web + + + + + Adobe Illustrator CS6 (Macintosh) + 2012-12-10T10:41:19-05:00 + 2013-01-02T00:01:34-05:00 + 2013-01-02T00:01:34-05:00 + + + + 256 + 128 + JPEG + /9j/4AAQSkZJRgABAgEAyADIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAAyAAAAAEA AQDIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAgAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYqw /wDNP8zdE/Lnys2varG9wXlW3s7OKgeadwWC8jsoCoWZj0A7mgKrE/yX/wCcitD/ADM1G60n9Gya PrFtEblLd5RcRywqwVikoSL4lLLVSvfau+KvXMVdirsVdirsVdirsVfOtx/zml5Ni80nTk0a5k0F ZjE2tiVeXENx9VbYISyd/wC85U/Zrtir6HhminhjmhcSRSqHjddwysKgg+4xVfirsVdirsVdirsV fP8A+fP/ADk5d+Q/Mf8Ahjy5p9ve6rbxpLqFxe82hiMqh44ljieNmYowYnkAKjr2VZH+QP58r+Zt rfWeoWUen69pqpJNHCxaGaFzx9SMNV14tsyknqN96BV67irsVdirsVdirsVeD3f/ADmJ+W1v5pbS Ba3kumRzeg+toEMNQ3EyLHy9Ro+9etP2cVe7RyRyxrJGweNwGR1IKspFQQR1BxVqaeCBPUmkWJOn JyFFT7nFW45I5EEkbB0bdWUggj2IxVdirsVdiryr/nJjyZYeZfyn1Sa5kaGfQlbVbR0ANZII3BRg f2XRyPY0PamKvA/+ca7vyl5H8t6/+avmG5mJs5BotlYQKC0jzLHOeFWUM7BdgSAqhia9lUH58/5y 9/MTXJZYPLix+XNNNVUxBZ7tl6VaaReK1/yEBHicVeP6n5v82apMZtT1q+vZSa87i5mlP3uxxVMv L35p/mN5dlSTR/Md/ahKUh9d5ITTYcoZC8TU91xV7t5I/wCc1dQt7f6v500YXrqPgv8ATSsUjUH+ 7IZDwJPirKP8nFVDzr/zmprl3BJa+T9HTTOQoNRvWFxMK90hAESsP8ouPbFUj/5xi88ebtV/PCB9 T1e6vW1a2ulv/rEjSCQRxGVNmqBwZBxp0Gw2xV9sEAih3B6jFXwDrf5Q6Xaf85B/8q3gvZRpct9b xpdFQZUguYEueG5ILIsnDl3pWnbFX0z+cH/OQnlv8rfQ8uWFi2p65HbIYbQOEgt4qcY/Wk+Jq0Wo QCpHUioxV8vecP8AnI783PM8sgk1uTSrN60stLJtEAJ6eoh9ZvD4nOKsBfzBrzz/AFh9SumnqD6p nkL1HQ8i1cVZn5Q/P781/Ks0ZstenvLVCK2OoMbuAr140kJdB/qMuKvdNE/5zd0Y6aP075buU1JV ofqMqPA7U6/vSjxgnt8XzxVh3nn/AJzK86atDJaeVrCHy/A44m7dvrV3T/ILKsSV/wBRiOxxVH/8 4d+a/MuqfmZrsGp6nc30d3pUl3cC5leUvPFcwIkhLljyCzMPpxVv/nMf8sDp+rx/mJb3CmDV5oLC +tGrzW5jt2EciHoUaG2ow7Ed67Kp5/zj75f0X8rPy5v/AM1/NF5WLVreNLS2thzdYDJ8KANw5Syy AbVooFSetFWHefv+cxPPOsSS23lSCPy9p52S4IW4vWHiXcGJKjsqVH82KvGdX88ec9ZlMuq67f3z k1rPczSAfIMxA+jFVbQvzD896DMkuj+YL+yZOiRXEgjO9aNGSUYV7MMVe4eRP+cz/M2notr5x01N ZiAp9fteNtc/N4wPRf8A2ITFU/8AMf8Azm9aCBk8t+WpGuCPgn1GZVRT7ww8i/8AyMXFXg3mv86f zL80axBqupa3Ok1pIJbKC2PoQQspqCkSUWv+U1Se5xVONZ/J+C0/Pk/lpFqDfVJL6CGO+KVdYLmF LkVWtC6RycfAkV2xVmn5mf8AOVPmh5pvLnkYDRdD08mzg1CnqXs0cP7sMGcUiDBaii8/8rFXhOq6 1rGr3TXerX1xqF01S091K80hruficscVRHl/zV5l8u3a3ehapdaZcKa87aV46/6wU0YexxV7l5b/ AOc0fPdhp31bWtKtNaulFEvuRtXPvIkatG3+xVcVYj58/wCcm/zT83RPaC9XRNNcUe00wNCzj/Ln LNMfcBgp8MVfT3/OK+tarq35P2M2p3Ul5NBc3MEc0zF39NHqqljuePLavbbFWUfnX/5KPzf/ANsq 6/5NHFXxXH/6zbcf+BlB/wB0ubFXmmKuxV2KuxV2KvYP+cT/APyduj/8YLz/AKhpMVfemKvkDzN/ 621D/wAx2n/90yHFWFf85Yf+Tt1j/jBZ/wDUNHirx/FXYq7FXYq7FX0B/wA4Vf8Ak09V/wC2Hcf9 Rlpir1X/AJzV/wDJWaV/23Lf/qDu8VYp5+/9Y28uf9GX/J18VfKuKuxV2KuxV2KuxV9K+Zv/AFtq H/mO0/8A7pkOKvnXVv8Ajq3n/GeT/iZxVCYq7FXYq7FX3V/ziF/5Ju2/5jrv/iQxVmv51/8Ako/N /wD2yrr/AJNHFXxXH/6zbcf+BlB/3S5sVeaYq7FXYq7FXYq9g/5xP/8AJ26P/wAYLz/qGkxV96Yq +QPM3/rbUP8AzHaf/wB0yHFWFf8AOWH/AJO3WP8AjBZ/9Q0eKvH8VdirsVdirsVfQH/OFX/k09V/ 7Ydx/wBRlpir1X/nNX/yVmlf9ty3/wCoO7xVinn7/wBY28uf9GX/ACdfFXyrirsVdirsVdirsVfS vmb/ANbah/5jtP8A+6ZDir511b/jq3n/ABnk/wCJnFUJirsVdirsVfdX/OIX/km7b/mOu/8AiQxV mv51/wDko/N//bKuv+TRxV8Vx/8ArNtx/wCBlB/3S5sVYLoXl3XtfvlsNE0641K8bcQWsTSsB0qQ oNB7nbFXrOh/84i/nFqcSy3NvZaQG3C31z8QFO4tluKfrxVB+av+cV/zg8v273KafDrMEYJkbS5T M4A8IZFimb/YocVeSTQzQSvDMjRTRsVkjcFWVgaEMDuCMVWgEkACpOwA61xV9L/84p/k752s/Odv 501exk0vSLW3mFqLleEtw86GMcYmIdUCuW5kUO1K9lX15ir5A8zf+ttQ/wDMdp//AHTIcVYV/wA5 Yf8Ak7dY/wCMFn/1DR4qw/yX+Uf5jec6P5e0O4urUmhvXCwWw8f30xRGp3Ckn2xV6RF/zhl+bL23 rNd6RHJ/yztczmT71gZP+GxVgHnb8lPzN8mRtPrmiTLYrWuoW5W4twB3aSIt6f8As+OKsGxVUggm nmSGCNpZpCFjjQFmZj0AA3JxV9Zf84lflB518t65qHmzzDZPpdvdWDWNnZ3A4XEnqzRStI0f2owv oUo4BNemKp//AM5q/wDkrNK/7blv/wBQd3irFPP3/rG3lz/oy/5Ovir5k0XQdb1y/TT9GsLjUb2T 7NvaxtK9OleKA0A7npir1vQv+cRfzi1SFZbi3stIDioS/ufjp2qtstwR8jviqH8yf84ofnFotu9x FY22sRRir/o2f1Hp7RSrDI3yVScVeSXtje2F3LZ31vJa3cDcJredGjkRh1VkYBlPzxVQxVm35efk /wCe/Pl7DHo2mTfo55Ak+rSqUtYlrR29RuIcqN+CVb2xV6/5m/8AW2of+Y7T/wDumQ4qs0r/AJw1 84ah5rvzrmo2+n6AtzI0N1CfWuLiMsShSLZY6jrzbY9mxV7f5c/5xl/JvRLdIzoa6pcLTndajI87 uR4pVYR/sUGKoHzd/wA4q/lJr1qwsbB9BvqH07qwdgte3OGQvGR40Cn3xV4bqv8Azhb+ZNveOmm6 lpl9aVPpzySTW8hH+XH6cgU/JzirKPJv/OE0izxz+ctdRolIL2Glqx5jwNxMq8fekX0jFX0x5a8t aJ5Z0O10PQ7VbPTLJSlvApZqVJZiWYszMzEkkmpOKsd/Ov8A8lH5v/7ZV1/yaOKvEv8AnFHyh5c8 2/lN5i0TzFZLf6ZNq6u8DM6HlHBEysrxsjqQe6sPDpir6N8t+VPLfljTU03QNOg02yT/AHVboF5H pydvtO3+UxJxVNcVdirGvMv5afl/5muBc695fsdQuhQfWZYV9YgbAGVaOR7E4qt8vflh+Xfl2dbn RfLmn2V0u6XMcCGZe+0rAuPoOKsnxV2KvkDzN/621D/zHaf/AN0yHFX0p5h/Kn8vPMfmG28w65oV vqGrWiCKKefmyFFJKiSHl6UlORpzU4qymOOOKNY41CRoAqIoAVVAoAAOgGKrsVcQGBBFQdiD0IxV hOo/kl+UuoXT3V15U04zvu7RwrECfErHwFfemKp15d8i+TPLY/3AaJY6Y5HFpbaCOORh/lSAc2+k 4qnmKvAP+c1f/JWaV/23Lf8A6g7vFWV/lP5X0HzR+QHlvRNes1vtLurCMT27llrxkLKQyFXUhhUF SDirOvKnkryp5S08af5c0uDTLXbmsK/G5HQySNykkb3dicVTrFXYqkXmXyJ5M80Ko8w6LZ6m0YpH JcQo8iDwWSnNR8jiqUaX+S/5T6ZcC4s/KmmrOKFXkt0mKkdCvq8+J9xirM0RI0WONQiIAqIooABs AAMVfMuvflv54uP+ct7fzNDo9w/l9rizuf0oAPq4jhsY4n5PWgYPGw4nf23GKvpvFXYq7FXYq7FX Yqxb81NJ1HWPy28zaXpsJuL+8065htYFIBeRoyFUVIFScVeb/wDOJXk7zP5Y8jarB5h02bTLi61F poILleEhjEMacuB+IDkp64q9xxV2KuxV2KuxV2KuxV8ya9+W/ni4/wCct7fzNDo9w/l9rizuf0oA Pq4jhsY4n5PWgYPGw4nf23GKvpvFXYq7FXYq7FXYq7FXi/8Azlh5R8y+Z/y2srPy/p82p3drq0F1 Nb2685BELeeIsEG7UeVenz6Yqzb8m9F1PRPyu8taXqlu1rqFrZItxbvTkjEluLUruAdxirMsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdirsVfLH/OS/51/mb5M/MWPR/LWs/UNObT4LgwfVrSb947yBm5 TRSPuEG1aYq8n/6Gj/Pb/qZv+nHT/wDsnxV3/Q0f57f9TN/046f/ANk+Ku/6Gj/Pb/qZv+nHT/8A snxV3/Q0f57f9TN/046f/wBk+Ku/6Gj/AD2/6mb/AKcdP/7J8Vd/0NH+e3/Uzf8ATjp//ZPirv8A oaP89v8AqZv+nHT/APsnxV9j/kn5k1nzJ+Vmg67rdz9a1S9ile6ueEcXIrPIgPCNUQfCo6DFXgV1 /wA5tawvmljbaBav5WWUqEZpBfPEDT1BJy9JWI34emfDl3xV9X2d3BeWcF5bnlBcxpNExBBKOoZT Q9Njiq2/1LTtPgM9/dQ2kA6yzyLEn/BOQMVS+y85+T76YQWWu6fdTHpFDdQSMf8AYq5OKpxirsVQ 2oappmmwrNqN3DZwuwjSS4kSJS7fZUFyBU9hiqJxV8u/mV/zl9rvl/z5qGhaFo1nPpmj3Ulndy3h l9aaSBik3pmN0WMB1KrVXr19sVfRPkzzPaeavKuleYrSNobfVLdLhYX3ZCw+JCe/FqivfFU0ubq1 tYWnupkghX7UsrBFHzZiBiqUweevJNxMsEHmHTZZmNFiS8gZifAKHriqdghgCDUHcEdCMVdiqhe3 9jYWsl3fXEVpaxCstxO6xxqOlWdiFGKqkM0M8Mc8EiywyqHilQhlZWFVZWGxBHQ4qvxV2KuxV2Ku xV2KuxV8Qf8AOZP/AJNyH/tlW3/J2bFXhWKuxV2KuxV2KuxV2Kv0K/5xu/8AJJeVv+ME3/UTLir5 f1/8svKsH/OUA8jxQuvl2bULXlah6ER3FtHdPCrKAQnKQovcL3rvirIvzT/5yz80XF5daF5Hij0T SbSRraPUQoe6lSI8A0YYcIVIGw4lv8odMVeA6vres6zeNe6vf3Go3j/auLqV5pD/ALJyxxVA4qz/ AMifnp+ZnkqSNdK1eS4sEI5aZek3FsQP2QrnlH/zzZTir07VP+c2fO89iItO0LT7K7K0e5kaWcV8 UjrHT/ZFsVeH+b/PPm3zhqR1HzJqc2o3IqI/UNI4wdysUS8Y419lUYq/RryDLLL5F8uSyu0ksml2 TSSMSzMzW6Ekk7kk4q+P/wDnJvyVoVh+edhbWUbQQ+ZIrW91FVb/AHfdXcsEzx1B48xFyPX4iT7Y qyz81/8AnI288j3Mv5dfl1ZRafa+X1XT21SYetIrRKFZYY3HGqtsXk5cjU07lV85eYfNfmbzHd/W 9e1S61O434vdSvLxr2QMaKPZdsVSnFWXeSvzY/MHyXMjeX9auLe3U1awdvVtW33rBJyTfxADe+Kv Yn/5zc85nThHH5e05dRpRrpnnaEnxEIZW/5KYq8a89/ml5689XQn8yapJdRI3KCyX93axHp8EKUS tNuRq3icVfcP/OOUkkn5J+VWkYuwt5FBYknitxIqjfsAKDFXpGKuxV2KuxV2KuxV2KviD/nMn/yb kP8A2yrb/k7NirwrFXYq7FXYq7FXYq7FX6Ff843f+SS8rf8AGCb/AKiZcVeFeZv/AFtqH/mO0/8A 7pkOKvnXVv8Ajq3n/GeT/iZxVCYq7FXYq7FXYq/TT8vP+UA8s/8AbKsf+oZMVfMH/OVP/k/fKP8A zA6d/wB1G4xV4/8AnX/5Nzzf/wBtW6/5OnFWFYq7FXYq7FXYq/Qr/nG7/wAkl5W/4wTf9RMuKvSs VdirsVdirsVdirsVfEH/ADmT/wCTch/7ZVt/ydmxV4VirsVdirsVdirsVdir9Cv+cbv/ACSXlb/j BN/1Ey4q8K8zf+ttQ/8AMdp//dMhxV866t/x1bz/AIzyf8TOKoTFXYq7FXYq7FX6afl5/wAoB5Z/ 7ZVj/wBQyYq+YP8AnKn/AMn75R/5gdO/7qNxirx/86//ACbnm/8A7at1/wAnTirCsVdirsVdirsV foV/zjd/5JLyt/xgm/6iZcVelYq7FXYq7FXYq7FXYq+IP+cyf/JuQ/8AbKtv+Ts2KvCsVdirsVdi rsVdirsVfoV/zjd/5JLyt/xgm/6iZcVeFeZv/W2of+Y7T/8AumQ4q8Ck0TWdU8zXWmabY3F5qL3M qLZwRPJMWDkEcFBbbvir13yp/wA4e/mfq8aT6vJaaBA25juHM9xTt+7h5J9DSA4qy27/AOcG9QW1 LWfnCGa6ptFNYtFHWn+/Fnlbr/kYq8Z/MH8kvzG8hs0mt6Y0mnA0XVbMme0PzcAGOvYSKpxVggBJ AAqTsAOtcVem/l7/AM47fmb50miki019K0lzV9U1BTDHx8Y4z+9l9uK0r1IxV986JpcWk6NYaVC7 SQ6fbQ2sbtTkywxiME07kLir5N/5yp/8n75R/wCYHTv+6jcYq8n/ADksL64/ObzVZwW0s13Pq1wI beNGaRy8hZOKAcm5AginXFWVeT/+cTvzY8wJHcX1tD5ftHAYNqDkTFT4QRh3U+0nHFWet/zg3efV Sy+cYzdU2iOnsI6+HqfWC3/CYq8o/ML/AJx2/M3yQj3V3YDU9JSpbUtO5Txqo7ypxWWP3LLx98Ve ZYqzryL+Sf5k+dpYzo2jypYuRXVLsG3tAD+0JHHx08Iwx9sVfev5beT/APBvkXR/LJuPrT6bB6ct xSgeR2MkhUfy83PGvbFWS4q7FXYq7FXYq7FXYq+IP+cyf/JuQ/8AbKtv+Ts2KvCsVdirsVdirsVd irsVfoV/zjd/5JLyt/xgm/6iZcVeFeZv/W2of+Y7T/8AumQ4q+sLDQNC0+8u76w021tL2/b1L66g hjilneteUrooZzU9WOKo/FXYq4gMCCKg7EHoRiqBt9A0K2uPrNtp1rDcbn1o4Y0ep6/EFBxVHYq7 FXyB/wA5U/8Ak/fKP/MDp3/dRuMVfWCaBoSavJrSabarrEqCOXUhDGLlkAoEabj6hUAdK4qj8Vdi rsVQB8vaAbn60dNtTck8jP6EfqV8eXGuKo/FXYq7FXYq7FXYq7FXYq7FXxB/zmT/AOTch/7ZVt/y dmxV4VirsVdirsVdirsVdir9Cv8AnG7/AMkl5W/4wTf9RMuKsG1r8lfO93/zk3B59hjtz5a9a2uX uTModfq9mkDRmL7fIvFtQUoRv1xV9B4q7FXYq7FXYq7FXYq+fPz1/JXzv5y/Nnyz5j0WO3fSrOC1 t72WWZY2iNvdyTsxQ/EylJduFTsfbFX0HirsVdirsVdirsVdirsVdirsVdirsVdirsVfOn5/f845 +d/zD88x6/ot9plvZrZQ2pjvZbhJecbyMTSKCZafGP2sVebf9CVfmn/1ddD/AOki8/7JMVd/0JV+ af8A1ddD/wCki8/7JMVd/wBCVfmn/wBXXQ/+ki8/7JMVd/0JV+af/V10P/pIvP8AskxV3/QlX5p/ 9XXQ/wDpIvP+yTFXf9CVfmn/ANXXQ/8ApIvP+yTFXf8AQlX5p/8AV10P/pIvP+yTFX1N+UnlDUvJ 35d6L5a1OWGa+06ORJ5LZnaIl5nkHAusbHZx1UYqy7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq//Z + + + + + + proof:pdf + uuid:65E6390686CF11DBA6E2D887CEACB407 + xmp.did:5FCFF6CD6B2068118083DDCF5AC233CF + uuid:ce683a68-df29-fd49-91a3-fb4d92bfa24e + + xmp.iid:5ECFF6CD6B2068118083DDCF5AC233CF + xmp.did:5ECFF6CD6B2068118083DDCF5AC233CF + uuid:65E6390686CF11DBA6E2D887CEACB407 + proof:pdf + + + + + saved + xmp.iid:FA7F117407206811822AEAA5B991C736 + 2012-09-06T13:08:53-04:00 + Adobe Illustrator CS6 (Macintosh) + / + + + saved + xmp.iid:5FCFF6CD6B2068118083DDCF5AC233CF + 2012-12-10T10:41:19-05:00 + Adobe Illustrator CS6 (Macintosh) + / + + + + + + Web + + + 1 + False + False + + 60.000000 + 56.000000 + Points + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + Web Color Group + 1 + + + + R=63 G=169 B=245 + RGB + PROCESS + 63 + 169 + 245 + + + R=122 G=201 B=67 + RGB + PROCESS + 122 + 201 + 67 + + + R=255 G=147 B=30 + RGB + PROCESS + 255 + 147 + 30 + + + R=255 G=29 B=37 + RGB + PROCESS + 255 + 29 + 37 + + + R=255 G=123 B=172 + RGB + PROCESS + 255 + 123 + 172 + + + R=189 G=204 B=212 + RGB + PROCESS + 189 + 204 + 212 + + + + + + + + + Adobe PDF library 10.01 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 168 0 R/TrimBox[0.0 0.0 60.0 56.0]/Type/Page>> endobj 165 0 obj <>stream +H‰TTËnU1 Üç+ň7ŤźI¶ÄŞB >ŕ +ş)H-˙/1vî=§¨ROÇqlĎŚÓ‡oŹőáé±×Oźky+˝šWďő‚ĎűĎňŁţA(~Ţ_ĘĂ×セü-o•2DŐ¬u•Uu´Ńťęőwf˙.—Ţ„V퍖Uź ŔKë…pEoŕZĹě,ąŃQ«Ł!uÄśhq‘©mŽĽďÍg[‚ŇŇÖ ąůDwi®tžjł!GBk2ňT†g:ŠŤ]a–Ć*÷Ůy6?‰ ´9H+·f¨ä„úŞ`UcPĘ1€} ÍŔ“«ĄF€“ĺ„ŢŚ7Á[€WČ^_Ď@ŮŔ-Bí&†PŔŞIEÁ‘5# ŕ87Ś’wÁŤă”›óC7Úh3$Ű8IÉlr›’).FFČćđxŔC=pX yb# ‡Ą´”1ÁÂ7ď´c4ROÖ¤! ó920mĄźwÚJÂ}&?0JŚ&ë `‘<üGCź+×,'őž!Żî€îĹćđ+`Ď$ÝP$őf˛ Ż;ľÂ é~ kf”ą‰éćč±h(;„'ĺšďZ~•çĎĐ«ń‡·$ăč’/j‘XÁ41–JGH‚§I±SĂ +%n›Ű0BÍüŁ…”ż&R~®e_Ëqr$ďë×r”|-˙ő:F¸Ít yűdřĺ ˙“žË?›<ß! endstream endobj 168 0 obj <>stream +8;Ue`\B]'l3Wi]-*=SST5_&k8\Fg9!~> endstream endobj 169 0 obj [/Indexed/DeviceRGB 255 170 0 R] endobj 170 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 163 0 obj <> endobj 171 0 obj [/View/Design] endobj 172 0 obj <>>> endobj 167 0 obj <> endobj 166 0 obj <> endobj 173 0 obj <> endobj 174 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 16.0 %%AI8_CreatorVersion: 16.0.3 %%For: (Dave Gandy) () %%Title: (icon-flag.pdf) %%CreationDate: 1/2/13 12:01 AM %%Canvassize: 16383 %%BoundingBox: -56 -119 188 0 %%HiResBoundingBox: -56 -119 188 0 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 12.0 %AI12_BuildNumber: 690 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 0 -56 60 0 %AI3_TemplateBox: 7.5 -7.5 7.5 -7.5 %AI3_TileBox: -366 -334 426 278 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 2 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: -58.6665 18.333 6 1261 742 18 0 0 134 133 1 1 0 0 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-393 -307 %AI7_GridSettings: 4 4 4 4 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 175 0 obj <>stream +%%BoundingBox: -56 -119 188 0 %%HiResBoundingBox: -56 -119 188 0 %AI7_Thumbnail: 128 64 8 %%BeginData: 5936 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDA0FFA8FD41FF7D527DFD3AFF27F827FD1EFFA8F8277DFD1DFF7D %F8F8F827FD38FF52F8F8F852FD07FFA8FD15FFFD04F8A8FD09FFA8FD12FF %FD05F87DFD37FF52F8F8F852FD04FFA87DFD0427527DA8FD08FF7D277DFD %05FFFD04F8A8FD05FFA85252272727527DFD09FFA85227FFFFFFFD05F87D %FD04FFA87D52522727277DA8FD09FF7D2752FD1EFF7DF8F8F87DFFFF7DFD %0AF8277DFD04FF7D27F8F8F8FD05FF52F8F827FFFFFFA85227FD09F8527D %FD04FFA852F8F8F852FFFF52FD04F8A8FFFF7D27FD0AF87DA8FFFFFFA87D %27F8F8F8FF27527DFD1BFF52F852FF7D27FD0DF8275252FD05F827FD06FF %F8F87DFFFF52FD0EF827522727FD05F87DFFFFFF52F827A8FF7D27FD0EF8 %27522727FD09F8A8FD05FFA8A8A8FD12FF52F87D7DFD18F8FD05FFA8F8F8 %A8FF52FD18F852FFFFFF52F827FFA8FD1DF8A8FFFFA87D2727F827F8527D %FD06FFA85252FD06FF52F8527DFD17F827FD06FFF8F8A8FF27FD18F87DFF %FFFF7DF852FFA8FD19F827F8F827A8A827FD0AF87DA8A87D52F8F8F8A8FD %05FF52F87D7DFD17F827FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF %7DFD19F8FFF8F8A87DFD14F87DFD05FF52F8527DFD17F827FD06FFF8F8A8 %FF27FD18F87DFFFFFF7DF852FFA8FD19F8FFF8F8A827FD14F8A8FD05FF52 %F85252FD18F8FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8 %FFF8F87D27FD14F87DFD05FF52F8527DFD17F827FD06FFF8F8A8FF27FD18 %F87DFFFFFF7DF852FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D52FD %18F8FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D %52FD14F8A8FD05FF52F8527DFD17F827FD06FFF8F87DFF27FD18F87DFFFF %FF7DF852FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D52FD18F8FD05 %FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D52FD14F8 %A8FD05FF52F8527DFD17F827FD06FFF8F8A8FF27FD18F87DFFFFFF7DF852 %FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D7DFD18F8FD05FFA8F8F8 %A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D27FD14F87DFD05FF %52F8527DFD06F82752527D2727FD0BF8A8FD06FFF8F8A8FF27FD05F82752 %527D5227FD0DF8FD04FF7DF852FFA8FD06F82752527D2727FD0CF852A8F8 %F8A827FD14F8A8FD05FF52F87D52F8F8F8277DA8FD05FFA87DFD08F852A8 %FD06FFA8F8F8A8FF27F8F8F8527DFD06FFA85227FD07F8277DFD05FF52F8 %27FF7DFD04F87DA8FD05FFA8A827FD08F8527DFFFFF8F87D27FD05F85252 %5227FD0AF827FD06FF52F852FFF852A8FD0BFF7D522752527DA8FD09FFF8 %F8A8FF52F852FD0CFF7D2752275252A8FD07FF7DF852FFFF27277DFD0BFF %A87D2752277D7DFD04FFA8F8F8A827F8F8277DFD05FF7D52FD07F87DFD07 %FF52F852FD1EFFA8F8F8A8FFFFA8FD1BFF52F827FD1CFFF8F8A8A8277DFD %09FFA85252527DA8FD09FF52F852FD1FFFF8F87DFD1EFF7DF852FD1BFFA8 %F8F8A8FD1BFF52F852FD1EFFA8F8F8A8FD1EFF52F827FD1CFFF8F87DFD1B %FF52F852FD1FFFF8F87DFD1EFF7DF852FD1BFFA8F8F8A8FD1BFF52F852FD %1EFFA8F8F8A8FD1EFF52F827FD1CFFF8F8A8FD1BFF52F852FD1FFFF8F8A8 %FD1EFF7DF852FD1CFFA87DFD1DFF7DA8FD1FFFA87DFD1FFFA87DA8FDFCFF %FDFCFFFDC0FF52FD1EF827FFFFFFA87D52FD1EFFA8527DFD39FF52FD1EF8 %27FFFFFF52F8F827FD1CFFA8F8F8F87DFD38FF52FD1FF8FFFFFFFD04F87D %FD05FFA8A87D7D7DA8FD0AFFA87DFD04FF52F8F8F827FD05FFA8A87D7D7D %A8A8FD09FFA87DA8FD20FF52FD1EF827FFFFFF27F8F8F8FFFFFFA87D27FD %06F82752FD07FF52F8F8A8FFFFFF7DF8F8F852FFFFFFA82727FD05F82727 %A8FD06FF7D27F827FD20FF52FD1EF827FFFFFF7DF8F87DFFA827FD0CF852 %7DA87D52FD04F87DFD04FF52F827FFFF5227FD0BF8277DA87D7D27FD04F8 %FD20FF52FD1EF827FD04FFF8F8A8A8FD17F87DFD04FF7DF827FF27FD16F8 %27FD20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8 %FD20FF52FD1EF827FD04FFF8F87D52FD17F8A8FD04FF52F852A8FD17F827 %FD20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD %20FF52FD1EF827FD04FFF8F87D27FD17F87DFD04FF52F8527DFD17F827FD %20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD20 %FF52FD1EF827FD04FFF8F87D27FD17F87DFD04FF52F852A8FD17F827FD20 %FF52FD1EF827FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD17F827FD %20FF52FD1EF827FD04FFF8F87D52FD17F87DFD04FF52F852A8FD17F827FD %20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD20 %FF52FD1EF827FD04FFF8F87D52FD17F87DFD04FF52F852A8FD17F827FD20 %FF52FD1FF8FFFFFFA8F8F8A827FD08F827FD0EF87DFD04FF7DF8527DFD08 %F827FD0EF827FD20FF52FD1EF827FD04FFF8F87D27FD04F8277DA8FFFFFF %7D52FD09F8277DFD05FF52F8527DFD05F8527DFFFFFFA87D27FD09F827FD %21FF52FD1FF8FFFFFFA8F8F8A827F8F87DA8FD08FFA852FD05F8277DA8FD %06FF7DF8527DF8F8277DFD09FF7D27FD05F852A8FD22FF52FD1EF827FD04 %FFF8F8A8FF52FD0EFFA87DA8FD0AFF52F827FF7DA8FD0EFF7DA8A8FD25FF %52FD1EF827FFFFFFA8F8F8A8FD1DFF7DF852FD39FF52FD1EF827FD04FFF8 %F87DFD1DFF52F827FD39FF52FD1FF8FFFFFFA8F8F8A8FD1DFF7DF827FD39 %FF52FD1EF827FD04FFF8F87DFD1DFF52F827FD39FF52FD1FF8FFFFFFA8F8 %F8A8FD1DFF7DF827FD39FF52FD1EF827FD04FF2727A8FD1DFF7D2752FD39 %FF52FD1FF8FD60FF52FD1EF827FD60FF52FD1FF8FD60FF7D7D527D527D52 %7D527D527D527D527D527D527D527D527D527D527D527D527DFD5FFFA8FD %62FFFF %%EndData endstream endobj 176 0 obj <>stream +H‰TAŹ1 …AţC.#ÁˇVŰq|\Đ"!U‚nhCA‚M+˙;Óî.§ńű&Ďy/ŘĚ2ŠAo†yg [ĆFPP›3Ćü2ë¦â¬µĽw&@˘ěĚ…ČťęNn¶Řա׎ŹäsB%h;ý â–Űńişó*ý`,»—Ż endstream endobj 177 0 obj <>stream +H‰ĚWkoܸýüę‡ń{%Q”(Ł( ę‘ČĂ°˝)ŠEa(ĹVw, 4ădÓ_ßĂKJ˘ĆăGĐĚH"©Kňžűâ«żś]g«ţssĚO|Ź˝z•M˝ë‡SŹZ˝·ëőýv7č¦×çG^źř”˝•Wvŕ§fض}wJ]'ť•ţúuQmĽ7u·ú~ä˝>Bóe»[7čhŻűîřËşľ9٬ľŤ3BDQďĐüţp/OýŔËŢëţşűZo·ítoĚĄžCő÷ÝŞínT˙Ç©w,bď8R/ŇÓËű{{ŢlźRô×÷wM·;úëf»Íűu?lO˝ü{ÝyďëôÔŢ?›őş˙ć©u}ý;ĂžĹUŐ®lď®ŢaZŮŰ ĽR÷ízőáţîsŤÇ)5ó+ůë˛ V?ëćäęíZ.šÝKĂ„z-ço”» 4^˙vŢÜ´¤|hç_GVěĐoîęáwý-m+ö=;ăes·YC‰´ăäDxÇúo|°c°ŁC%śG^Ć^HÓ?ëĄůÚ6ßN˝}×ÍgĂîÂEľoţMĎůýş~íÚę¦Ôěţ}żjÖ?}_öí¸ż`ţ7.ëá¦Ůş~}ż#›’ă Đî»ú{Ł) +Ě7Mw٢5 yDZ»'śs/;qŕ%Q3 ö 'pf5ĎvqZś6Î’€—30őqhoÚîô§ÚňC⛡]ÍF$úD:żtü™5cű»]ÓŮ=Ŕrň÷Ž%ř'ď/0kŮ­ňţNs°Ő†č`ëţĆôMĎÔĎď7fô~şÎ†¶Ó2Ůę‘Wgë{t˝úűÍŰîKĎ^×ţÔ\ĂÁčĘűřůßxŁ’uz—C} xźĆśÔíćčIqŘÜĐx¦_Ňëxţë˘ůżš?7­e÷µY÷GěÔ‚ČâýŁ6Ď‹>[×]=xÔ>I~×"<ťŐĐÔ,{n{PXÉʡOhČŢO pş^0Q˝»EjşŐv’m^— 7mĎË»¸Ö68xj¸ßŢz—}żžÄ.»&鶙ZőřźcŽ3ú űŘ=śÉŘź Q觛Łźť?łôĽ^ŻŰ›ˇŢׇܶ&8Đ?Ídú~Ä°ľß}î×íön¶'§ĺ¬víőşąřľÝ5w/&×+W-‚Ü#nüä‹oőîúö]űy¨‡¶yŇű4_ÚnŰż¸owͬ ţnŁKďâ¶Ţ4´ŤÝmE#/&â +ˇß îÇÇODý öTçôżęU‹„‚ęëMż^5ťw®Ă;[Ľ!}%žZ±ßo"ďŐ•Ř_™ż{p‹ČBĐoD¬ 7Éé§ d[Jżb~5b±0÷ +pŃ€Ń- b ˇ»t.jB>A0ľ /%5AĺÂU-nĽ¸Čc fnaâ@†)`ţ3Ę€ýí—Ź±É|F«3·›čŤ’ «.»ĐwÍŞ\đ›: ăźYŞG˛ŐDłąk–K—mü›Ë?ČuČDsđŞďšYÍqLÄr˛Çpf±ä\ę[I(öX'ĺÄáĚ™†!i¤,µd f9Ň\塴¨4FĎŇ›qą ĄČ*^’B9IEş ió1m/Ą­´âŔ®0&“ÁÍ«ç QLG<ć ])W@Á+°D<Š"%‘ŚŇ(‹TTDeTA‘ˇŕ"±HD*2ˇD.JQ1,(€•F±@•.ă4ÎbçqW°…j‘ĉLŇD%yR$ě$ˇŚ¤±Ld*3©d!KYÁ^B–ň4J!'•išŞ4OË´‚ŃϢLdq&ł4Ë2äY‘•dI!6)ˇ%UŠ.ĄrUŞ +Ö0Ň6ĎŁ\äX@žćY®ň¬ËŽp •ęMHHaTŔ™Rhse}™ _ę,$Č{ÇLds‘NEČ6(hnťď¦dĂĘätǧt§“]¦'¤Ź§ŠŰ4«*J*[8©tČ\µk-č:ÍŻŚHĽP1WĐ«öă+cBś˛(őÓÎi׆†ŚŞ’’/Ą’0ŠSá™ÂÇTr9â%D¶Č6Ű«f[%Ó±‚DŤ‚f1$„´a>>¨ łd—(CҢX Jů ČöŞQÂ&€1â¸1g6•9‡bŹQńp´ŚFĎĹ"Łú=oüźťQMĺďů #GśÄ{ ÄâddOKĚ>Ś—)ČgÔĺlĚ1ÓmŞô Š-v9UĐăˇ@ßÓ=Č=̇Hółń9!zţáŘ‹-NştÚăÜ"mş8ÁěáËŔFdŹ }r<÷1{ śżó‘R¸`ËW{uź‚?2 +ć‡/Ä!{áŔ_ěů!?výiÇĽL55ęXf¦Â2®(fj?O­OţÎŕŢÂqqsqÇü÷˝y¬PGďuV?Î,zkb!­źĆÖ5ő“qIýĆ]eĎ{&žüÉ/+J)ÝqtČ‚M>XÂńfŹTÝqvČ}ç4·'vŔ?µGÎoĆĺě©]tzgĺ©Oůďž{j?~¤ëÇ}ř)?ţ˙»Ýź.đP‰ęž~žL=ňđü3V!(7ę ]m¤öäŰz#śN?•Sq$‹Š#tN@ůy/—^ąŤ+˙‚ţł`olö“F6|^eˇĄB+8B`-dg‘ź:ušd“óĐő•4¤f†}9Ý}ę|… Äd$i’Ô0i’´ć Ľĺ Wr$ˇ)h`ĘČA±ó†QȲ8$ +I†2’f!IC­¦!桩äˇy(3I"粦„˘… Wb‘#‰F™ŃH‘g8˛,Ą… idB’Ś$))áŻĘW„ ‚’ŁZD% K—&Ä% L™$4IlJ>08Itrtކńi°‰•· ą »%ň[”ď;9,ůiwqaZ]‹ťŇ”Ě2”țͩo¨«b,uâŐ‘k®‰dĐ#÷yä:•ÓČé™×<ń©c1O=厓|ÍBĚsßx…eś¬ÁÔ.ńfk¨ęý‘1ĽŇn+˙q?×˙©Ž±° 0FB¬.E¦Ý45 ¤…˛P…Đ—#‹0YˇuŔ×Ĺ>aO/ KÎrŢ^ńeĐ_OQŚ3öB¬Ú’}@HAÉę—#Ştfsi[-ČOP4K“!źv±ŻŠ‘L(‘…|dµNč“ŕŰ€GąĐ¦–k+AŁ!Gń(ZX»'SŹt‚›K`Ě +G‚D`a<Ë; ş@ş¸ÖÄ*\ČqÖ€ă[ňĽHßÇ>‘ô厞ě/7±\e; +ZWrŻĚR——ç1ţŚÜ…l12cL¬oŮ©«í®†»íj±«µŞ­G5›•îşZçnš»Wîą{cíôÂĘŢ·;Ţ‘¸js;fĹT>v´®“YÝ!ź[?Şć>·Ľć«Ă·#^ľšK¶WäŔřp¸ó÷d¬«Ť©óZI·-ľ‰{®(ËÜz\¤Đ–Ź[bw‘/č íŐ5Áoě›âÓ4H¦!â[ Š<Ę}9§ŘyŽŐůĐtYŢ)ú€‹VζË]ŘĘţPßi<}¶ŘŔPe¬`›x_†ëXYÇoá¨2Ö-t‡±BÓtŐł}źńŢľŠmşfç:)‡Ô}ăRžG»łSË“wÝ~ţh›ż„Q†ÉĽë ćĎ/?ůÇ˧Źź˙Ô7†Źż}úĽľőÓ凿ůçż>˝ühÖ Š‚y‘"ÄĹhŃ'e]›RÄ{˙ńś^ůXVţP¶ĺŽËzźq˝ăRî(eŠ¶MSý¤7ܬöÚeš|Ľ:'Űű řx˙_™ć÷˙ţ/ćX^qŁ× ţŰÚ–ŇuÚŇo´Ďh‡Ń΢ E‰¶[š…vv’z’Ř…Đő˘Á(° "a 'Ěěť_úľöü}wč'Ů쇅ÚĆSAčĄÉ éĹ ö6(ˋ锿e{; CËOS<śť‡|vŘ“ÚMŽ*‚!ůéĺT-° +‡i™™FፀPŽŕ,0ŕ t©Y[ö*S?1ń |NĚűú1&a”Îq`;4č§3 BfŞĂś%S=9p”íĚę ěAA=°+wioqYAH1H!(~ú#çÂ:–”Ł„ŁtŁL3däac ±ŽôšI® V2«đj« +§ +ź +ťĚ éÍÖCás7-śT™V,ß$‰Ąě±¤˛˝cZŹĹn­ Pff˘±z!Pl ¬€Ě+ÖČqŐđ5>i=)X’€ é`\÷,@Ş 30`vŘĽę˝-ţnÔ™ńl#ž°ÇsfŔrLşŁ02+3äČ„–ŹłĂ&ÎĄ€dO°ĚÄĚHčôśý–+ŃŠćzĄZ˛ŕ†gşő¸Ď‘'ZfŠ5U&‹Čt‘0$cHĘś!IYĂ+Ž=r t`ŐdÝ4whňŘłÓJ]ŇGËŐ”ü! $†Ě˛ĆéENa¤dYzÍ#“ć‘5‘S$‘=Ńq_ŚŚ$ÓIZFŻ‘„fł'’‘‰d 5%¸*¤F†‘‰aD˘­rŻrd-…aů*†Ü‘P‚ŁČ–Cf&ő!e~F îŕązçŢőĽ]ß]ônĂař–ĎĺjYŻęł\iAëѲ¨äµ5ëÎŽgw8»ĂŮűőĽŇ + TdĹ /K8—W9ëkÇ×מ徿Š—‹FľŞ%ŔŚ<$1f¦=ë#»¶Ąĺ{\ž#ÎâÎűFÎťěÉ©mOŤ˛†Fj·.:Ü^jčľ(—s™qÇ ĽÉĎ{ gýÎő±ăÜÜcřćţˇĄˇ­mé¶E[ŐŞ–ý“×ćđ_ß>üŻ>źŻë÷Äc˝ŮŢ +Ő«śĂv˝˙˙ާîpŤ'Ü˙ăCěČ»ęňŹä·A9ý̵-¬Wm5«ű ď‹Đ°HWÇÍŃŐŐűâěűçęďęđâń«Ëź_ťž=ŢĐz6zmőŇěµÝ{úJËí/M_Úľ6~iýrt„¦DłRp† °’ŔÚö´ń­­ok~[ű[ ´ŔĚ&6hJ¬;aÝ K7$9% ˙ôöůé{ôŹť$I[Asńh4-ěŁAë™Ń‚F¶ŁŹśŃ"zGăja7 Ú,"Řłée|«u Ö_îµ6űĺĘ•üÔěá™ŐŹ·Ú¸?Ć·ħA+qŽó\—Ł\ ĎfDZ˛üKr?.:ťÝ2Lw ˇÁ×÷Çůć‘đ<ĂdŢőż„óç—źżüăĺÓÇĎęĂÇß>}^ßúéňĂű˙üţűÇ/?šőCay_dóŐä·YMUÂ"‘’°ì*ŽĄv(Ž[Ř~ĹóÂWĽC§Ť”W6µMśPXEXĆ=#Žś6VV{žŘ&g¶ËÇ™30u„MEÂ9»Š‡ŇĘć5y"{ZR\»ĄOÇô) ť9Ńxć?O<ńĹçŮý‡µ?o*ö]`ŻŐ¸nP•QC0L«‰ŠŚ«YUĄK…ŇĂÖŚW;ŚeÍf)ˇ•Ű6íGÚ”7ő›†]&Ž•6,CUJM%{«Äą3Éo +Ýů¤îŽz“úŤ4=ѲĘě—Gĺć/‹Ůčé[Uç7[ę×—şM¬X­Ö­J!)QÇĽ«‘¶/ĺȶ(ĄhJ ŚźZpËěěWKoä6üýćb ą|ŠT‹žAÎAN9 ŘXě!>lň˙ńUw“zĚČłcÇř°ŔZ…ŤŤD‰dWuŐĽÉ—QRe. RćĚ ¦„Ęŕ– +'ć{dÔ˝CÍłon°Í\ŕě’†RČs)`Ďć[jT«˛sŢ7#WŕTjĚIEܡĺÁ{Ý×ý〜<7DÔ4W ­XŔA ÇL,m)φyÖ wdÉ˝Rîć5±lNLO* +9Řî±÷ăŁO8¬;XFQK+zĹĂĘŔf&qvb7Ę’öŞě—ŕaŐŃŠ·e—ë †—­/ł^™—ä_*n™?“_­Ž—ŠZ18oµâ˘¶jĐeŻH´IĹC ¬‹¦^eő0ŐרÓQZ¤b›&Łi¤ş-ŐĐjËŞu«–®˝ŐVg¸zĆ;ą:˛őŘxÔ­o=s´;ÇKÎřŇCżä»ăríҤǷ,6dŮóóÁłŕĺ­ă<Ă5ÄĄ‡Č[D‡őµ~Ăęú‹Ąßv±č«ŻĆ{őŘ«›^˝sµĘ«5ŢXaÚXßŐě®1q×hx ·yâŕe<Ś‚g9°$A:‚ű0¸Źű@(‘PP›]¤%®Ń°†ĂK@,qŢĹi CŐwëŃ.Č Ö޵¶á¸ ¬ ’+×té6Ónłć&q®Ř&1ŮOÚda‡ţÝŽŽL"§{vn ą‚ĹŃzz†đjHŁÖż¤ ‡Gao'ĽMÂ× LµÂĐIY)™…ŠQ(Čä3Bş±p­#ˇXb…B(+4š„9Ę™VxŇvxá)$ĄčµŘQ⤕-ĺ¬%l¤`µLűR‘ąTך–-Ĺ3•ĘčËŽËţ¦˛?ş ®µÜRˇY,6ŁĐ¸GUóÖgéÁŤŰ Fś˝ wjucaIßKůsUdiîl˘¸DnůNĚ$,ä•ŚĄgŇňgs˝°Mâm#ÁF±^¬°e‹!âËňÇzĹ ÇTgvńDřóÔ7âČŐžłUçLb Ć°—´É±ŕ±*©R01ąĽ˛€?ZíF>8Jh¬° bďTzJ±Ş§Š‹ŽĽ–š&µŃęę5I”â=Iö)iŞd˘ď–öWŰu‘h·hiŐ·UM\K%~µš4Ä Â~ 5šűĂ^ŔĂΗ ‹KÓ[‡ÓÝC˙•ţ"sRXĂżćä2.ŕ÷?čîáĹßűřŮűh2ÂNZ6´­Ü‰«© ‰O¬ĺłň\ÄŹf;ň[žĆ{ű‘îşßăĂôüřŰ×OŹ_žž˙Ő ýÓç/ĎőŇ/§źţ|~ţô÷Óăésąt˛?ÓŃEĽ×ťúG,ÇYÚfkÖĐ´1 ĹĎg9#!g´KұČ3öТIÎH%cŚ%eX”nŘdŚÁ‰Yň…}"Č”@- #8ă[+‹’+Úm<ŇO®é<$Őç 4ďbŇůzŇHZT¬/Q)IX:ź†+Y§ŇťMĆŃ:źŰ?¸/<-k˝]íÝzSYp»űÜm˛»ü\ýŘĂĎ žÖĺëúĘ–w­áőb*3•vwŮ궍nŰćÖ&'-n×ßĐÝHÚ›4·×÷čŹ~őŻúyďCŠŇuďĐô=˙Ea%Ö2s/Í9ś +â; u´˘˘rezwíż)¨1‡ŠË:îTÔ «“đyŹ-ÁÝVxË +Ădm@Óž) +‚zˇfJNBGfb +Aˇ˘€,?x™ŠaŃLL‚!ę`FXĄ¶É˘ic9a© Vł5 ÁMpa–;aeŮşDXµ,¶­`ĺ&˘{+^ŔĂä¨ón`ÔřĆV\!gN ě9XĚÄYCň§vjh4Äh¨ŃŁˇ§Ć 5[ÔŁÄ'ÎQ5TŐ5í°„±Ď +ě1hIu+ü! {ĐŮ…ć&¤—A/ţ”ßzĹÍáďtŰm·ăcŔ—P]Xł¨z/'N@•¤Gűg·Ĺ­?ÂĄpÓ¤áŻ&+űŽPŘcö#ÜŢ;U8++á‚mU×;Tó€Ě4‰ľT…Ř"p±ĘôĐ™Tj 6,5~›„4× +Ç‹äčf"<,=~Qp¬>E¨T"‹ĐX…H¤ČŮOX’VQbYŞČztT”Ą®ë°`,Ě"af˛¨Ű䥢o{„/ ZHEŹnF^AŰ˙ą íuĐ·nx-nđćnżő‡đ%áL1‰~¨É(ęˇx»¸‘Nü'úQ"±)AJঠ¶$K6ă\Ćú±Ä˛U?â,ęáý¸˘ UCTErQ‘ţ›*RuJBELşť’L‚s-Yő„ĹďTEuĘBa©ÇZŁ{]w. ęB"ó’ظp¦8tŁ}KŽе߀«÷&| řpUw<® h śŔ ‚¨FÄK P'¦&ČXK˘dˇhY Ţp˛‹ž9č;˘,Š6,®Č•śŐ¨®±-ŞĆ kŢ( O¸ŁyqGęĆţËšŐmuł<ŽäŻ$˘ÁXÔlňUcMKĂZhŮ ZĆAĚŠEÉ` –™AÁ*RĄŇ¤˘$P‘!‘–˘ U!*Éë^V˝*ąj SŁ†'’µć¤mÚ¦›} 97­›äżă¦c ć* îf„[@·Ý64·‚nżő‡PdžçqîŃńŇg?ŰižFěx DÎŽó8˘2Zôéf ŁÍ0ăĐŁ¶3 l?ŁH”TŰ'˝ +Óö¦›PÁ=ĚN†Ž¨wŹ®iĐ]Gđ˘C2čŃÓ=:˝A÷ź@¬Ţ …GH ]ůÁM8‹ Ľěá7Z1Ë^ÄĂ“ŘdŕP&zjw xŐP:ę;H€‰ěζtŕ+3;A1ř˘ JbŁaMAęÂ|QdŽĐµe7O•xTQˇ€ść#Ř-HkˇÇ˛VA±Xˇ)7~ +”$`U’wzĹëáä­@$ÖÍ‚I0T6őUZŞaĘ Ä·‘üiÄ Â~‡óĂ® ůc.aç0]ĹHč ·b¸tŰm¶żtű­?Ě€ +ňˇ  +ňýňóűđCA>äCAľ_~~˙BAÂéîˇ˙J¦Ŕ +^}ń/2÷É…lŰ“ąošĐ&Ď'5ĆWRŠQN¬‰9»9mNÍ)š“5†GýîŢyÔţ˛'4'ëOŃŢhX}×Á/ő~Ľ?4öŢâ8ůpßŘvĎß±>aÔčš“3÷޵éŕůó;–çSŇIýCëeÜŮŹt×ý¦çÇßľ~züňôüŻ^čź>y®—~9ýôçó󧿟OźË%,Ťű™Ž/chę±ÁżÚ„bZ0î0| ұĐTÎ1Ľ:L/ŘíäsČ0S> ůn2č•hžč—h2#ţ¸V¤sČ0Ć,ä>h“€lZ z`Ś ¦s|wĂjcßu÷ę.ëΗZĐ­ŘďĎnoő†ĽŮ‡ő”°Ž«Üaüë?ă ö$`oťv_ S‚YdĚ)r·ć†e̻ܰ2ßdUšäŁÍ˘=&Ä'9XßňCkÜÁ‰;Ů#{·!At Ťł2Ľ’kĐŕqŇŰ2Sžsš3?ż~ÎŰž×wżËTŢ}mţŁ + Čź«ňgôX‰ĄÔŞÄę…P“5hv2ÚĆ&‹Ţe;´Úľg˛3,–ĹB{xµH®©Ë®­”]ÇwâĂ}+uÇBÝÉĚx›ľŹýćîťÚűńÚkŁĎb?n(ăîćCuJÝh +™C(B‡,’‘Fö;íŕ RÉi Ý”‘MVŐµEwGŃÜN´6ÂJ„}÷5ăÜ>z‡ěóŤ7Č8Ţpmô—Ć?}?>éĆfŻ*™[ö‘6ś˙Pšţ9Qv×ţS­űŁZ÷»ZGˇqý8„ÎO‘Y˙?öËe7ră +ĂOPď Ťd#°îUF€× ë «, c^dNŢůΩ"›­îžŘ’ĆZŘüˇŐ"‹U¬sţKžHwdDaí©KB Zb5ĎH` +siÎäKr"‚Ŕ…fžŃTŢ༩ŕHp$,‰hd:ö"«¸î€čŢ„MâśĆ:§/jÜ“ĐW€•8ĺ‘ épŤ›dE~,1I˛cTČ‘%W⥬…ů8‰ťôU­A4I#ŃT*—°*ęľi…Zĺ|çĘ+@Çä(•«+3ň%QŇ-‚ÂPHeUËŔ‹ŕʼnă¨EĆ/I˛«!J˘” g =·Lmésgž?1‹Şó)Ě‹ä/Vě/®WŞő~·±'vŮا…›ŘĽĘě3Ż+˛±ž-¶H(đEm§T­ +=ˇM?řS\xŁpęĺ8ľęnŐ"î†ČŢZźÓq'l• +Nţ®Ţüš›ŢÖgĺnŁé´°wÚčÇ(ä‘Ú”şSsşĄfr»«ŇÍ/›05%&Ąć):餅H}iYĘÝR¤Í(S…«TcżÍŢÜşß̡7Đlžf“µ±¤©Ľ6Đ$]ŁýŇ:Ą=A;Szt[XééŇC 9¤C>8ddđ›_“.ÖUŢCQh?)Ź%řL^á¶C\"­5Şś EĚjO—D!&'(Ůëę’vQ»ěr!—*° +q¦[Ąa5r\®1J6Ťn˛ŇM<ŃŤÚîÄ/Ďwźäö'éłÚÓöçO»0›9=ëBný‰Jpm 9  'ĘĽ_?YŢáÂ+«Ě)đěgÍŚžŇ3ÄĘš2L衾Ę«U¤¸¬›vŞRu‘ÚłčńB-ŽÔdŇb°úÜűÎj7V,wB–·ş Ëc˝óŢ}‚u+ŻdB°żú +d© o(ĄHIeJ«ňć& +mˇŕ6DH$ľř>÷h'ĺe°héPDZNV‹Ëή Mšj5Ú_tÚ¤ÖöčżÖŤ­3Cw ±»Ô;ąt7Ň8‹ +NAi+WĚ*ÁgĽĺÍ—ĚÉęŚöÄőíi‘ľwÖľĐÔ{Ľś—Űfćtn2»¨łËjÎó{DĐ/)ZghŽ-XŽ9^f9łĽťgĽĚVgvĆ$Eˇ%áµ +wHl” ŢhJW…ń,2ł¸ą¬,Ć3y™ö\WfćGâ˝LlýĆ.{v4ł”I|$ŇÁ!mfu|Ý牿W'6NĚۨYC|oQ壍Ďď{Ŕë|ÖŕĚńGsľ{Ä»Ž}— Řţ7ÝRc|‘4«9EÍň"jć«ÚŃŁĘ_ĚÍń› řĺhpŤ›śaúÉm09Ç–sś9RÎÍ[ÔTdřh1©E¦ćxD-Z¤"\éTÚ!Á‹FÇJ˛X4©ŤšÚfŁrłÚM'jiuOČâH4FBŕŚ0­ncâ†$ĹcDb‚?ż± §„ .»5gTmcEŠR%’ÎqeeîJPńł­ąIʇ»â· ř ;<@Oć&‚܆•ë0sĘ9§ôs$"s¨Ëššć4‡Ý”¨Ĺ,ô©•(—¤1Q´]E$eĽb}‰qŁFşY=Ě*QŹ:´ýąwQÇ˝AeBqTĽ ´AÝ «TŁ/—¨ň/3<— #…§áÚ +Ń> Ď!@X™ÚËĹřäžěSzĘĺą8źrx¶1{ćć›ďŢ:ĚôfW‹çŇÁş”˘śxkcmăřęlâ¤đC˙ëúXÖ?…ü -_&óć‘t>żnI%?ąđśŻćńęx>µüÍř÷řÝúůÓß~ţţÓO?|ţoűbúáÇź>ď_}űô§~ţüýżřôôc˙ę)ţŮÜű’'»§é›ţsĄW»Z˝Ô«¦Xţ¤Y˘Zc×­µ+—í2ČWÄgPlÄ0‹Š­Şc"ˇ.zÔLô, !_ŻíFač6`˙týól ü•Ĺň/˙6WÖ ¨ ‡;›1\-5WbŻ4vMQĄdÉA3¤äÇ©ÇÜCc‹Ś{`”¸xťŃ´¸ťó",ž50ŤŚVCăJĎ0˙¨ďcł˛n +9´§•Y1˘¶rĄĄK“$Í:Qˇa…Ć÷´?0Ęjn– ´ŃäP®QfU—/fÓžą¤S¤|Wr®˝xÓ@9éź˙±_®˝•GţóćK$@0ô}ş‰iÎe„‚X)Š,kׇ]{ĺ5BűďóTwĎÍ>ö‚ňi=Úőqź©ľŐSUo9Ú—ş_ŻZĽ¸Ŕ˙.Ć9î4!a´X*ĺL_-ŁwI‰er^Ą¸¶\-ú¶ďköd°ŮM´ĺš-UŰBG©ÜZb®ßĐ‘kř>W©±›©°¸ZF¤x”ŞÁ‹M.ąP¬ĘÄşDHyą<ÔÚů"u–•:KK›Qf@Ľ FüŔb»\ą¨Ý«DűfáiĎŹüô(—Ř Cĺ,RäaEšEI­*0Ź*‚JŞÖX#Nb.Ł/đ’ź%H"Ź8rH$IJ˘¸•H'€—SI Ý!¬ä•üŢ +˘ľDä(e:wWcŽYwźĺÜ%žXôY úu#Áv äîĆaL,ÔŹaôŁíh$s$r9îúo.G™ÎˇuČÁTsHóöIäAE!iaŘĄ>ĸT Ł‘ę ŧĂsÜa§”KjĄíĂl´GŘž ¸·1zŻH éT¤1şŽ´ąí4ą&”„ß×pČMí^móLmďBm줭ŰOÝR ţ”źąŇĽ!mçY;N´MđŽąZä?îółË“yY"ćedˇóyAYŇćeeaý0÷żu&ÝPřNÖBaHççpçľ/¶ú“’©÷ŹŮR3[§é:RľÇłt­ř2zK®gŃ.áş«éM^Š¸Z9=©ÝL×»ť'űťÝfxˇ{ŢóÉrđůěű¦ů÷w˘âÍRúYMéŰFFŇą»€Yë2˘BJńšfgÖcűçâä˝ç‚|ť#b)›±·‰Ž˙s}ői»{~ůôÂbóçďÄĂé\{>öëXN¤©­ČĂ6DoZô ý°«ÎcŰu&·ĄámłU“őŚAË8” ą1d s@FŹ‘0 #& "’AäËľ?4¨‰‘řŃYcXô†ĂEA# I˛Cś* Ç-č,`,RFÔU@|Čk ą#˘1 HÄ<Ś\Mg§=°ŇAŃ*x† ęIä-„<ň“E#ŤĹ>«÷ÜH¶ß)‘šElÁi˛č´UxŠôôU~Ší«:=Ăüäź&+Ó˘NËS‘ÝXžó g›Ă†‰CM; ŹOłbăT§ú©K] yĐĄ6ĄM=CŠË•XaŮU<θ@#âé+Ü łř=JŇzÄÎDOĺ'ËŃÎŮ +5+† +E G§HęgšRć˘%Ť\AŞ™™Ň+® +Y […®Âך°aĹY}š Üú9lź7Ga·”łőg“#šU’X śˇ`pgš LŠÁÁ`ˇ`0đ(L0L©dJ&㇒OhdBîjbFbâ¸BĎP,X„ŠĹŠC3S±¤5cń żÂcAdJł˘eKLećOVĎĺç˙8ˇ^=¦>¶>‹ô 7Ů­9‘ÜNô5§ Č’Ď +Ä‚pXđ-…îĐŘc­r¬ŕ*YkĚËiÄQ‚ç6´‡řÓça.AÚĆ,dő15t„ /=”ěÓ‘˝đăŽ0Éż–ě×ĎNňý^Ѩ:ŘîÉ/Ą`O;{$ŹkZ\×=É*‘vh¦Úi<*”[GU…·doĐ÷$kX3°˛c †Ť(Úž#ŰÚł˝mF6öžm[6Ż÷ŠRuä0{Ž4p°Čń‡tŐp`ŐP?Źś~Ď ÜDő@8Ă(ŠŔ9D{"jŕŢ"·¸CÇM"á’"2ŹÄčžXÚŘpŰ;wÜĽ!ľ±~$ć÷Äţ€W"ľ xČá'·YăçöřoŔ‹_<ęđ«Á»Şˇk;âę=i Ü#Y%©(€PttGŕŘ“Ń—€ĄO®ł?í˝Ţ‘D¸‡«şbCŽ Ŕć@΀ž˘<’K÷ŕ8Y"puä\°Š&ńľ{0Ŕ9‚uoćÜ 'IpŰ„WBp…Ą ¤ę> đ…(»ľşąź.ľ˝˝ůîîúćţúćçĎ>+Ă»«źŻoÖ_4ßľ”olůć»Ëűű«»›/ÚŹ†çŻ_˝şü¸™>´)u)X×ö±s!ŘÖ8×QĆů CK!ďtČ˙?ůŤ_żćŹşnţÉëüçßůř_ăđí7íżţ­ÚgĹä{~MkLS¶/|´PűőztÚĎ×+űScëţ}>ÜÝ®źŢ_ßŢ\Ţ˝nż`H·źďnoźsúŻęM\ź]ßßŢ]ě.źţÂm]üóúůŐĹ÷WOď?n?ĹŕŻü«Gýä×<Á!źćňVÂzŽX@DąŽ8s˝ŚĹ Bž.EeSűä2O´ą8«u§lŔﱳ(űr1Í ¸Zźş€¤j‰řŽ©|ë{ά9säőhlë}§‰­ö©E߼±ő¦ ^̢íQŐşÔ!úˇÓ`ëlG¬™j–:EVh-_öyňľ¬fbçMŠüVťO DűŽŕ×Ŭw-o…5ĘjU” ­5eO2`}L­ĺ¨ŰbĆ Ö±oqsÔř>ôťčÍÖq4›‹;}/ĆĆz´ :iJZ:O˘i WŁ‰ĹÖéÎŇß´óÖwn2ŇB5ĚŰ6ÁwČâÖX~)Y*tN'×jŹKqB± +]Ň6´˛€Ž)o™+:׳˛íj ÉLFś&_Ůgş#EÉUŰŘ)uë¸CŇěBxĐ9ťřbÇťqîë1)%Éžń¸\.»^\€żSuňąOŽš˝)łä°`M8§uĹ_Îwě´úËęŽĎ0¸WÍą0Ź´mpřÍł¤3,ÂĽĹpm19Íŵ=kP_ň%’ťťQ‘ (­×Ě L÷3TDIąĽVlMq „ߣĂϸ đ3Á Iľ/c[]PÜ9:ąkd1N±ö0eˇ-#Ý›B]6ĂÁ46¦ ¦ĂJóŻł{WŢšöQ”‰ŐO9 Ů屋”y?ÇÉ‹ő `QZB¦%Ńmµ`%'0ůÔüw‡mQŞ—wšşŐ$u`Zj˘» Ân +ňVťÖňÁ浦™TŮĐňÖtŽyž›Îmµ\né-1W/6®peˇ’zśd€ňJ† ŐzĽ8§A™&2–·\Yu™g¨«łiĐtt¬8mžGwďŻV«ĹlÚÓüÖ´ëyžg›ýÉü÷ĂŻ^Q^^]Ţ_=»Ŕ Ô…Óď}sIíÝßľ|}qűS.,_ŢÝţúrSIRűŃÇí“OÔŔđAI>Qä•äůŁ=7#Ő„TÔż®&7 +L­&.v}ňF WČ]™I +Ł)©d˛ɱÜryLŃT… MZ12,ĹŚhä-®Ú—ÉçTßČfÓ V©Ú©ŇTf­C!÷“V#ŮŇŐ +ľĽ¸ĺ=ËĆć‘K‘Ď†Ó I&s>ź8JÂKíŁkŮĆ»vr$‘h¸V˛Ę‹Í úC2–&:Dď”±´”ĽR˙,' č šçWä +-Uižc¨+Íť5ÎŚ˛Ň4Ť*a:/Ą–°]¶3ż4mxžćÁ±6ŕołVE®ä¨)+ŹşÎĉtśötň!9*vÎP;óŤzN¨HY9UJäRNÚ˙q_ćşveE~•vKŕ^ó‘„:@B$Y–ŰH–¸ľ–ąôŰóýµ¦}Žĺ¤-Ëg×]sUýCöČ +đ68ţš3€¬’];¸>ĐYťźXé@çB'U­<đ-˛ë jmťÜ!ź[‡Pcš€ËuŔ࿯Á>Ń»ŕđČ8¤÷0é`Ímđ¨s Ň68&˝&bN†7ä¨ábšÓ&ntó.Ě6+ 鉶$Eôř̢ć·˛ově˙tÔ}ĹÄÜ3§he¤Ş `ś×“ĎďwëŤk g Ź'ş,˛s«1kÉ0îﶗ©zÚTÎ^+0¦ÍťQëČ{ť‡‹ÝŐšż˝ţôÍĐ楡L ¸4éf˛Dr9ů+ߨŇÖTÁÂŚjŰQ(cjŕ2ŠW,(ŁłÎ +ĚÝĆ´¬¤:>ë ™3é?»ÍŔ¶Î´G­Sďuî¶_ox+{˝oîUO©dé]• ¨h(Ź Ň-ä˝érÄ«Í× NfH‘Z·«1F=PdZ€7«ĘQľŻ‚ú‰ň/ŽĆđ§ ;`!­/ŃłŃ5†Ű1.ĽźËÝgńR +Ýď%, ÍÓś†jU¤ě.x÷ň •šő†5¶:*Şëä!hO$PľiÍÜQq‹`şň"HĹptVďČʱ™0lo¤˙ŚăŚ5§d”göĺÁ1tźçĚ5Á}鱢ť_=›˝<†l°¦I˛™t\´†#‹ô ą}“؆jtđY]<ęëyˇŕČŔjĺg†Ś&4o㪺ÚÍ—pý§e_yô,PäÝݨÔD_{čą6;(ÜśźíĂG*÷ţĎâw7ö¬Đš–w°"őÚ¦Nus˘’‡ÜşÁęŔn\GÚúDV$!üe\ŕúĹ_–ڹ㸣˙ă=÷ Đ%ö6Ys¦OwAWÔKčë•“Ž‚Bňx¨*\FI˝şG•6Ňş×ٹۻYn#)ÉÜ˝NÚ»ÍŔčďu¦=jťz­óx·Ż«5z';~çCÖXŇń`˘€*ĘôWM˝9ÄčŕyDGx9ߧ©źe´r¦Rv G*ĺß±`P`¸,á=ůš˛Q +÷uµxg[©;tüT¤\Ö%»#vľku ¶šU[<ŽÝ$Áôĺc8ÚŠ9LZ +ó{XEv pýqCĘŮ™'N0łY! ǦMÄ4ŐrÜŁśŹ Óˇ€Áó ljńxKŔ@Ş0x4.BjăÄC¤5 mÚ9µH!Ř@tWˇQÔľXoČŰq>thˇ»č˘]”s[&Ńa-ň®OÝÍioŽŕôońkč9p$ 15bŹú°Óˇ•)Ci˝ěôru\‚ö§n906e}ĆÔ, ě7’%“Č°Jâ‚n4oĎŠJc¦î+ü‰Ůk-iů´ë.ČAjąVCąáKX—ŞÂ2)ę«u¨ ˇ–G DÉbe'9B2J]ăs‰¸a€bX¸†Č´Ú´™Č_~Ôę™QúR…LĽ÷íËĆ|ŔAaŕQ·¶zşŹ6™ÚłŞiHĚ€¶ËJÉÁěČBłŘëÝ8z'ą|]kGćž«f”2WŹíµddťsůěą#»˘u¶Ë¸}ţ˝Öă=×;D/‰¤ 8 (?…;ŁŇ_˘~ŤÖ‰jŠŚńîűć°Ë3G÷/ôPŽI/#ö’FąĚÜQň(Ć”H™ňÚŚéÓ¨‚—A•r¦'Ť’.{©™[î§Q•„UáZKú8[›Î-W`ląNv†íÓďĄoůőrüő—D_RkW—¸ŁË%ęĽ[·]˘Ę";4ÝŐ% +=úa»D*ßÁĺŃ=ü@Ő\]˘Ę°PMŰ% +%SB‡,č…_B˝s‰ň~îb%Y2'Šy™Äő}ő+¶-˘Gr•&ř]ŢŹ§Áôrď1ŻjŇŮö¸ýrË#~ů–e+Ń{ż÷'ş|ť©ŞŞ¶÷ÓŹs˝÷şDŽ)\Ćyˇ÷—µväę×.ŃéëÎZËűť=ŻńśíŚŰ·Úk=Ţó®pýíő§oő‡>ĺS,Ś`ťe»Łušž$&.ĺLć ÔUNšeGF?B€NŚxƉŃ}ą®µ#sĎ3JťUë۵DŠ•Ëž+2f®łťqűü{­Ç{î§üůż´WIv%! »QÁÔy˛îűo[ňDĺgŮŻWIśÂ€‘eÉpeĄügöé÷p&ďMµĂ6<ÚĹşß„ŕ¤đô¤ĆÉę¨>ÇF?4sX4¬t+<„Ó¦K.‰ÎŽ”o—ĹĎ0°Mre cë3FI…bĺ +T¦^r:ĆdAÓ5x8{'\–Ňće¨ŻÔĘ\ua†l'0}(‡x+Ě}ÔDMř˱¨Nš @›‹(řĂpw°ph‚…zđ;ş5cŚą®}šL_¤0¨°žŁ“Víi÷ pňÝX·ŮD4…•VQs0ŠŻÄą{8ŘNĂ'‹­‚eȸ}„ĆçĺamĆm.ĐYc°+*Ów•…î!?1đáěđpO'J±bęě‘Š˘ĆÝ®Ô45Qá Ňťr&VÄ12@›{ĽżĂPě&…+WEbO_YQ”ĐDŢ\âŁňµ§Üáů:[}WçŻ\ź÷ü/*Ppën*żéU}šË*ô…ËĄ“-Čg˛Ŕújôi ¨łÁŐG3É5aËu´‹›ş¦­ÔŦšű śč;BÚÝm);6Cš«Ow Ţďô ®2Úg„¨´\q¨Q2ˇ×¨t˝Z´M)ŔŐ‘s€D ç‹Cź°7aʦľYwlyR\ď<,~ń-ˇ#üšInĐQ¦|ЇŁ‚ňd®çĺžČ>vXĘwżćŹ"xrüňđQH#÷4|7ŚM8A‘¶ó®K|‰ţ%ŤŔ«j®!µŇiD;XGlo/ÇÝĎśáĺúRîż'Jlę‰ňďH§šĐě:އ#™îý´A!]dK@ô7Ö?¨…Tľâ!–źćŻ(FË™Ă0Ľçń·‚ľÚ6Ľôńv@ˇ•ÜyżĂZm˝sU$öô•]:$Ř› ĽĂňŢ3"ľ˛ÎVßŐů+×ç=ł„í<ó1ĽŰ¨úó3 +. +=Ŕ"ěâÍW!·ŕ_¤ľŚř0XŽ9™űúUÖŹ\‰=seDŐEěÍ…†ç{ĎŚřĘ<Űý®Î_ą>ďYŔĂ<‹#ćŻé +EWQŽfĺ,g›c-ľ¤ÍB4$ěřö~†A7©*UErK_YQĘđ˙Í…ćíwÇřۉ"Ď•Ý ež_WĚËCSˇ>mŘűîń7ŔŤNŞ_Ş hRo ťMYKögčŤ8÷€‘dŽ…2Ăĺ±2×+{úĘŠJ»› ŠěŚőŢ3"ßqÚ8[}WçŹ\żďY{ŔńH0.îŤ"úW€x€yA endstream endobj 178 0 obj <>stream +H‰´W=ŽĄą <ďđ'|©˙p_ÁŔf†Ń€łślŕŰ»Š”(őëuâť™ÁôĽ®GńG"‹ä|‰¤§Í6^šÓ“Z ŹČč/Őńä4ĺ ůë?TŰSk—[®>’kľT’Ć3Këd ý‘™ćëčJőéř˙\€ťŰŽmˇ,O:/=ąěý ˙~ů;üŽňú~¦'ç4J{QĺČ°„đ>µšćŔ˙Cj”ł Ä×o˙4÷óS&ŽĘÔ'7ŻO˘Rź¦ąľdL|¨őĄ©@eU|čĐ8qAp|hÁ™O’=,|ťZá-@. |ŔŤÎŇůúÔžđAŹh’ź:‡Ä”L±«…?DěçěÍΫH± ÎđÉŻQź^GK+v۵#PšąseŽAĂňäą_Ľ?EńŚL›Şl#)®˘nCď—ł_ Ů˝3ňžjł+=µuyUKEÍ“ZpťŞú”†dQÁ#óůŘ×އŢrĺ©2äÖµ‘mÓO:üC,ioó2ą?¸];rÔVőĺ—<”ׯ˙¶LŁ¶”™z¨< ˛2!łł%á”Ü•ŘhřÓńˇKoČËBa +ŐÔ,ş7ě"/4ăÝŤđHƨ–SH”†4™qË•GZ–KUˢ ´!)«?T1_—É…řÉp-äÂűĐőĺľH­đŞŕůÉ ¦ČžHf0J(/Źô’‚/¤ă­Š>)!űńšĄ”Ö.9ÔPkđîh +d[ܤä(\“°ú¶.&T™·ÍŤŘÉĺYH…ďˇé[Ś‘Fż[EYýiB“Jčę•UëşJxFńz*5Áщt/ĄYˇÔLK¨9cbĐm&ox}€˝&ăźąK˝I%ăH“gv‡ ¸PšÄ2˘ÍGđŘG¬6péDft ţ SśóíŕFŤK\* )7k±|ö“ Ô) +Íu3R(‹ą×'Äer¸ý˝6č߶ąŃžWpĄÔúLŁ !¸ÇÂčň3łĘAědGq–CČAEŻ…ş ~؄αN +¦ŻĽ)Ô‡ąo @z{Ä®˘ ‹ÂYXĘLtpľx›Ę%¦µŕ«VŤĂýk;¤ /ĄlA-aj·ÇNFśT:î8­«€ö'™|NÍh^”g›Öî/`Ľ*s<}XŁ˛Č˘”I*źät`ŕ‡uČá>|OŮŻmFpku DI¨®ĎŻhy¦ridřŢ=fľuCÖ'’×v’ë†!…‚F–ŢŠYý` ¨¦ăQ…ç±YŕXܟ܎ąp>t˝ą/AćľĐY‘˛šxTăŔ…ĘlĎLś +‹Ľ×!‹•ý""}Ŕ3ŻK˛¦.› ń“ůQfę%‡SGGW _lľ…®đ˙=θTŠÝ s§SÍçWVɬ=ű=c€E$I59!ŁŮÔTXłG® ŰŁë ËćÇJş…‚ŐtčëŇ•VdÇćBĽÚĂ· ˙·®oqţFĆľIĶP:Ë:Dçh!÷´QćHĽE4&@ë–­ˇÔí:AxÂÔD§ŠĆ/č Ý ĚŔľ‹Q±j±Ç«µ-,HáĚ9,Ž¸q2O$ugŕŘJ¶¦Y<Ö†ÔX'Qp±,𜽳»Mř8¦zď7ţ`iuśđ“9yűb#h˝ăkě!µÓ˛ůFDéV_\gµř,Ě+–ÎbÇ›•ëĘŔś2ójţ“»ÉXîNăÂRŤ®Đ[ĽŮăŮĐ8!˛«† ^{Íë$F˘2®Ó,˙ćL3”c +„ý*űÖŕľb¶e˝„µ–=Ań†1#ŚFÉ8 ŕĺÚÖí€ćŃexyčň’Ę ď… ëömś^”ş´¬úF‘ÖÄ~‹T°xđđHm:Î<83ˇ ž^Ĺź‘ě‘ĹËŻpVŕ¶Ű´ö5Ń^3ń ťéS©î%j +^÷ŃMŰ?Ř“2ďuľ‰LmMÍ{·_&’ľWź§vÜ€xĚJöµ-2tä mŁcűô@ PĂÖ/Xđ´ĺ·"K0®‡G/$G%K‚™ĂiŘŞ•6¨'<›§ĄŁ÷i$ł{FȬë·d®áÎиëë{-ľő>xŇą‹ń{+ĄĎŻ(v”ÂÄA®ŚŞ\TÓ +ÎŐ&˛çtĺÔxäłĺŇuesç˙B‘Ű•)·u‘ÝSJőŘ dç±ůvÉ…˙[×·8oňGMŰ^+§ťĎŻ¨zŇ1ű¸Ůpñrîř"s_€żĄ€­ËĽ¤’Ű˝ô˛ěí1oˇ‘ŹT±E/ Ř´o^…PřzŢăűŁő’› Ҩ›xEř†tP¤¦l›˛Ş +Ľ™6ÎcĚbŐ¸›çtłü‘Kĺ"·®@–M?(*ŠT~éZ-˙˛y —o[îřżu}‹3ę5WąFâĂlwʆçŮZćĺ®őny]ؽ套P +űĎŢłĄ(–˙ůĹKÇi0I×鏕˛»ÖíńµQ÷2rě‰&ŞY&ýd `čiW˘g1KľŞ†Í…řÉíZ…÷ˇę=Ęs—˙˙~‰Ýłżď×4zP ő  +°+ŘĽ±CÉ6ř×´VÉŤřćgtÜrhIÝöˇĐueÓ}ŁÓơö:ş€ôI˘ ›q›Ű·#·ý?şŢă BÂđë“ ĺó+ĘŰĺ €®=+ýC×î± †¤yŹÄjăß‘C§ISn],›»§:X,G8·ŚË˘˙_[ćŠgiyŹđ‡ˇĽ!&°Â†RŘď1Ě~~E1EpdET®ś4A¸bµ4sŇD-5Ő[p¸t˛l~, Ô6Ł +Łxě˛čŔ.űĺŘ–ş"r=ď!ž‹üü›ůúĆI + +†ź|-†˘ŐŐ\lĐĘşžXC.6€oÄ—5ëâ—J eË­ę ˤ n+5ΩanL&,3 ­5vN¬ÓŘŞ†o®'€eÍŹmÉAJ +=¬ŽÜamv,| +©íőÖóŰĎ(?kłY¸n4üv† G9ß5&Şöá‹JRź&ŇHí ›ÇX˙–cô6E†®@–ÍÍc EŃôäD¶tŤ5V› ŮÓÄň-äÂ˙ĐőçŹ'ŢîRąkíąĽ–5Ú&¤ XŠ˛ÚđůĚdëÝ|ŕD#.´!E­#ߊ6˛ úÁ@Ő"yUť†ň¸,nÄOnÇŽ\„şŢü3.‰Ó–ł†ś™sŐu€śą¨iĂ|ĘN×X"Ý=µ|_áňÓpčcŤqX9ŞY÷ň·ĐĘ›ŻKW{†Ę¸L.Ŕ†g!¶ťMo!ţř„¤űXÎÄÖ=ČX×(ú[­>oA‡Zfáé˛uĎt˝ůcZ+zĎd«Ç\›ůőçp€T™H0Iq(îĆ ‡‹ +y“Y¨,®5—¦¬ÉĚ;şY&ýäFqgŕ-(]@¦µŮ°ą‘ŹĺěY/×Ţ:‹+ +˙ţĂůR‰ Ę™ű…~ +—¶ ˘¨HUeąÎÜ;2Qţ}źµgć}ORŞRµÁ~—göěű^{趟›ęď˘îą\÷ ˙>ş˝űěęňîęćúâöÍácËŻ‡źÜÜüxřđŃăŻ/î×çŹ:˙ęâęúüÓ›—oÎoľ;˙üůŐÝźno^˝|př=7ţŔ?ţß>8<ű–ß^ńďŁWVńŹ^šČĎ~[Îc»‹1ضŕ0ÂŐD˘UuâÎv‹ˇ®R0–łČ„±A,qęŤ}d ×BhŮj3Şj+ţ±â¦ža&áP }wN¦A9É}HDőHŠ 6¦±gč4ą•šO]Ý ¶3—fNdŐ“¨‡P Č®ŽkěléŔ†TkŤ¶@ážńt˝;YÂvčĹÍŘwŘ÷ÄłVáfü´zȜ쾮ǜE:cż[*´*BH«O¦LŠÚWá3~îš•LkJV§é];u+1gk{0ŠÜ’5€ŕˇ®őŞ Őiď`†Éf%K“™6Ň­˙EB2o6-®¦USÜÄĹR4[pi<Ľí­Ř-Ź˝ © q>Ő4¶˛Äź¬;Â\-Š8ŁâŇ°"j¦-ŔŚ'Ä6°˘[ÓÂşäěŔ|Í®m ëFd{Ýĺr†}bm3ő¦NëÔ¦ő”óŽmËôŹľY5µŠé·ô=m’ÄĆĽ˙bDˇtčĽô%etśÜW®TšH|0çĐş‰Źwó¸XŚç=ăn¶(B_Ľ|E˙©‰(ęLţÇńś2["Ö·®PżŘÔvb‰"ë0ąpĽYRĹS¦_4óÜ`ôúőrpň•RÂP +°ibayÄAűÇŘíď¦IŘÖ†aŞÁd4čişŻo+]F˙)F)SÉÉÚ°÷0ü4…h'XÚ'qÖ0ľóđ©XíđiÔZÄwß+˙ŕeFt1ş¨ő™&ěöŞňȱmi˛8zÖş5 +›!šˇ7ňKśĽG/ÓLĐáfôřťyF-Ňhä%RŔ©ˇ…±äŤřť¨ç¤ľçhŤ·:Őş2.ĚLz+ýŢ®mµś¤Č«u/N¸´ńF§ Ͳď + ë/[36Ďoł?¦v÷ĽßĹěŔ|Ě®m`ćÚÚ.‡¬l Ôí±ůmnÚ4šŕ®óóŽeËpŇ.B«,Mm"Ľx ě“»jß ¶fć FC,CÝżÍíÍęűÉ!Z/§R6`ľ5¶ÔV TQ¸)Ŕ•ş?¶ľíÖTha»ĆSĘ;v-#‚fĄď´óľ85ńj V[Ö6˛˘ĹС ŮíĘX}zZ];9¤ Ąy»‰YŔzĚnm`Ö ó‡%†$4íí©ů={ŇĐgťŮ¬X2ěĹ!Őˇ&ňĚcłwEôhłň#MŰŞŃ÷ÔL$¦@Üń™9cűâ:E'ě¶U.90_łk4¸¶É bíůäµ \%§NëÔ¦ő’s߶etS÷ↆ=Txl%č5kJÓléQ ç@{}íu.ÇlOˇž€°sąźČYŔzmNŰ ÖŃY79NśËďŹÍďËÁ4‡FëĚfÇrß°·&´ź„×ÁĽŞ= ă1e7”dĘNőčPÁ(SŠĚ jÓ·ŐÖw@â;í”]hé2Yz´ë=łeÔ*„"·äxí§ý䵌Zč®ř’ô®˙ÓVńôřňxqw|~Î…±Kü¶Ź÷h_ßť +– ›ŰóŻoŹ?__#˙ǟޫÄ<űŮŐ équüéüËă›_;ýäřÝÝ9š˙ńöćúýöÍĂ˝yy˙,›D,!>=^üâ•«Źç>^}˙ĂĽń«6>˝y˝l¤ŹŃËţíŐó»¦l÷ŢŁňĘ×ÇŰËăőÝî–ô>]ôăâ·€>ąąÜďÜ‹ĺçüîŃăxţůőó)b|rüţęz">üâęçăĆŰŻĘČOúŃX}Z'Ĺ©šŹc+µ˙>{=wŐą¦Â Ežůßł7öůżţđ5ň_ţöwwx>n>5ŇfO-ÁŁÄď?wxrŠnj=Ůď˙öÖíë˙ş˘¦?ą¸ü×Őő÷#‚OŹ—wo9÷Ő˝EâđűňËD`„2YW´Y4ŚMĺÖ‚ţz˘Ď="jSĽB +{ĘÓE/+?KʶęÂ@Şćr2 4×FďĐŘTC©ú›'HĚÍÎęm‡Ä'yô:­4źuń,RZî ®®#:ACˇźZČŘéÄ@™P\;‹Ťe†Ăvi`oĹNeé 0;4€&ă ď×ަ¬ŤW½öˇ8·=‘€XÓ&í–eŇiÂSňF‘ĽÇ5čdłłńęňΆ1Ź;NX7ëa8AŰ-;Dm-Š”Đň•Â´ěMĹŹ‹1őd‹H*ňŤňr»™›Í¤€sl]ä]çrŞI}śI©Ěȱ/´ĘĽčťuŞ`‡TmsaF2Ďe#ťI‹…Čj2˛ZÇ1ď"lU»é(JĹîSŁ_7µëřb¸&U˛Ľh€ř‹żĄI:ľ/ó¦—µxąB))&a,ß4Z7m…Ęë ÝOŇeD4ŁĎ7EÉ >Ď›0%Ś0Ô‡íŞ0P—sć +]Ô1ČĽź'““j+—Ü‘‚-rd‰©ĎÂéžąC1°çŤřĆ_ŇŇ’BĘhďŇU,&Ş^đˇŰžŞĹČ<Ä‚@ íT+Ë6KDz”­ó^¶3M4ŤgíBB13N2n±ĆşTFćtL,R¬ ÷и͍–Ľ/Ťłź®‹‰­”ŚŞVQ=ťEGh‰^¸ŹK›®Ń†–©ł(ЉP%\[Á1€ĐJ űµčíTĹU&[iŮŐš};­xöť¦mťŢFŞ\ ůĘËQµ;mN2˘áIűĂŚ]pâlä«Ţ +Cĺ«â"„±ó3°®…XŮ0O·‘ ę`öíF¤©ľ6ţ$ j‹[Ź Qů şMvŁŢ0°şˇrgç“ ěviŘ…GG~xy'&fNó–YAŽŕyĄ„ŮáÄóŞ<¤ŞovĆy9^í Ţa‡kEtF<Ťq]Ś/&–č/s“=ôí;ô8Ť ÝJ=l\NZFum©Y + +@W®óÍ­Šě5 Ăf§˘sňŮY a y&V߀ËIćŁ +l;…K-/CVĎEN†ý1!ĂýYV38!ôQÜĘĄs]&‰ă8 ˝JŽ QóşÎÓ÷ß6(9©Z%Ć—l ŠJÚ*VS›cŇž:Č 1«÷šq_ěĐ‚úßgĽzR}ľJ*¦”ĎĘQŤ:–Ľ3÷D~moă®r›,¦ţ4–?˛wrt†—üž777ľ¤JŇę¤Ë ]ęÇ.‰lÚ¨ĘÔG…T9 ńęE±Ćp°2by|h.HU&wÁ¬˛ú7K <×Ęi§ůYĘ9rwÓzú`îËćŐŃŤ˘„î%žŁô÷*‹ŠůŁŽ÷úMnÇ6»6ĄÍ#7!`ęq{·ÍňĚ×Y˛l•ŰÝG`o~Ă:§Ór@ů˛÷JJItRW¸'ĹrˇY.â.’hĹnüs{ĺ̆› ö%3#=ŃEZÄ:ĘÎU-ęŕî4™š†ý¸1h©#ÂU=´€ţmßę'Ź®{cŤŚÖľ˛Ř™€h-G h/ Ú-ál«ß4 ·ŃîцG•-Ţ ĐŮźśF\0?ŢkĹyÚ3{ŽČčy¨ÇŘô.⛏â;íé®ě“ćiÖ]˘úM˝F|C[|€żĄB>C6ýŤR8hř“Ő -ŔŹń'V˛‰„TWăâ@°ó>®íULATKo/™.EWMµŕ`.VTű…WYß´C Ě›J¬>÷pů$@”Îi™ątăZ)­DdOa@N.QŻA‹iÂ|ŠĘŽSg¤Łî§ä«×ÂżÝíę8‚‹®ičź, +Ś´ďíR ř˛]u{ă<ş4÷ßö Č=ëÝęĆU (DĚ|ŹĎó~§(Í´žÁ\:JîuŠĚpÚůĺ#ćsÔÜ·ýÓ» 2D‡ŠN¶rX>'oTúĆÜE5[+fóˇrlW©¨Í6EÚ|u§­Ăl%® ;Ď SŔnP9±»%\ęd‘W±˘šŠÎËH*nÖ¦äś]ť{ €1˛}S`ehD°7«Ń‰ň*µÉ{٤/#öÄç»O¬jÍ0+{oĹ7¤p ×ţiî‹2 XštH*¬ +¤KňßHÜÉŞĐฉśr˛ +1éµ®1ň€@ Ůń¨Řú(€#(Q_aŇÓΙߴ‚ȆSÓĎęzGÎR.ßj©¨­ŔŠ°/Q•;1ö>M|UŮRüűrUíÉXóivÍx&đ*{Ą&xÖ˘s’í€ŔřfŇ`˝6ršźŐhÎ|&*ĚůŰŞ0kLml´ôE(qHµ˘öĚŮ* +>3Čć"HĆ•ĄŢ¨M Ó´¨•Cý¦lÜláş}€ăŔ–— ëߨŐó,&)—vҧĹ6ióíŔ9ÖQě<›ŠP’.IĎ#D;ž/wŔlŤÂÔ[TZ¨ĎÄón˘%/}9Y’šÝÇ ×#ănŹ>%¦Jgëé÷93NË\ňĆ´Gç(U8eţhëŢI|„÷y]Vá"4{Řä6Ú?;Ú…®fÓ‚|€jěŚóťzb8:ĹŻ]”ÍÇuŃ½©L ČČ”“vV7O}|tębů,vq'dţ™6ĺĂ€#î(É‹GM„ ŔÔ÷î4yĂî~ą6|đ´ŽlM˛ˇlv)"°)Eš2 rwö<ŞoÖH_K`]Ŕ‡»X8S޲ó/Ř>1=¨©n¤7ˇĽX§n +˙iĺx”Ze Ô\ă™ĘgL+ďđW† éż’+:㎰gÔc§Ô(Á©K ˙ą<ěAkć·ţĎu™ěZV\AôWî,˛oěP_`ËST«R©đ÷^;óĽB`ßx™y˛Ů;U)Ő«H$‰2@lő}´Ű')le“.·°ĘđÁ’-ś~ď·I…p% ×<&w¤Kzü„¨˝(Š“ŕŹ”(Ž +e,EަJ(±µfÜ©_Y9őCîö;<ü¨A +*óÄ%ůçíf¨Z°ăĘ·w‹66]îÎÓP=5<Ł|gy ŤxÜ— +ü2˛AŃîÂe@V´ąŰűuşĂa|­űe5Ín>ĘjÜyzk˙çYzv‰ĄuçůŢ3Čó—^Tňu€č{ń¤ +úŽ"!9ÁĚćr?ŠL¨Ě¬­=CNŇÍŤ` ~'‘«,q €ˇ‹lŽŠwRÇđ?DŹęA­‹Čxř×€©żÚ÷_>ŁA›OĹŹˇA|‰ ě‚.Ŕk×yc×Ĺh®,/ä ´\ĂSnNŠŕřRĚ—ÇW'¶ ŚBŢO)ĎŤ®t1dÂřHß.yâF_O8qĚL+Ííę…Ú4°ŐřšEźY Ĺ6hĂ" f™îý[- P÷şłJh@‘,r/:jÓÍ!NźĚu@&Č©÷çdkę‰(J…*ŞŁüfĄdy<_Đnű„0ťV Pqˀ󒀪h¨ĺ:Đ"·¦Şń(3!ŔB…zÍV6¦%ůN¶”‚ś©1łž­ŹňOŽć§cuţö_ýçw•Ëë˙…WxÓĽ^ňŁT~ˇEř‡Uű ¨YeŔ24}MSä×Ďżhż[Ś|ýülj>¨‡˝ŃJLü|ÁDŮ™vYD'@Ě[ĐCBÖýyST36HâĺgôŇꊯ¨bhÝŤ~âkVÎrŁ‰ĄoĆě%‚§x‡Đ( +¦E>”Ő¨2Ů<דđtE!wľFî¤đu¤zLąň– ţ6[ś¶Ě8Öv™@®”–vOş¦(ě$‡|ß#ÄCĹ…>ަI5ŠšéŘđ±5ź?´vľ&Poâ‚ ‹4§kŹÔf @ËŃÍćű»G)D; Ô–Ş„WNÓQ”óë˛ęM+ćňh–˛-o=ý’ Ô‹ľÉÝ>evů“Ą{ͦo?ëőm&9ÝcłřŃ +yWaA€ZCż×UłĄJ+nżxLkĹLL¨¤ÔĄĆEßY©ŹxXu´Ôx đzz{B)nŁ}UŐi\/ĄiŮdťÔ.y2ţŐ¬ťZup”R?ęo~H­˝‡DP>nŻęQ!gÓ.Ż™ß×5F%gµÇÉ´¶ŠŻ’€űěs˛9Ăj«=á<Ľ†dčdU†H®Ţ}ćŤ.(^ĘVŇZę ě0‘PU.×8jP?&°+r‰-kÔ4_‚é¦ +5BůNkę}ö­ý9-.«f@NÔ°ź1 {CŠu[Ł+ů 4ĚŐŕěaČprEěÚmgĂJŰŮŁąÎú¬FuiŻ|é żAŠŻ‘ßĹ”(űĘż·;ŮjÓž€uëJű­Ř#@\aö(óĎÓŕ©ë–ňx`z^Q±kŰ×č# ëę:łŕvłÖM,9ľŐĹ»śŹDÁy¨‘B)ôŞ ŽŕÜľĎK»ËŰlìJx#yÎq–Yž.r'ňłfjPżĺc Ěâoők ěŔąimvßN5vhű¶ŕV–Üâow˝527µ(Fł0âZ_X~ř5›†ł‚ˇ˘–KV]\R:ľ +đ×E6*u¤ú|f5µ˘°aĹă ô1-ŁÚ Î?y>|Zĺă‰iůÚrÄ^UŁšâd{)úô8{0Łę’†§`w‘cĚŕ—&óźGTUWlěí(n;5Ă}îĐĽt»#T‘Ż˘&ľ}IphgQ’-~#UµÔ>ń8Âţ©»şka´4OPđK­CµżuŰ-ÖÁŘzázĄóYŠ~6ś nx ‘ź%X'Ŕ;©c‹"Ü + ?,ĹžËQT!ňgIf°Ď7’łi[pş@/^Ź|Á»8ěţĹü}”zj†‡š(Ťô +őRS»5%~‚Ť®F‚mĹz®1ÓnUĹXŇ–ú+ĂŚ˘ťřfŇ. ĺÝ1<ľv‚ëQŰľ·ŁÜ3‹ŽM¸Ó†w xWť×>JІc“Ľ#± Ö)Ăź¬[ńŤÝ ă7nĺ(fˇ3…Ł[ů iÎń׉)TSh'RŘę`)»‘ć~ŇLŽi¤˘OVs{#UMl> [EUw#ŤE„r}nkt×’C•5âv'üýÚąźwDGćkłÍy:«nOĆ@Ź­ßůĽjÓŰh–rÁť…±Ú;şMš€ü´ôTÖÚ8™’]2f>'yá Ö*úL%†•\Ť{!€ŃărVëŚ2Ă0­Ëş X˛Â{y¦y磴7»Í^gŘŤŚ'hÄU7‡UkCú˘Ö¶&\_WdzfZ=ס†,u~-‰™B,˛<ś§*µ©ů vłFŢYŁS LsöłMLŘ@ĺ» 3ätÇy4ŔĹ} j”í+ĂlŻĹťvé—†šXŰłvJ-áp%îIm¨Uä„GŽĹ¬tîşź,R\Ďĺ… Ď!“.7­ š[öjś“Q62ź–ŕś×µE¨r7>Zšű§=€żÖŐůmTučɨ«.[,CBq˝f{ó1ĹĎá,,&•Ď"kN—Yh+ÖiČ箩29“g×íF5·Ő ź' 6"ńˇ>ÓŠşhÍŁčtčU¬ăb\#‚@L“­Ł =LdaÔćúx"\‡ť ‚@VbŽ +!Ć-â<KýÁÉgěq…K@•x覇^áęqMĄŐđöęƦ‚)a¦ÄU@ë¶d¦őL[.b9˙t¦ůđlňŮ^Ř$CJ÷öĺÄkĐÁ¤űeGÂ&=Ć›~7yAYt®IGÁ< "Ëý·^ďQŹÇ”=ŁęÉBTĨb¬ ÝÇŤ”¤&Z’j)§‹“č­G€˝Ź‰/¸ŐZ)%¨×ń´Đ<Ř +ŠdI8— ˛ qš’ÝĄžˇÚŠ6#lłšÉÍ{„ěŢť¶ŕŻĺ!4ßz”č…ťu­í[©ĂˇԮݮʲľč.,żsX5ŢnjŽźÎCă ˛Mő‡Ş©Ä¤čuTçĽLzŤŔEĘ|řx"_úm§+Öžô—főRźCńĽ^ +ĄŽ»Ŕ4OŐě- y@{úE÷LÇb®— +ŹşGĄłuŢ™KŐŇeał|ňÍ zćmo¬·=˛-šÝ'7TkW˝¤ݵĂ1]ˇ]›\§«™Ö’Ě ĺ­›Ąđ¦R˘±¸@Ł—SŚ,ORÎ1 ó-$߼ćŐ6Ë•UĹ”ů >˘J˝µcÎnëĹ%šÚ‘˝U¶9>Fş" AAF(úá‘‹ˇ ěwËÝ»ŠÇÓEŮϵčÇűą('ˇ;Fe=Ś€ MÍSâ w':aµ[×˝ďLm‰MÁxF0ýÇ›Cż˘¦l·`élÁ9#ŞPp[MiĽ2çUSóu&qtź §ä”•YÔŁ7đ±p iJű TÎ!¸jZÓđ÷Č˙Y/—^;Ž* +˙•3 ‘€z?†ŕ ”BBxve#E‚Ř +ö ˙žő­]Ýç†Ŕ̉”ÜZ§«»{Żą`Żk⍪ý™čT¤©^jÔß/|÷—ôöTA'€ĺĹŚ©Ď˛•]ÇăöÎ]áŕĹa·†÷µĺyBöëÄ˝YŮŤ*xú倜nČ–ÜĄjÍŇD 8P ę:Ş~JŰÔĐ}Ăp‘ż´µę=iËNľšälÔîW ľ¨ŘŹăý­á_#Čf•Ů"X]‹ÜŞÚ@´Ţ–‹FUÜÂśÉěĘţ+Ä8Íęzĺ˘ŕ9źŐŐ™ú¸g ŕĆć9†Nž’’ęyg„€Üßxâ^˘@ض’|č8Ť«çĘ-* ső5Kßí‡ćg6eô\!5Ř›yN ăU: ůíuo|BEÁ·Ř#2ŰG1ô:u’lË8i)úx·‰ŠĹSđ»®±´k–8~Đ÷"\Ž˛źDĚpĹě«QušŻŢkFbG­3*sČá7Ł"T•mYµeÄELôşós&'©ŽílŮ ëq;©véîżkţk}ó!ŇËăĽ]G˘ ‘© +Ô¶ţşµ~uĄÂçh]ˇUDŻM”#^ ĹőQ§¬WLŘqĚ;ć`&±n¶q+°Dsćç´I !éab (Pń51QŠ’ŐŔžcďłö±Řů( +OQÄ +aPcل͸Ţ.@ ˝h°Őő”…×ÔtŠoŹ óäÄĽ gśv˘t9$ćÂs¬04÷SĚ/bľ©µ6ŠřV{=í€:U8ň˝ĺ˘ +íą:6ę „wS%KxźOmŚÓ¤_Eą™ĂÝö}úµ˘5©şÂ%†żŇ+IţŢ:ťiü +C,ě +IźGŚ‹ĽĆú™-¨s,ĺ<5)Ů´ĆÇfL3ÓTR^ »ľŐXşÖ¸×ŕ˛Ĺ8[ʦ'gĘGĐbu¶«Śâ‡Ä°LŠhÇÁŔ;Ú»ćăŠl”d^‚°lÉ&Ŕ¸Ű“>±,± í0{Üé M€I~`*éŘ%7×Ňpĺ‹UµÔÔŹęíÓŻęlí˝±T=.Ľ†ŘKÂ)zńŞ~/0$ů>Ź|îĚ Ü# ÝÓZ÷SŤÜ +` 0^MŰ:'Ł›Ľżec¨Ăgh!áO@Ú)ĐŇńą=ż Î\F܆~÷[]-J™Đ!ůL l@˙†*ŻtŞŠPoŢ۬ ާxá ÖšĎc™T+ŘX?Ü$0{ç:‹ds-$µcµҲ˛Ň&ŹA?c&N„¦˝Ď_ČôŇçéân1iF.b#$ćX~>ĽŢ{Pť–.:ďŹ_xŁ7_Đx}ý×/ô˘˙óžüříď?|řçă«ß}űçwź>˝˙ń‡—o˙ýň—÷ßżűôţ»M·üďçţôîű^Ţ|řřÓˇĽüá»ď?ýńÇź?ţě»űńŐŻo˙¦ż>łťĎ~×7ţŻo¤IQ’nZZ1ôG’1-%°ľ]˛Y»)k<ŢľÓ¬ôČü¨ßţßÉnuĄÄ‘ő_Mu3&4á9ŕǢ;ń‰úšĆ»éĹ'_q1b aŞŞAý‹D„2tŞ)ÉÖQá†U‹ +ƵĄí(ąő]TQ’,ĘŢ\Đh*ŐôĽĺLĹ[`›tˇ1KĹeĘőx¬řɸֱźsÔśÂZ×oĽwĘŢiÜ%¬Ś-Y k0lĂműžBäjâ"ĄV/…Qý6D’ß!Uz ,°üŰmúżr-’WĆćOĄ/ó”ű×,ÜHŔnO€Ř´°N˛k, +ĹK%D¶Ő˘xŠü#@>âĹmÄ 5Q“Ä ^ )Ž.+V?2Ş_;ÂŔ …‘n5Ł8Ťôu´Vd5{7P˘á!÷|¦ÍpMÎn¤ť× +ÎLxŐőčZpăĹş¤1¦q…ă€ÜKgóe0ďŔ–fçZ¤ŔŠ©¸‰5Ľ‡ĂČâ5Ő?Ö‰R%ďöÎ0_iŻ¦Ç*’™÷Î,ĎR*Ń +cE-©ňĄQ$¶ßtĎŚ‡—Śyj9jÇ_{\˘µsb–»‰¸¶(řä´J®˝\“ĄzQϢŹŇĂ—*€›î…Ŕ8KXÉGmTQd^Ü{ŤáŽ«éő;î–žô­úĹşŐPPťs’­9tŤUĚcµ›RĄj—9éĹŤRî˙p]&I¶+ÝJm@fŃ7㿍˙ţ§:2łž4Ş‚›Ńă8Áëiłiß®©cĺÝđťCŞđQŰo®eťČSšŃ…»}K \Š&7nW9šËé$Ě‘ŹˇB7Š\ßŘňMĎ©“ÖrˉiëŽ\ŤÚ·PČďčG»9 TęĐRáQ=z«îĘb„-ŰŐ¶N&?şžr(Ďe«'LúŞý[6-rť‚§o»MĚ“:Ę 0}5s6%7˝dťîŇhv‘đ¨[•W¶śăY<ą×ŢĘ# â…ÚąOG†p~¶uYß“jJgśQ?:Jăb“śKIrÓ±ľhŘűQ:{,S¶ěůŻeŕwG~•ń”cn5…đ'Č;‰mj†t2”ŽO#’ń®–'©‚G‹ô;!šłîU´PkÔčß™á(&|wL"wł4 +€{ ¶Đ|Wě4p•]%7­Ş4ě9K¬hŹĐa¨[gF0OŻ5Á3|ň*zĄ_ŁĄ>j|ÁAÎRKyFžćMĄvzŰ7lˇJ_VÇŞýˇnÎßÔ«ý!G}"¤#{‡´MO&tj¨ •lG‹–5Ń íµËń“Č»ł\#‰˙•f?޸„úł9łźFôč˛!Üđ•ĂdoŽč»—ľ¦2Ţ>,Ń»d<ł$ľ}<śqBŇŐ†ł´#ę®AYi#ßöŰŕÇ čXęžł p‹asÁcF@Á°őňú` ®!1ĄáAyŔť?ť·Ö¤/–tGÚvłFK+'Ő¨dĘ)Ŕăţ´AŃÖŚčl )|!¸cŮŻyČrE˝ß +{®»ă“»ÔžŢ@i—Ž>łQNĚŽ`D¨f}RżÉ{ľ&Ą¨Üxä!IŞĘ@Ęsţ0(µ»łŢŤ¨C+Íç×QÖ›™Ćü¦Źă¶ßôE¦´íAŞPŁîš˛Ç»Ý®˝cÉ’ß±{…uüŮ,ô‘+–”]©˙R)jl¤B˛Ođ€-Ń–łÚCYQ’ńÔ6ęŘçň*éc”čhw=Â]Áĺm© Ľ=W˘ †=ŐźŚ~h×°ßć0n‚f­$`†@ř7·ĽcQ–ž(ţ—’ú¤i3 h|ł•2$%x¨ YľĹŹţ;ďűKĄÁˇz©ýŢ Vy +Y!¸37ř8ą…oß!h¨3ěYc 9ŐʆŻfŻďZô‡i‘jMÂ|c ^Ěő˘€×ćűíé}€}‚ѧ‹?âŃÄčşýa!2Ü ˝m+(¤?÷˘ČQ$ Ť]ďgGâÖ?/[1ŐćvÉ*HĺÄź.“ L5)óö¸ĚĐÓęił «üW ~ť;đő˘@ĄzJÚâL{Rě±Ë~×,F5}‘=íŰîcRĐś¦˛5 C5á„@›?CÁUŃŹ˘ń×rŤh âo٦c`‰]GQÖ»˘«ąěQ çĄ3|ś“mŘÂjDm„u8L+şŃ-_5—ěŠČ»‡ÍŔ°<ĺî<µť7d4ÍHeg2łwg 5DÄgÓt×Óí>ßÉ!Š}wĄË­jżŰJ3n¦Nßď!ţ‡»V˛ýŮô3QKěŠýÖrרHµßłlŁŹTE*Q¨>@\ŁâuÓí‹ŠĂL4išAYk•€ Ž ˛-Îe‹C”ËŠz;¤S@÷/m΢Ɵ ss”ęę%ś®r„©˘@QUUi«Ź[tč(óî×>$˛»;˘$€…Ń^Ő+™ĐG]ň‰y»4% dX×»ÜÁÔ¡!č,ąęŢő< +A|ž­™ÂÁ“Ŕ”¦±ŘAŚ] =A‡ Ô)oŐM565ďX‰n®OűÔrw<·ť +©Űmάˇ9Ë;dąr{r¨e{bđ,ŤÎnŇÔÉD’ăę쉿ń Ľ ţćŐR +P‰š›«„}jś(ág Ą¸SŃ"lńŠĆN#–7ă„ż—,ŢőźłW^?Jüłfţ´î3y„1űłß,ĎëÎ}ţé=W®Zň©â]xÁΕś­§0â˛őIÍÝ7’¶Î}/ŰRń™pŧq*ăôp´."óŰÔ±/Á‚@Nó¤–PÔs®˛KX~î°o ‚=ŐéąÚö†˛9d÷á¦-ҸÇákĹ÷ęěä樠g~ÝU‡ó¦Ž&Vc™óbÉŻššTÇ6$Ĺň#˘. Č’Š{ź¦třŠĎŇr©xuY O»ăĆ÷uŇ ÉrîĂn>ą™şŇEÉÉÔE–GĄ\ĺ ôN  ľ'šÚ ¬ôACkŢř$Ô€6Ź'ć÷©Z=ŚCş¶äëô&íuy°‡ptŘ/<Ľ{uŢ$ˇ©×ŐŇ"ţ>DbąĆąXóy”$fÓň !q"č#ˇŇ•Ô(Yý¶śžŢóún+ś€'ľB61…Ł Ě–ÓĹ·lĚř*´QlÎî:ú=óIG}«f©ibY;%_G›nƢՓ0<Ö·ľť@ćă(˙F»ÔbiYk§$uˇ·{Ş‹,îíuuÎÓâŁ~oÚăfË›Lá°ôŢU s'¶mĹW´¤ř +5pÓ1g|qľŃŚňĄŃÖźă8[’^ŻŐ€ #LĐGł%đÔÉů2¸±zÚ‘Nnöžč^›ĺ}fŠ’ŤÓŢŃ'ÓC<ĺ„ĘĆA‡›qÉć@§Äď­˙. +-ˇs®¤m*(vůΚ"ÝąöuX¤4~R#!ę«jfKÂάĘE8‘˙étňÓ1JŹ"`B©éh/gőSżeŁRסłĺW˝ďp„ÓŃęG˙N‚eÔŰÄNQ _ĹČŠJ8ážD앨‡<^Ű™˝zôlÚ”ZŞ˘cĄţCv™ěÚqAôWîR2l¨ćÁ^IŹ_`Ă€¶’‚Zčď'˛ŞeCÉĘŰŐ]Cfä ťKž§+Ř6ɨ`§‰)™.1«;§%žŹ%(™"¸i~Młâzčí|­ä2éŕÝ…u]‹»¨V‡v"<‰ď »űFF0aĐ éWBäÜW8¤n‘*¦Ľą“Ć?¬{Ą# +ędr”f˘$9-J7ťáo"yDůŞ‘—gfIôZE+©ęw‘Ý1źŤ8y/c*‡ż‰ ňŇTč'č~lBrG&o¦:ĐËąA™ §9›´3a^®-Z…Ý.1IŢ­<˝—¨3ŢĄîĽPAJ,…HďŐ«:Fi„ب̏>+ZšyJQËŠ"Ń,ý܉¨Y7GćM‚F¸ŚcáP `O=>řg„ŕ-Ąrm[•ľfűlËB®cx¤­[8ŠE0ťůâőőÝW·k°‚ŹşoŘX9<­DW"^ąwbů´’A—âÝňr@×3Ć»/ácĄŘąß¸Ônuöć(:ě)ÖÜެ[čx0]39Şś¨ß¬–@ +×ěóô ]ż±Ńă 8«ż}V,a>6«=sé+!˙Ý„†Yj1÷y7Eäh˛ď&‘RśG" Ľîrđa/H wf^­Ľ+1é9#ÚĂšhzPČ -t¦ë &Ž÷12qvţ„HmNçô\Y%3‰š]éű´HWmáy¬ŃÚu gqÇRÇÝ÷=ŕéℬ}6>+ĽR)Ş ç"şkF^XŠň%ÄŻҦq™ě-Ĺy6đń›9«yN/ńLś3¨ÎJ‘şŚKÎw3» żWđĄĹ—čÂ:#)ą™î§ÔĘĘ“^ęSĚÄŰtZĚËcÉ`â +śtQIB cźt&G))¶¶D•qăé}AŻŘ*m†—Z"lbę ›GĆÖJ»ůÎSF)ţÝŐď”9„ 91U—Ű’6aú ¸yŞ«Ű¤mo‘f‰+/Ŕ¦žř˝Uçe\2ˇh'ůK bŁÉ*Ć”9=.C»ŃŘLĆř¨×Prť*Myi¸t7~˘3ŇtŹ$ѶşiTe•jsIĺşLa«ĐĆR’yű *Ô6aµ§…Yµ‹r3ăw”7•â’ő›lĘ7^Ąż©÷»)©‹Ž›«É5V“â!ß‘9¤ăh°©á„ +ě” ]*0!9`KC`cßx˘\: T¨qĚ”VłBSÄ䮾J Ěüt ŐôÂSh+¸dé©JŢ1‚ ţ„o‡Eţňoţřť—Ľ>čO]łîSEʨkţÓkűĐ)H‡LX×?Ô ŰĚŻź?2KăOľ~ţĂ(·¨zÓ‹jmâJUU”i4ŇE% —–ź@ěN[iµJŚbĄz^®$¬öÎ…Ö]ч^"Ó!ęFCîÎŇáëáY -ľA·tPVél×xDďŰ ]€±2Ćcł†<Ů –üĚŞMYO°®Ŕd›{V,8V¬ëÍGőçBŤ¸$€[ąĄJ˙H ŐÚäřëŕĎŢa!5ËnŹxF¶`ăÇTŮ*^ä%]*Ű€AÔž©&EJľ…P‚ď(Wt Vd–`vB¶pá;€çůx¦5Ú‚«J®4łµó5ĄăzÍD0K]ZĂme"Đq@›]{ŇYˇDÇŽCë©´Ó5Ă#jëUđR«Ů^/îSwE^,vş}4`1ÍiÚPvlš[_ÂvÄ«4ŐŚ7ŽŻlS¬Ż©H›`řyŞń:k›”MŮqä…Grň[Şa˘˙jěŁ=T'E‰{¤~§vÓ- †¸ )ą•żi Ňkj§t÷HLNŤťT–Ł†«ŃśÁ…ÜšÂ8ÇčrŹşc1TťXČ×Ábt,É${á dX=B2čÚ”ÇűÇ +SL¶˛qµ¨ŽÄß«IVXyÓĘÄŰ.Ł· §*\ň{@aa§<ÚÎJš€<€‘şç; o‰5ŐšŚŔ«Ć6' ±ÎyřwÖs¸r­…€Ůń^‹1>j˘çl.ÎZÚš~“ż‘´úý:L;Ŕ$•b­®\“ť2×Č­÷éšăgôŽDJwů§Ą”ľ.ÚĺˇKjEă•‚|¸ÉŢBĹŻ“8ŠI> qb9ĎŮyöoç¨Ă×xg)—T§şkę¬÷BxÇJ¨˘ÇŽţŮŤź."d‡5©OŕŘfUÓŐ>­ůz§]¬îŢĺxľăŇQ¬MŚßi/K´ăxÇ +?s$~ŐĄˇĐ×#XD_†Nżávvvş·W˛K¶í0buJJËDµĄ¸x|ězÄă¸jDéÝM©Ks.ËęÄ-اś9tžT  ¸FĆ|Ř$+¤ł©”÷yĄW—ďČĐ/¨3_á äăű•‘磅 ÔÖ%¤©$Űő4iÁѱž‚ŠMôv­k:H{OťVQŇ©Ű+mÖňŇečCNśŽííôČ~2C&tÓĄ”‰7óŁŹéŞEť>lšf´-ő˛"o Ě\"ЦÝÁŞZzź¶[‰«v÷Č€¶ÇmÓ ëś?§×˝żiźĂŻNcÚńĄFĎ̸PT¨lPĚMlŔ[r2ÂLUqŻó]´L^­;“ăĺĺt1Ő†ß˙Ř>@üáÇ/_?|ţôőóoż~üňÇëď +}÷7ťbSS«ßż~ř××/źýĎ뻟~úńÓ§ßůço_?ňě÷ŻżęÉčăá‡ÓŢ96¦OV3ˇ‚]¦$‚hź6yŔĹ´tşý0/*¦K‘ "+z®1mÔxBůâ°¬ ę† đ±R†á°ˇtpč´…ýp"ĎcĘ'g·]†­Ť>Łk®ś:/Ş ÷Ú R°*ŘěĚačţŃmHć‘´Ţő †ó—čäVYW­=ůDfő’˙g"MŹ ä5ľ<ňšÁjŔÎ3ľXŐÎġ#ŇSŐ€(9)$Úc’Ť·3K;_xÝl˘WáU ív‹›¦ťÖ†éíńŁí&Á·”‹ź*… aw&2ĺ77Ă4đýNůëŇ{noÓf4VGiAVÜ“ŽTNná"Ľ±†ň:·>ľµŃÁM<ç‘NQű&ÎS–MÓçínUKŤŔ¤»>´Çş žŐďfjŮńÄmZ6•Öţz•TřŔ1Î×Q‡Ą:™ývM&§¶čSxSĺµ#š«>ůZpˇ[ç]”doÇc +$˘wd§nîÖÇZ­¸°š2@ŇqîLÁ®ľD0´°ŔhńďPă9BŻÔKÖ3KäăY;QÖętOOh#łŔVŤó“ĹâŢ8ë~ěBFÝ™îÎsĐT'é’+ďLťF¨őŘśłiÜMÇ’eŁŞěÁđ·1âźňţä@ŻJ+«-ňc¶w4ů/ëe’d;¬[Á­Ôě{rěýďÉ™‡Ň}?ÂSŹŞ€+R"śĆ$—Oç#»é{dTä]-PXSˇ*Ý÷w.’±śű›E-k†j]Ĺ–÷jˇ˙}˘Ă ‘ ĺ%1©&‰g<ď>öbŚÁü>ń•ilT'µGóÄV "˘Y€@|űpÔú\-Tş¨o0uňiůč~µ4ÄE#cQÔaţöŞ!s÷]~ŞłHbä‹(Ú’KMpÖ‚ńńÉîEo5űó.ËůˇbĄr6ÂPďůż­ j`QŮV››­Űň?WýKľüú—TgS%7GË/Ű +Ô˘üřÓ¨¸/q—˝˘ë÷T˝†~M°úbz`~¶ďÍŃý©žŁŢťĹŻř5#‰s^1n­a÷!čĆAUÚóoCĎŤŞŮť Ô>Ô1y®<»<Ću%$XŐ“č7ŽĘ˙VŤ~‹?ňÄ|föőýŁ÷őĂ©QŻ†ĺú)í¬ÍrJ„„°€L«ŻfˇĘ őgÖ \É]s‡ĹaXô3&&# "řzš 3VÇšŇqŐ¨í·j ŻľżJ€&Â5”"¸mâąűôłBťµmęŰ®‹v + 9Ţ©`đŞZ5„ňąŻyŞ( •~¦ÇŻWiR!Xç©B·Pd”Â˙ĽWôł +’L42îY椲 i 7Fë¬_/Ž:ňCӲϽČŁ{IF•m¦|ţ+űőH_:0˝ŐžŰ$ÉÜ3ňĎ3_5ö5r» 1ăm‹GUÂČ*HˇW.ťż0ňĺÔ7{*7$Ł3ďgÝ ´V»]ťťĽ/¬oK™=÷±-”š¸°é#šŤ+ă[ý·07D6ęÜLz8™T•L/Dţ+Ća±Inś—9ç… +9¶|ŇżEaRů8ÉŹL×rĎȡD±R¶F@ƮϹßÄkž0©˙rô"úĐE\żňKČ|gż«~É)ln›ěaď|eÚď˙hě˙WO%ú¶söme$·xwKď4źi‡É±ţąYäéł]óô˝Ű·fÖůźKÖC‘ľmWăöO÷±m]6Ýu¨t‹üEJtP¨‰Ç\}TŞ S;ÂGw@XR+Žn+Vy¤˘í¸g_ËX^N1·‹Ż†żWžYO>ľčU-?_Fî´'Ű<:Vă3Ü‚®VŤQkžćG]Őâ3#,ŔW«ś)řďÓŔ¤7˘ą…nZe1SÇü6•©ÓŢ8ŻmšZ „t8/-t e0ç*Ě|Ź +Ů §]©ý.PATí§Vż4Ç™‰Äć,Đpë䙩žDYWţÝxŰń)ş·’h§űĄĄC˙ěýAw|ËĘŢ.ăóköĆşąę™á0ýiľü™Ş¬˘ŹŮôďżxŰ_WO·ök”N©ËAGEÝëé6ľLPe©ő'Ąm‘čŕ¸Ä×JłížhŞ,•RćNçÁŇ+¦v5ćË#¸~kşľ¤Ś+F]s”ČĚÔs×ăwĚŰŔ®Ë;›6hftG3}ĐBăŁŔč%í1ĄĎbź?ěě‚Ţ_•LGĽ“SÂŻ?*$…„Íd¤(KHâpyć$¦ţ†yç»d29ć†m`Śţü ‡Ň{.ip¸Ŕ®ÍůiiîĎÖĹ.ϲ»#s2|]emřâhÎň(Yâq9¦Ç?¶2Ě,=b=VÎ"Ń^‹Jn·‘yçuÇgh‡fŚYX‰™eBÜĚů–śá€âő n÷±ż2\ľ«“.ý:`Đ{ZXF$ŽM­˝nOĆÖ4áF¶î°hŽÓË%">żNŽA7Ö†DdŹâłĺˇqi×űš +µ$§:7–bŰ람‡xsîg|kč,sM;7tž\ ńŕ}O?…ÍDĹ4)˛ć8Q+Ľ74 PÄě©»+óžă(ůnŽ5”/˝ÝÁѬ8äT`á>µźw¤ÉA 抜ŇTQ=1»ăG‡âďÎQÖ¨ZŘެýgüĚĆal «§‚˝?»f5ýăŁL™xV>ĄŰ®=Ý‚ŇĽV…ěišsRrru¤ŹHC c×BÜzËĽću3äň#_"ł$ĎŢg\fľ ‰żľ%Ź8î6gűźâ=®ßk¸úl±ÁYAK ÝâI˛Ý¶IO,ż0 XS‡$-Ŕď7׸6šĺ<ŤcFlV„Łń*ďiČĹÉ‘;ĎÔ®($Žj‚ŠÖS˛g˙Ţ_t-î»F+ŔÓĂ›{.nÝ6Šţ†Ŕń'$&F}öR& ­ß´Ü jóδ¤ÜĂWO\:Ő#~äY1Çe?«I®ó°ą-Śo%S C˘á%Sf7z>J™ĄÚ×ëS÷}ÉęŞvĎ—XÜÓ>=4cŁu˛_ŁäŮ%±šXr¤–<Ŕö˝#ňÍĹOJyd6)„PcA<¤…»¤­Á˙äš`RlŐ™Öw pzeŹĘ{_ŰpĹ úçxŤőeć)±‹]:%zh§aůr—ôAuüŰ”]Zŕ/Šůłm…Ú{Rď@ăĎs%•Đë˘xP¨BâëѸ&ĎXŇ~™ ʝ픥»¬<=’iŃ)ęAŻč˙čÜ˙O-l®×ź˘‡˘ˇ»Ú–ĎŰí~qxpŮŰó}đÓ[/<ËŤOrĎä[‰ç !ęŁ.ő˛Ťż—5ż5[­`Žv"<’ŹŰŽ7^Ůńg†äͬuÉd ˝(Ł3#}ţ&$±řý´;Bˇ[/oć49!{T< ĚE<‡şqĆŚ¶Ýă_nź·¶oý;EÄĺµĺżŁE-;Í…ŚKË3•ą"l÷×öô)—ő̉ńĉň{†řŮ«g‡öÜ&Űb;$»^ǵc@ ܰ¸*eÝGÖł& ŕŽ[Ô«,üR´ę|ço@Óžëčś"šĎÖnmăş.0çá˙"ä×u}ĂůÜŠ‰Ňóć f“ Á׋~Ž|d®í”f˝±ŚB|Ć$š;©ęăüËV>óĹkŇ^żBř-W,Ă–ói•.#.QDßhqd±×}łşŽqJá +r$šbő żÄ;ÜGSňKbb⍊śČť15~ßŮ/ô\Ďô!°AŰiBK©“ÄúC©öµ»ä†@b.:]4šű®Š"!LϧޡôÇz¶LúL.—D˝†ő—€“í™ĎŚŢíÎIU1ňĽçĐ'yýŃČô[ÄiW÷ŚB\~,síCŘf“#ÇÚĺóń &çT†3Zuާ¦UŐ}ÔrăţvTz°-w«ě ŕQ $2S&fm|ľ¬\Ǩ‰IËÓo™A UjvÓWŔ}çzşmW2óqCďC…Ă7śÇë˛:ă"K×@zÔGĄÉ’XOżĹáŃmčç’ŮŢeý8~_ˇM{&2Ź&†Ő!ńÖj߯.w,úú_Ö˥׮«ÂĺŘ«×{ˇ "3ËJŚ b+Řü{ę«^{_'Ŕ,¶dźSg˝»»ş*YJ'.K1ýą8ůň>żţŰ/´Đ˙Y§Ľüö÷ďß˙óĺ‹ß}ő—·?ľűáű7_ýűÍ_ß}x÷öă»oßhB®ňżÇýůíwßżůňý‡߼˙Ç›?~űÝÇ?ýđţÓ‡źě»_ľřŐË×קO\ç“×ú˙UrÄnâ +uä&>ôA\bš Lć%ř—Łüú-:ôĄđŁţ~ýŁ…¶dS•ä)0©8ÖĘĐhaTl WÔÚÎqNQś˛&šä&;¦&hc[”Ágý•îŞ *Š +żerz©ý*şˇ5ýŞŚńÄiňĆď?©ËŤ}ÝNa¦fµé><ŠdJiRµŮŘÁg¦$ˇPĺßĆ™ŘQBuBĘ\‰X¸$rš[ö˛ň$k©¦Š,oÁ}ç4¬2Čz¬Ę…ÖŘçš] +¶+P Ýϡš—UÁ p„NČžlz©÷|EéÜ5gÖ¶ Iš`M¤–×™ťc´«G‚Ě [ĹZ› H=‘=ŃDą+ü:Ű`^:-ħł^µlÖdL‘\dşŘYË]äQźgX†'öÓŢQ‘>ÂФ¬—S™$PăŘEÉś)ž#UB!‚;F Ôbݨc7x …D6'ż·üŢĘz¦ąOöÖslŃź ·bodÔrf*ßtŁsôň©ŤÖ6čuŚrfÚ^”'G¤=Ął{H+ójľÍČöá•mŐ$Ĺ‚a™5|U5±"ĺ)uĎK«ýfbT˝ôn~B‡Ű{‚®VóaŃD V ͵şN))÷iQ}gŢ.ąţ*sçú›ŽÁ”ulu´"~Ö×-Ç^ΊJŠäčBČG¨łŤ8·Äý¨ÍRŐĺĄÎP/±RžŠ˛¤„Ëf®Ó¬AušhÝŐ㬌@ËŐ2uëu˘z’QÍąÓDô`Äć(‘ÓI‹$©:}-čÖ‚%ÄięöJ©˝LaŇY\Źw‚éŕĽŢd‰*šzcŃ«r_ĺ”·–ź=­Q™]ŁN獇uć}1ł‹ę Cƨź™¤‹Îf´8:’Ô˝¶Üˇ8ăŮ’ű ‹_+zf‰Äo5\rWťfňS"¬¨>żŮ!ďYĹ\Iłbşâ‰9Lď"R(V×5^ĎŽ€ ş˛á)-óa°‘žßÍťţ^î׹PhČZˇmťy×ŐŰëĽu”ü˝ň7'Ŧ€š"ľD|ô™ÍËşgÓë–RńMĺv.XΆŘŰUIJ÷Ei¨GŹ;‹mjÖ¬ů{KWe‘˛Űôm#n{B¤Ă2Ás­ á´ńĚĽ¦tĹá=u´•ČşŞ‘Ô¬…É™˘Ž<[›1Iňsqq!5®’m>?ť"nŢŇ2á=ŐOŐŢĹoĘ™1“čÄîÍ<_*{ŞSĽ2hDöŹ3*Ď@?i4 zÝ©w‹ŘłqŁ×Ě®áY Ó•}äޱÖő°ó.Č}kfWĆuvg˘K†šžłµÉ}$ůx‹ŽvzK9¶Ú3čZi{ËĚ;ńWQ˝źŢ>OVéŃ$ľąm ĚN%ąóâ1v9áĄŰ§žŔy¨q8tŠ¦Ç‰ůóřł »ő{d0ĺX_őÖ^ĺÄś×É=hK¤8Ů•yq\ŢgË)U‡‚× &j?§ß îŃ}⾤dŮÉž‚ţÓ3¶‹*Űů‹ŤĐŠxťk×Ă“HJŰжsŘU"E¦čc˝ü·ýć8+/˛«U j+R« +lÁS.’LHl^d’Ć ¶7B®ý™J‘.ž‰Ň +Ś\„§^GŚX÷ +™sÝ2ĄóE#dŤŔ]yŽ¨jÜ5u„ĚÓ~ERR©P\“Ď8=sćoąĐŠüPWďŃÓęľ}ŢŇQĹ)¦Ö¸•Ě@ÂuśźúŹZ™%t(Ż*éçé…fb +ŽÎ¦Łµź"*rfŢ=Uîú*bË[Ő«…5˙”YŃ?:ż"|*ľÓGá1ą?”ňě)WKWgm°Ě+ŤÔňHdÔť‹çjůko-3y5n7(Í‘‹Ď·Ôł‘Ń%ת‡InĚD–KY×p”x×@ťtT"çD ŔvÂ1ĎQSDÜpóŽ ŻHh:ˇ˛7?ÖÍN*"3©( RE;eSo-đ=ŇB#Ş˝lËŁÜfÔçÍ){V.Ż»†™Ú3¤?`ž´Ţ’›çaKę§%7­SęđAň|yÜCŮÇÉ­Áł*~2ŽE“¤ě‡P^ŤyÄŞĆŤkdVîŐ3€ÝŻ=÷ŕɕˇĄ¤ĄRH(yéBÖСćëVF 3\RZ~"hĘ:zĐă" ěL)ěúĚÜ®8ˇsµ©±kÍťÎ<ęOIPBu±űˇ![ó(#Ä˙,Ą´°[ô»JŇžLŻ/‚ÎőŐ·ó®vj#ČräÁC±±rG@WoNŚG3Ť!08Ł˙L3€:„ĘÇ•3®$˛†i[kQ#v˝ß5Ć!ĹŽçYŽ÷¨¦ +őÓgXęş©ç]Ç´jýË,6Żč4žŁ’‰~k¶×qÇ]Y4ušÓ+RP0gâ *S6VŠî—Pę6ĽOşŞ„+""#©^VD1x˘d\i ď™iN‚â…ä„df ÉÎ.DµŃrĚ“z¤¸†`ě«gTÔH`"Žw×ÎÄćnĎŰÜŠˇ¨×5”.MÝ$đ”ôąâ‹ßČíʢ—ţů8 Ś嶹çADî2·ž|Pť:•ĎT"˙Uy™Ś?ů·fSôN™“˙2zašP¨\é´¨ËăDŞôíČÜăÍ€®čó%˙!N + 5Ş §©j 5@Ôdöo<ąçađŃlÖ«~6˘ŕHJĺ<…q>%ÚO'ąëőK~)°l9Őăĺ%Du~˝_(g‚ěŢ3üA«âo<;‰Ż¨UĆô0­/„~ś´˘±8#1ó,ĺ-…VÄ`^ .ŹŝïH¤\gH=nMŻK[9ËmnkÍĽ’îĽi+‡nžŁ,?ľŰă*ą‘gĺEVťß—UÝG-©ĘwWręjw„?¬I˙[¨&xA‰ý¬^Eţ©y=§cD3Űs†Ą–ädĹň’Ź’u•d€*k_-#łÁ+ĺtTłt#«Í“•÷çgPťÍăćŰSO - ČŢ(e—˙0]FY¶Ą ťQ/Ź +ęü'ÖŮAo˝ĎJÉő$„_ Me·ôěás^AƸ‘îKçv«ž$1Ťj[ ·–ź¸MFzD[ŤíéLOŚą#ż´‚ô0ç”xçłĹj"ĺéad]˙8lŔŤ—‰l¸\KŻ*÷{q¤¦Ă>y+źéłéÉu]ö= éW=5°_uőďARůĐsJ+Îŕ ßťK.1ŢÁiëŇA9Ń°•ENľâĂ,nďŇ]g4EKÉĆě•LmźŹÍÎŁA<¸6UŔ+3ţ^d?ÔĎŢ›Ůp®Ń$»Źů­H1đĐ®˛Đ^łxf[HÜŔţj•6]R+±źÉăĂY`í9ÍĘv ‘TGŐîÔJ_±ŰKm§Efˇ‰‚´zֹďŮ´&ÎîÇgPąŁs~uC»"/@ÓŞűkžOňŹEy ge®–ŐŢq]Ł–÷‘*µZŚ4˛jśjëDgôS­»XíJľnözřn\8 Ł1ę’A¢g Ńs˛Ä”}ąGkě ţ)lź‘ĆČrÚZéÔÚÁ·’ĄţŐ+Ç©oŘiEµ¦ňő±”®Ş¤˝w¸O·)Ń[qRćňj<éˇ7ż=Ę®”Ä] …v†ŕĺb!jąbŐÖÎTg é‹Ľ{ŞPµ¬çh“,Ö '‹ţçŚ:oá„k[|Č°ŮN ói‡ćo%ĺ¬y0[k鸥TwúĆđ1<í‡ĘĆşs ŠűFÍĘß©őFčÄúdb,@Ć—FVÄErţE–=5ŢŽúµ.xWJBęĘĚ7ť5j =C\ˇ?ń[»Jî%BDüŹńŤľÍ« `‰<čó~e/čRhu&×Yż@íw•2ń´ÎĺĘB¬qÜŁn<7˘|&,ž‘ľŐ‡n+”Yţ@đ5şĎ”URµú(&měL×ĘçŮ/N–wŇ:ąľS‚"ŻuÉ,tŹ,˝Q1‡Ďť¶K˘Gł_ Ö»;\^çnü —' 쯓… $łe!ń{%&ö UknżiŮ6 X“éˇEćŘśhrŘd>CŘO+•¬!Jź˝J’đUŽxÄŞa˝_:W@dą±•Ś2€ >xűzt˘®"qŁ‡ýKá1Őj‰óŤÝVY{7Ę˝—kë;e(ĘoH«-d—ľ–W^ŰĽµ”µq÷3ĽٲX©őJ +ÂćüÍfĐÇ+Ą„éŘK±şÁ,uŮi¸%!+Ď˙ ľ˝˝( endstream endobj 179 0 obj <>stream +H‰dWÍÎe5|‚y‡» sIÇqfVĐý ‘ءÖ'zH­fÁŰOU9ç|߀­ŰŐvNâźry>,ĆÓ×ě3{Ž1/˙řçOg¶h{§ĚbŻať~ţÜ{OśżžwŢ‘ŐÂ/öD‚ĆĘ7vËŻŘlś9pčBĘ‚wöî«<‰*Ö@ÍŽť·]v˝µB¦ĹŇćŠŰ3śa%ÚmÉn-{cG$™ZťĹL–'2 C xž1|‰Ź+q‘8‹qɉ’CĚoDž5y^v©gRŻçTouŇz\ž7Šâ2Eąk ßt^‡×N”›Ĺ|E*¶¨ůÜoÍěŮ’ŹBî|łn‡Cv%ĺ H: ojyn¶"řJśćĘřŠë•@göY(űŽ +j Ůť·!˘čĎýl>öíf!´Ç±›}•ťE[BŞ„Ř©ô§ĄŻB“…śdw]ÖcľxGT}źdŞY˘ľ;Uż‡ě<ĎeÇâĂ×Ć}+IŢŻĘŰŐ«LÜp“Ő@ß Ák ±ĺ·pÜíŘcUĘQFSvmxťµŔBşĂŽćué¦<ńpUźh—©ÎžČ¸ă„ču•§Ĺ źŢç…“Ŕécŕ:ú^CC°ĽŁ€ůČfU16iW‹°zˇ‰Ž(»> ŮMoD7n/`Ľq´Ĺ ť)«>ů'í…ôVČZY”Ťr¶ĆŇńÁžuuJOfÍqćëg@Çáy^‰ôµ5„;ÁKI>× +SwÔYë÷eń¤]čśCvM„A¤éůČ!d^ŽĹ4‡8ŠČőŞÖ·Gő×ŔúáSđ˛U%Ţń¶‘đţ–A.DĎL&j"˝ěě„ÖŔá;pDŇTr!Ĺ äâoě6:ĂČť¬»y đ“a (dŢçMZÖŁ";Šz€4MçŹf…D…ş7uâ, `•”™OŇ^7Ä“u +¤fŤl.ÎÚč<×+™4Ż5Řu–A'§ĽP­çÜŻ(Z*XH8*vVő#Ŕ5‚Vgoiěřš]ě ř>ćs®É/ěĂSźŔ¸Dň7“„&’xĆ%îşş8‚¬Í˛ 5‘-ˇŤ_|Úö9®K„? bĂ0¸ľggŘ ĐđDXůęL¸sŽňDĽ±ĘÄQ`Ž’żŢK‚UŚ`ó^©@ Ś…hŐŔ‹2\#*“őp š˝D¬çA0!„ ›č>nO +bU”±ë`źšQG…Ďë“hśëj%Ô`±”Ćăď2ëÝ`_ý—üÁBzĽÇźÔ Lůh$—Dő4ţ÷D} +Ç`Ś hAťbÖŹč…ż{Y>~ü“WBĽ1ś¨ ĽżŇuDk:(Ϩz€tŃfPgÎQOŽÁëďő@ÔíŇA?2ëJlťŹî@f+±ŞŚ`ńÄ»KŘŤŚŇ<T˝4Kş )Ü [Fi±áQ3‹¨T@Űč:«ťBJܹŒPq$¦évT˘>ŕ^ó5gRtB$®j5ĘäQÓ4[˛·{É +Č‹)uI@="zwšŁ UĘbW©29Q˝]¤€)JčöŮó®śfŤ$!˝"ńDd‰č°ő.Ď ą]©­¬€Xv‚D†§{^’™3‰vŢ«mx˙ş-T%‚-•ľmWŻéĹX‹„0UçÉDI4ËuŽd@şAÝ!ŐŚËłR3{ŘY(HŃÇčWËಋŠ|¨óĎ]ńv±7Á©ÂĂŹĆÖ‡-d#l“ű•D­Đ÷ϸrĐą~‘łXŞ»%˛VúžO!I‘š2’ĺŔŰiöĘCŔ$ťÖé79Ľˇřr˛‹ ¶ëaŐfđvÔż»á›Ö–ÔÜ%Žy×Ä"j¦űˇčľ,Ď"â=iE{RĐĆeď ĄĐsPPӨܵ*ôâŕ +©fÚ‚©}L%đÔ8)€=cŘ:D•lÄ…ě/Ń1ůńţ#ű#Őç´ >˛ĺB´7L´‹(.n©ś˛ë5ĺ× Ç鳊hçŃ?bxĄ0a{÷”P‘ŕżaň6JĘc«Q. ŽŰi$ +fţů¤†ý:(ú•°]jŠwďČÄę©Ü´ŃľZ«˝k +ť}­@]˝BÂYzL0Ń9)ęĹÄľ™Ťš 19Y·ĹZ‘ł ô%1ٶÓŕň>Súcs&Ămď$)Q'ÇRĘ‹3$ö~YÉűšP" KÜă°ÇţĘCÂYpÂi̝' ë +JýŞĄý¨(5ČinĘS:ĐHv‘–ĂüÚłďµ Řú…dĚ EsY#ŠąZ±ékcĹ~ŔQ~ôç~(ť‚ŢŚ+ɡ-_»4šSuOa-)űÜß7®ż.MŮŇ6„÷CÄ8Ą%á}¨˛Ą č}”ÜA|°ě_ĘB׫g7!˛Ő]6h…uÍĄň»śV|=pýäěXfEjď1×"ó2$QúBÖJXbŢŢ3BéNĺÍ;gGDä–ÇÝ1Ăr6ş^#ŐO=ţ0ŢBgvľW…ëŤbéë»CĄ¶ŇŁţťI°”©¦./ť¨·ĺE NŢś™ŻŮ=ż(T†yÜÝ#­6­Ď¶: ąý~×TzĺzëÄó(Ű%ŔŚď”ß%©rË@ĺ-&7!0R÷…äÓÄ@#_C\;ˇUĚk7h׋3żŠÄż E+;Yag„' š'lV0A7CnËß鼧rsóWŢf|vKŕ‘2ť‘°Ç­•-Ý—‘¦hż~Ň«ifř9gťµj qKŞaŚt-fĘáNě©Ĺζ‹n+,Ó@©Đ$IŇJŰđ¸çCuĄYαƭ>ňhŽ$ÖÂş»rߎ‘dBcGǨŤä\&Ň ¸Ç|3Ý耺SŕýEÓHŹw-A”FJĎ÷iśś’˘eAÁ*hđ‰>DNc¦w®*ßO˘Íő,Ü|)™27}­‹Š‹#–öĹňp)÷Š=»ćLkúiä嵕Ş­‚b‹JÂá,ś‹˙ăô˙źÝDĹş Ôąś×ôUµ˝lxŰ‹Şt Ťq:2€OWö4ĆÔ×zęÇčÔ‰GhTÉŇlkT…nw«.v˘¦@üÇ3-”ר“ +dw˙V‚W˙>îAnľ!č]Ęö?óDe#ŻH™F¤Xí·ŁűG…^퇶VŢ­%?Îk`¤âäĂÁ6űŽ +Ş”tzŮZäěůĚתŇŇ|m(gu&gćP7÷xí)}~ą˝šÎµˇęAęTŘcĚ;©P»(VDK@GI}E»`osé“ľąWeŹąŐŃüÎypDŚP%—‘ˇ@˝‚-łŞ ,óŕĘťóéÓP0d»ýxz‘“3y7ĚĄ3”ŽAÓ´”–?ĐűĆĄĐ!đäŤŘHøćBEgO®ÄVV’z”ˇ¤9gňöh%čŕvĂĘ´ŚzAŹq–jh˙&úU –Ëá®Ń~)ę‰@ö@Şé$n˛7wRČ»Q qť<Ô{~L\Ą~Ěé»nLŐŻŚTúĽśŁËuréiĄ}˘c>Q9cfL„N{uP\9¬wVŘĄŻńi…H:~3·;,ZŚł‘>Ył˛z‹=] +1sľď¤´~Ő  1ť¶š!o.ÖµB2ęQÔ¤N˙%î˝.ŚYÖ±áŤr×OŠAŐÁő@g ;$‰˘'’­ŕ p‚7ď®ĂŞK dK!ę:ĂbG xhϤT-¸î˘Ö1 +ë7Ë[±ÜËHŇůż3–§KŠč¶±tU\>Óîťęl–uĘwÝ´ŹT;膗„ČÔ4#}ŤhŇšVČř +ô¸ •p´EFZ‹™®`Ż^9Č/* ęqůąS­4@µż™%jZ¦dF”šÂŕ{Ş#Y‹g€ +µ?Ý`lO(X-VÚÇÍćŰrNš@çşŇC`šđŽ ą¦“§ú&njb –D“ő7—ÓaJ/±VGˇ ´W^;Üh­#.iŁĺšu*2á™&ćüf0yOz ):3Ďš…©ť" tŰHÎ%InŤ¬ě.…žęč/„.‘1âťîĹ3)Ő7łWrt2A¬ů2˛úŤ=ŰÚ1fľŢU4'/Ió'ĎŰǤ1g›ů¬h-+‰:&…ČžĘi»dŹłć){ů­ŘG‰{Çlę@ŁOĄ…pŽÜŻ!ʬ)f0(ﳧŁ1ÚOcź+ÖĘeŞbĄľ>ÍëŮÎ*¨jČRŤ"íäU.G–# ÂÓ'%č™Be=VaRýpc—Ň绤 nF[ăLĘ4LXEoYÎ4R~[ꌇ€(^•„ŐY»iŠô(ézĘKu}®é—d®}%‰"–ß@­W©pl¨J*Xĺěť"T`t@ďBz»YĺDî«îĘwIˇ'ĺtřn,uü»Ó‚đ{•Z©yEtľ–WnčÉŠę‡3«ę˝ÎHG5bź'Ľ»Q†PÉMvŰ#ąďÜ+ÇoŢ˙)2|ZŘŻ~ćNa.´ŤÇ ©žF*Zöͬ#¨Ŕd ‘řtíÄZę<©ó»e7]EUĐSĂpJSůůák"‚`Ĺ÷i +W&§˝Ę#nsu§Íµ •P;wÜb<••Uę ľn¸2;`˝Ęä! QŦ»íł1ý|šĐuRŤUÝă,ĽlW "B•ľ‰_Řp˙ś`´@"”˙Óü_ŰřÜmNértsaôô·ç!„„źŽÂ;Ť‚‘nd=Ł¤WşiDA®ť»…=5Ť[AćýiTł=)eÝBÉZĎbó‚Wx;¬KÝśmÉĂô(#´÷]ářęFďĆv÷ç’ sÔ‘xí6ßÚkfÜ­g¤^ĺTL +ůŰŰ]9 ‹Ęt÷{]lŔ†W)~}€ýELĽiú…†>1Î9~ńů#fĘŹÜ@>łqoĘőĄ¨&!Ă4÷Ć1 ±şD1g®ěNöµÜµTjŕ¨Z‰OˇX sŇB}ă6DooŢ˙ wüť™h+*.›÷A#(°Y$Ąů!ájuţŚ»ř3ϔ⌿ż Ěš_DŚú¶6eBÝ>XO_§[ś‚]ą8˝–3…Ą€Ú`ä0‘c  a:î?ě±ĐÎgˇgĺ¸í\˛Mląs¦‘©lŮ< +(ś­żc¬(6YŐëĆuLĄ‰ŁĄajŞ·V[ăMf—–uÇ%ŽŮę8_ň¨ .TˇłÔĚvZ€9_Ŕ==ćőŻ”µ|ąˇr+ł9žBnĽn÷Ł2Ĺb"± żsáJ±î!ZVF¨ő )˝YŰ’_˝ÂN VüŃ•ov”ÎC§d6˛u#kŃčń63ăhtިEűĎ3ĆIń „˙(&Ş×;FËľŐ™VKĽ˝‹ŮŔŔ@°ö\''ĘŠfőys·2XAäȶ C˝>*»•«fJ˝@Ł»Ů‚čĚŐ‡U®1żşsË> °ËĽúh ¶đ°^‚ß™idöUż™VyĐ5j\Şă©Aś›˙X뼇ĺh¦Ň&sŞ "Y†rPHMď÷řăCâšjrµ9˙e˝\Zí:® üWöĐ „ôű1L”<„@f!+`}…# üďS_­ŢçČ(™Ń©ŰÝ»{=jUymŞČ©ĐI«Vľ‘ HX湎 ő,(Q‹ńąÂ+±Qn˛›2­Ed§7 +`"Ů'6 ^ŞŰ&,üŁ= ä—ĆA,±ćŠ!kncĄ°sď'%ö‹®Q<ń|OD"ĺqľůD•ęIˇę¬î9ObřtŮ#{ôC“–„¦—ěšl  őÓŃEýBŽ¢ş}x2;+Đš‘"¸´Ńb]u¨ű ÁăťëÔhé9R÷ř‚şuqcz äP$¤u›üÍž6Y:ĎvQťĽ Ĺ»ÎT_éTJÖĽŘŹWÖĺAĂ!ÜŐˇF?şĺ ÍA|ú^'°ŘFżť8ZČ IČvÓ +n1wĆ-%Ćš™ŽŽč(ř‘!sƲčh€ÝâđáŮéÝę—§32ÉtfľľŇYo~E÷ŰüJýźsňőű?ľľţűúćßţíݧO~úńĺŰ˙ĽüýĂÇď>}řîEâ”˙˝îŻďľ˙ńĺÍëÇź_^˙őňçďľ˙ô—ź^?üĹw÷őÍo®·˙Ôż>óśĎ>ëOţżsŇ”FŐ†čX-«Š’ÔVŇX_«đǶ›ćőőöťvĄ+óGý÷ögčo ľšÄFčÎĚ]UęV´Wr¬Bč÷nH˙>ˇŞöé\-Ľ‹jkĐhťŇ/än6ۉŇ +2T,Ş +śŞ;ŘgR‹m`×Ö%ę˘5mkĘÎ’m6Ů6ßŮE«Ě1LđąúsÝí®C9|]ˇíb ń»í64ÔQB ‡×t5ą&?Dn\Şé†Jđ‚…y™V=„uçýrb;íéĆ] )“kfÔô™ib榻ŠG X3 +GhÔă&4–AFq«áŘ|9 :’ľŰ2M&Š†oô%WLµ~Ď[­(gÉň“«»Ú–§ŻłW(Î(Á°Č&Ń”Ődl뤰Y”‰‡PĄłkwăܢsGŠI"P§uŢŹn)&E˙Ý?Űń€`•*Ö[÷˘B0 +,Ç—úŘŚ”Ü[ř@©@çUJa@s÷7ĎĄµbŰŔěÔX•°¬`XŢž†”ł~_XyVťĂi¦UdµÓÁdť0é$¨¸A#:ĺ3ĽnuĺA>Zqhd ČĂi]ş˝>;Ý;€|î(°b»ĽmgÎČćč­Ĺţą#7š:óŢd]HVăh¦¨¬$±–üčü–Ň“d(ń0yąTCVÚEŽf{”&šK•˘»ÔGqCÜÂ"e€ŇJ¬Ú5 ‘ ?cJ !×zlÚ±ÇňŠ“]vęp€1m¸zĽKŞlîTĂľ\˛#6·ŐŢö"ăÚôTça|đŃżuŕ*—T­Ů;˙˘@¬ Ě/âht +@] VşHş˝S쵄śJ©ěÇÎNóÍ8Ťt†˝ż`Ű +’ę‘žc¦tI9ŃeĂ·›Şz«ÉRvIU6éÂô  ą˝[ÝŹ{×|ě!î#§t–‰‘«Ä‘éÄ?&}[ďćĐŕ î1TVM?:úw~ိp ćX§˛ë_îS…ĎçÉN˝bšˇn•×"łbgŐfĚ„¬˛,Ç^®©ˇâyĺ|L]KUz|Jk …_IV¶5§›ů}dŢM—'ä¬ůş™Rä[ŔJjnĂ1úm{vnhďbP ̢‘|¶ź€ŢSl[·fÂë®"·Íâţ©»ůˇňjÝÎ`ĐďLB‰şlÖ`Ťß«ďPlR_ +‹˘ŘŃílĂnęęŘP +S`¬‰OëgSĚŢţ]ĎF\Ső»úKśx|©Öusk_ŚŢ‰˝’ů ~Ą««'…­ÔćqJCQmŤM} ©¸¸‹yŻ[h¦DIÉ0e«ĽűÔˢ$Ó`ôíG‡x8Ş2űť?Fń™óRç#ŇŁ„]Ö,Ŕ+44Ę0˛*6 ş‹4‹ ší‹š’î˝·ťł”΂Č +ߌ®Şť[kXŚčĺ< S· 0JH^*7[Mýż ÖŘŤÓX‰&+‡S ¶íUdˇńÄëúJ ľ?*Řvš5ZębÖ ŹZ˛«kXŕü(úŤŢ…{!j6‹ĘMG¶ŃŔ’RÁ1ęŤò҇bN#˘„Ôĺ17´«Ş3!ˇ–bvŽ|ĽŞĎ×ô;T!=Ç9c+JďgĹ=TQXs’Q92wäôůf’Ń‚ćK*äMČűĺ¨ ŽÂ¨UMĄ ĄŐ{ĚJy§1Ű˝ÍS µş)Ĺ +śŹíˇí5Ý<@¨väL .P Î’loÖF<°jWŰ$ç ď6o›¤‰mmkXţ]»ž]5N)wéSŕń°š¨¨$€!:.šÔ3ňO«ľÁgJIýĚČjbŞqCQ}G …%ď'ŕq§o•úÄ’¦Ő“>ҶWţˇÓTă ˝mĎ(¬áa(4+ Ig¤Ž2žž%dl–gkšB˝ÄŞŔ$Ě2÷:ŰFť±Ęy(q¶r˛ĽËmŘB\»¨Äi ç9K|^Ťľ…ôf +ĺ!s]¬-śA¤ĽŻR¤EŞ>şUxX5%‚ÄSšÉCű¦F»¦ţŤ^´‰9^J÷Ďąň/ç8&,I0[ŹMł°¬ˇcg =ŕóý-qö 1†.Ť´móŞŇuŘă ®°~ĹŚ¨U8,‡K>9ąß±‡x®:ÂZ]µđ˛+Ů»n¬÷¨ÓRÎŮjÄlA{—˘č¨2Ř-×4.;ň Őˇ$`•pTĐ«¨kŞ›4G`Ů`'”ÎSÓ¸č¤E¤ßúîECK ť¨±Ř—ęČ5Ô•{ůw‚ÄĚ#5§şI™;ěf,ÄÇ@b‰jw[n­…BPubČšµ›O#·ŐĄ†«=ł­U»š&ZŐ›žöe˛A‘Wâ“ĽĎH§C%5ű8á›xź„Ő:Ç)ďű‚şÚpéO?ţ +QŔQ +ĚÝ:Š»\_̇R1¨čĺh‚Šäg„?¤=bľ´X«ŚZËy:ä´•p{¦îÁǵE1Ç‚µ•íěXęÚ ˇŁZĺ¨äö]™©ŹHÝ•ŮIJ3  µ ¬B« BĎ6˝"d”=‹¨–ŁĆt{*~b†Č‘#RbčŁ"´HĄ‰˙XńÖ.úgŠ´2Ëá‡M –wî¦Tеľ#™s(hOtżîŻE1ŠzYĺ˘ĘŞ*÷+ŐöZ÷6'‰Ú‹§ĹkŔÓ—Űë8/¸Ë‹šô±)NąTŠę:>†1@Ş+|ˇ)łÝŕ˘RÜ\1áú(ěŹXµŕĐ:‚gŤ'p„çÎő !lŻ"V+ĐÉe¤=˘ ź ÚÍrDí’h1ŤKí+Q}kn(¨akŠtÍý`T" ©" ˇ©X.Őčš DY\KÁ^^âyĘ»iÔ¶@QÜĄ…¬4<ó7[±O¦µľX ÝÄ€ą«ŮjâV’ŚĚ˙’]î8{őFŢĘ;řÁk“Śĺ- ŕtŕxBŢ˝ë©&Źd zK$Ů—ęŞi `m Śűręë˙ܨ”+Ôy|Íß[%ŔďňşÓžHşZ˛Žq®ňhót˘1nĐńCúHĚr&ä ŧ]!mČ|Ź>íÔčăŞ]Wĺ›:´,ZŚ;p–ż ŠJ˸•ž÷ö»%" &ŇŻ9 ÉĘ/çm‹s'‰Ă‹[‰ű:C¬UěŔˇ|•Ăqň¬‚Hçôävţq«é‡H/µ,)´mI÷e AÝúGc†~ÇĚeC茝ëDRÇ{_¤˝ +;ˇšĎ”ÚÉł6eÁ¶Fן¸†|¦š¸)Äőś+¨şŻîséśQŐĹ:­- Ű1ÚZĎu’扤ę2 śĘzň픅܉nt)Čšą.M"Čśąf~vPŇVDŹjÔv€€¤űTő¸őhóŔ(=U ßŮ`9ľyp˝uć:Ć›¬śâ±rHą©ýÍ϶˘jzÍW Kw&dçÎ!Ł®‹Äř˝3EčŮ^¦VËŁľOÎuň“ß,F#!ši|JŞÍŇké°AIn…[]ć°9*qŃÉČž”;´$dNt,yYH¬łľťŁşuűŐ’śŐW"§&Đę¸Ŕ÷IÉ ÓîT{&v2ú8ű•»×8%Ě0y2äFż …sÖ«7S+aXvIF©óuµĐqc g¦aąmˇÜË3!ŮĘM:SB'ŁĹg ß‹u Xo5ĎŠů˝S}Tó8č¶Śë– °Ö°´M=OH¤¦LyD…¶¤IĎ%B6-†(ňŔpĚńW©9&˘µË#ŁT[1iá9î˛lB@d4Śěý +´ ntoŻsů¤!“Ü>Ű2~{ßÔ+S§©_Fła{ăs¬Ě×Čw+Ĺ7™Ň@î‘l6V¶^IB:SňÁ´ţR©ŹT;ö »Tf3rÖę3:hâŔČ$Z¤żJźřÖTébçíe9k˝ě"šőĂČč-ľťĂ +Pčt‘ńoÍŞüŕ;€ĎŔľîhŐýť˝AAŞssĄsć ®«‰§ďÔ2ĺŕżV(aë~O9úćÂA`Ś‚‡ľ™j^‚Č|“"4 Î;‰‚9çó—1w¬řmpřbŁçŔëk.gX’Fîněl¤őĘÉťŠÔľ rő°ĄÖŽÔ(nćŕs«c¶ÎoPń¸QąJ[ü„ +żó}9¶>Ćuo#9 ' U  »ĐxňďOÚ ó5¨zdŃ€™ľUІŹy";Vş—XEŐÁŇ-Ľ$DBřłwÄ<Ŕ˛i¦ÔůŔ 'MV‰ţ†ő*‹‚a𶤠۝炵ĎB)íř 8Ô6éýVˇˇxŠŇ4°1 Ýř_—^˛Ć˝Ň +]iÓű4ëĽRĚw,Ůńi-&D€CÜęiŐzľmŃ2ŁąŞ˘ÖlµË-wm˝§ťęÜŞ±ŐîŚ×%GYígáuÔ÷PVś‘] ĺvťAűŹĆ´.ŮŹ•Ťá|@ţV˝]HŽşn0î˘`Ľč”JÔďőtŮrŞ2łk©ŰÄáĘ"­ĺ +S ëę:ĹPSB)ýŤqě‘úq˝¦Eb?KŐX\˛HŤonkćT=LU-Ě6ŠĆľ¤f°'¸Uëަ»&Í=L€ő Ç…Ŕ_‰é±úą+FŤSŽş;śŔZ;©– $¦µćÚřQâö ?r>łKäŻëR«f Ż_sĐ0˝*Ňyů÷V¸ şˇ˛ď†VB`SžÓřü&»üîWÝÎß{<^ÁşIF€­5˝ +ńŹSęÂy™PĘy5ĺPŻĄëţőx€ëä2Ô+Î’Uý±‰wŹFó–v3?ŔÍ"ţÄQý^uŇă!|5–çĎéËϨ×âIÂŻť1ěfqŘdĽËłčŤá»ít ŽČK#aYëëăŔcÁ .ç´_FěUKRÎu‘güäůăwC˝ěkÓ>P +Ý[Çô(YŃí‡ÄÇ:—0jěHÓ+jmD®J˝]/± éÔTm“„(f +ńř¬OˇË6DČ{ bk{ąÇňöĹŞ÷4ëšÂ‘‰ň$đ7şÔMßÍń Q»¦ţóŚż,ęTŞ6ž—!y+ň­ďy"+z†2ĄŁ¸’Ł«ľn”ą¦Őc^Ç# âG ő€ŮHb#Ő%Ł,bCŤÄ¬äň8€Y@. 3d§Ű-’¶ó(kß^K¸Ţ Ü.Ąg*Óřiäň˙é _W!ýířë_óówýÍTo4#ŤŃŃ~ +ä˙şĐ?¶ć€ĘT´«ůŁhýăŮĄß#Wţüăß–—rwu$W…ţ ę8ĐOfRćXĎu j ©ŔßHľq˘ě¶Ńę1ďÉ/(šJ,yÍŃđ4!üşĘkb‚6ŮTËçf!aë{÷ôÎÚ16éă*+ˇíĚdî룪b1"ä6F} éQ˛dĺ1¦‰®D’>@âŐjEČÎÜJ}*Ó]<Ä“É_T5ź‰ç×íŽjč‹EWQžËVK¤ 1‡uµ:^ęěEw•S"Ö< ĂÜB}] ‘NA°×Ůďx]7c·K/ś>vű*¶LÖ©™Ü:HrŮĽlKM°éüÚś±Ć·0[ÉVd¬JÝTş6W©»EŚŞ‚Ąd•isO3ä“[µĄâGF›:z}-ÓŇźÔ®“_"vÓ5 IČ6Ś-Ś˝:]ň^h”Ů#tś«ďűDß é{ŢOR‡ë:Ѩ”U~˛­’ /2@‰ Ş®ĆÝxiĽĄu;J#jÖn—8śĐš`'o~ä ”Cęfój˘MI0i¤fËZ©yúĂhÎÝÓ:ÉVXqé‘x®bˇšéŔ®®×<wbcl\ę,tčZîŃP±~Ď}FáľzS|t3LçË›ô™lguąŃŤ´§ôÍĄoíIjČD…EöE% ¨‹¤ĘúµięŽFŻ\e$ë7‚Đlţö(äwŔýŚ…vő Gˇ@?‹c\‚ăQ0‚h1áź©ŻR]| 1T4Ún([ĽÄ+†ďx˛ë~ĄšëRoů5D‘fş—$¬KŃ´ŇčjI|MŕjđĂ‚-UçvgĘH˙""@±ŹĐÚŢF9p'@$đxŞsŠ6 |í?¬—K®^·„·r‡6ŘdómŹlyÉ +  b‚<ČîS_5Ďhš€ű—H>şë“ő4UÓr&š&CdÍ›ś[Ý"/ť;Ň˙¸ßm9ő˘™™Ş2-GMXĽ ĐClüţŞď‰ĐD ;KŔ°w ęö´äB—•5!ĺuĹxÜşŃ-ťĆv%xóé’+•dŻ¸€<§0 +Ý'÷éúY5ąîQNŔš1;Ţgž· ,L2ĺÖ…\úJ@ÓH‘‘zMĽË X*SW™+›L¦o8bťć—nö‘$›Éçd1ŘY× \/ŇęĹţ®Ń°jřőŮö‘®/żŹ¦M¬?›üĆA~Ľ–őÇ_>ůíÓÇ/źţüă÷Ď˙yűIĐwo„ąqÚ÷o?ţóËçOüëí»_ýĺăÇżţýŹ?żüÎŘďßţ¦‘?ëź ëo×MpEQőN2»6©L‡AÓ§GV¸uĚŠäiýÄG‹5#$×P @Čd¨¨rV ĆN69´źÖÖÍ8Ź…X8H0p.a×ţd=oUŹŞü}*Ěuĺ%~éŃôBČWëmôű*‘éa +‘ąP8Ű1ƉsúâşiĆaë’-H^CPÚ‰u”CáACréúp  © <¬eg rjNĚ΢űŕ0Ď|2hˇňńÓăfCA0Ň ¶SFN;Ż™şöz…Ik?آXÓ E÷j,]? 3 rűęmbcÄłÎwµM=}Y¶ŻXB L|‹@•.—épó»HQQSÓ© +;’—%Ĺw©žÉXź…QBšŻZ|ÜjŘ`őÇ`UşŃ‘e]î# ™d*#ř|őäCŻ×í7Tź®;!®[¸<¦tľĚkűx·ůÜ$7Wý +tĚ«ĚSmĂ>/€pĐËÍŤ/pbň:ą±,Š_'s)~ăę˙ŻÁÁ×]2±¸ŞÉ Í—«şâRŹŠźn;źřXůŃ33ŞFÔ/ęŕŚ’¨NŁyPŞÇi¶Ę­WŮUż–ŔĹ°Uľň}©FŔśřÝýÔś€soNŕŚů?łV™ő}m‘€+žYÍ˙©:Đ™t­T}—†ź·CÜMu‚?ć`2HAL„&äK'“”¦&“’źWFŮÍÉOíZď®eŕwý›öÖoY™vě׬ÓĘ]©“ŻśqĎĺRÇp·<ů!Ýi“ťqŐŚ‘¤.^đµÁs“)ÝZzŢĽ;Ž­Łţ¨ęŽ†%ću@µ{ĽI%’ăáąvŐ¤‹ĆεLľ’GK‚Y‚ŻhťuĽAś¦?5)ŃĽ5҆VąÎ^[mŇzÉ '?™Çj\4ě ŘőGcc`uţ0ćýÜĆ +`ëđŞŤ4 P$za [ż”Ü9ÍňÚaŁÖŢ+¨ëę%¬ľÖ—»ętGO‹%yF· QÚ±Ĺ5S›o%=» ‰iĂ®«™„µkäăČćMoK « źiÝA‰D€fgt  tYřôüšKśicń3--Í&ł©îݵăŞTĄLçLޢ͠ ę§kžšFó|EBł8sţ˙KMť˛JöĐÓńI«"˘ŐďÉĺ'_ľsfôSiç@ż€F—0«i[óëŰPهM˘8uęÎ1•n'[Užą‡KĂ>–ΊŢ3­ĐÜơˇ;nHŤu&'®E‚yvf…zěV®,wŠW\ RĽ¬ţc­¤‚íuAdk»ą†…d <{MŻt§őJ5ěHĂľAŽ¶Ý*Şťô“żëc„uů‘KžQç°Ěšv¶˝z˛ŻdH5YÎcǤüŰ$g=A2mRZ´@4<ŕ!ńôK_ôgď-É»m…ąŠ*ĺ Xp&UÁ–ŰŮŻşŢ*’#ú î—• 0=ÓÓŹ°! Ă"”ŐZZ­,Çľ€WÄFĆÄâßď9Ő=SŐ}qxŔŹBž9·§şľë”+T©|5Ç…W¤Ů8…|®‹H©é}e§Én©›LeMd'ŕBĆ„ĚL/.>ą˛uXšćŇá0°$©YdJ\j$%çy­cÄi,kŃ´@GĹd*’ˇBvl]…ÔMśw˛UMľRÁ•#ˇŚ1?b”qĆĂHî·0c€yŔxó¸",Ľň%šŇzn!&â}.7Hŕů÷}˛{v_Ů%F,d bäöžl›="ĎEeЦĄ°&4*¤&‚}))INß±€ÂŞ’XtfĚp™ę#°T 0 9!Ȧ ËTŁśĽdb‘»m7ŔĐ p(E™PhŠŕp–#ˇ]'˛áŤS)6ęŚ(żĘ“X»`( Éł$L$Ý`ÉÖw©GÔfZKyu’ŰŁ­eäí"WŹ…ÄKŁqd×A@)Ü\NeĐ[s=°Qt`e¦ćšŠ™w°¬§ř5ą`EĹDÎY©nicá)CFĚi* Ňî,:˘Sŕ´b?Ě‘­˘Ěs€…LĂ·ŘvŇ Ŕ\t ܬ9›“hW§lňµň.h`<3łŕť ďÁ××µ0Ĺe)aťř+€”¨0,eń!żâ‘\BŰŃÔx˛,˘0‡‰ăP†^-TŚIŘˬLldLNR^Ć&’3ăN*‡¸ćXĽ±Ô ČI”ë<Ď\żb9…}ď…ň}ÔŻ‚gď(Ś@ ěď<%ʼn¶&N†Ř%T@Vći±4ÝŚ-ČZaŹSA_ZÔ,ë«X>ň% ,6ą®UP~r{@Ű.Vą%5‚B„„xR!ö[áhÂ{^|°Ľ”‚fą±Y ţBFË;ę2¬-ŇrČĂą4°uć˘s'€Ěr˘®,Őc¨ÎG¤Ŕ¸˝s&vL§&üčBąMAô† 9°˛ä´•DJ€–RЉîĄy}˝˙ďĹţň?|*"ż˘D=ű׋˙PŹ‹ý§“îż|ëôŃţíÍ 4˙ŰőŐĺÍ·˙ëęcvĚĄ%>ył?ýę'ö'˙Ř_Ľ{_żř¦Ťo®nWQ Şţ ˙őâüć}•=Ţy”^y˝ż>Ű_ި[ü]şđĎéż!\ztu¦ßt±|ľűáé‹ůäůĺyÁ÷…ď'Ż®._#ÉngŹřŮţüg~Ř˝úČ_RůĺŮőçOďW9^ío‡ú2¸‡»qxŠ˙Ç·»Ďřă†QţÁËOxřĐíŕ‡—ĂożŹĂ9OľŮ=ÂBJ*—¸I¬/h„9aŢáK@ď»NYĺí.!űçÉuä⋇¸Lĺë炇8çí »Ň HġA¦]ăř”2ÁÔśG—ÄrJ:Ž>#Zb,NÎY ‡:@Č_¦[dëdĎjatÝ ˇń†FŕĆclÎLŢÇVŞ­ +«˛*ÔZuŕłÝۿɤ|Xž÷Ő\fA´A˝đcIŕŹX=hĽęĆáĺ@˛XLQŚbPSq-6®L­0A°Ô0ALhĚŽäv8ĎĹ2Ďd +ihĄbö0Z *xöuĹ>Ŕâő‡Ŕ=ű +Ą7Ď®ZpaČM"¸ĨžÖ`Ś` +C+ě~žçˇŐ ‚g_W¬jü˙ô˝+}}ňđ325Ś $xH` 5dxĎĚE™ŢaŚÉ3çŇ(J_Řw#¦s,(î‚ńÝŞb]‡Ś®Š5fX] BŤłTƱ¤ą\9Ú ¸ÇȬԅKÁ&´l˛`j­:đŔwö…G˘ ×AşRk„©˝źöŤchU¬±ÉŔjż +5žRŻňrć6ÄsęŇŐ€M\7ؤŔ&ÔZuŕ{IW¶7.}çb»‰ŢÂŹJgq~n;—mç2°v.#U;—ŃŔv.^áŁëÎB™1ôRl4PŘh«RŤ]>8+M’ÓĂŹ®w§Ç8wB8(Ľ”‡ąÎ€V5«FŞl4°Î‘m4Äî,fŇĽäNŞ‚Ť +mUޱëŔŐ9ęµfJkŚÍ”Öl0SÚ€vJX§´‘ŞSÚh`§´Ć؞ݲÁJU°Ń@aŁ­J5vřŕ sçhŚŤÍsť­jV3ŚT5Řh`ťŁ1¶g·l°Rl4PŘh«RŤ]>8ëągJ: mč'Í{:‚I“Ą¶0Ćâ⧖zp€fź»É_ÁŽzł†N¨TZ 6ÚŞTcVď€ď:t­O• čĺĘ$Ś–†‰X‹ ¬Ö*Ł~2CßúÔăe&R +6QÝ`››TcVď€{Ź:u­[•!čýJ%Ś˘†ŠXŁ ¬0\F]e¦ľu«a&J%L°l»Á6 6©Ć¬ŢßźŞšý,8/}ýŻpSÔť«,@»DĹ8ő €˘üŰŔź“ó]ýU°kć¬)j•j@«ÂF[•jí:đÁ=/ŤkµbŤ +ZŰFYÓ¬aV'ć˘î2eh]k*Ö„AkŰLÁ&¸la“jí:đÁ}®Ť_µdÍýZÜFSÓ¬UV2uhýjJÖÄ@‹ŰDKÁ&˛lł`“jí:đAçi~śs> ‚€Çŕ:"¦Çóč:®c@Ë4 ¬¬ÄHUţb4°\çP±UcßSz;wűŽ(P–%É´„ÚŔJľŤTĄéĺrËću¨â/»žľH'Ď/Ďź]ţôţőéÍÍţú˛€Ďöď..řÁ«ýíP_†ůánžâ˙ńíî3ţ8¦7ţÁËOxřĐíŕ‡—ĂożŹĂ9OľŮ”(«.‘­Ö?Îi8’\壻¬źő˛Žv—¸ăçď)@7/×ÁĘŘtŹ‡äŮÇäťë0^’‡7»C.kkR…Ł™,QŞÝÜż‚ŰŘČ1¶gY#Kđ­TUUU¦µéŔţ{ü˝s«ąSAč†d´ęŞµĘ ę•i\Ą÷7n-ÄdęB@:©´qÝP“›LkÓý÷20ŇRU”žşTóć6Uł&T­W™ĆOzăS^ŕCčüUFź»H)hşˇ&ü›LkÓý÷’ŞŇrçim—smUląi‰~TZěýÚ˝çŘk÷60»·“îm¤˛[;™?F +¸bÉ©; e‚ťT 6ÚŞTc×ę–áY¨®uŽ ĎĄ"s2¸ö:ZŐ ¬f©j°ŃŔ:‡Ł>ĄÜťĹHö˝s Řh °ŃVĄ»|pűĘ–©˛Č„ołeĄM¬V°Ë{vË#T1ßgjň+ťŃ­ +d“Ą3—ŞżŐ·öě#T1ßgKUđ‹~˝­+únÜ#&dßŐÜΕ«kZ©Ę/Ť–_jíŮ-dVŞ‚Ť +mUޱëŔE˙'ëŐ˛bŮqż`ţˇ7Űŕ¦*ë˝”/lÚŘd$Ś1‚ü€ž…¬AřďY•Q•çŢ+yˇFîD×ÉĘĘGdä%8'ŮÎČIŤ»ÎŢ5źg8«çÁÎśSBţě.oő€ěĽ=VÝ»îbđ\…mş‹k)ĎCÂÍýĄ>W-싧ôŻrđ‰€łzbĺ<đq˝wĚX@˙ĐM{úWŰQDí¬Jwxúżwěmha«áĄôn—C/ +ężµHşÁôßÍ6°´Ş\·ŞÚ«7đfpgťÄ?Vč=8°óöXuĎş ŔĎŻú#…}LŹj?—yďĽtŰ‘ĎëÝzqâ䤸Ź©“í.ţGß»Lđ’Ő ű +ŘVÝłnđ&˛ő¨aÖ#ÜĎýGá;GÝ‚ŕĺŕ·aśP95îĂę”»KÁ‘ř.YĽ$vĂľ¶U÷¬ŰĽ*ŰŐŻ Óâ]˙ľ45Ŕĺ†ÔT+ý–ÔTęéJúç~Ó}şiţ}εó±ç@÷ťźÇ¦ŃÝëߤPOů_‚zzŐąpşÚ9ëhÁ?ĚÁ'ŽV,×~'¨®OwđO?»$đ’Đ űäo›ţEwŻ±+˙ŃÓ¦îţÓĐÎSÇţU>pŚÂHąÎ;u-ş#ZŮe耗lnŘg~Űô/ş{˝Fô«wżřâwýďżýôáËď>˙çźúöűď?~÷i_~üÇż>]ŕ_~őéÓ·Ż?<µ_˝ O_ŕ˙Żx÷˙…§¨Ŕ_˙˙ř=~üĐOůéOý[xú g˙üî79Ĺ:ĎOëGŃ$d‰zşęŔ/W8tě9čÇ—‹ŤÇč1ńiúöGN…îíÂÚŠ¬ş\-’4JřW˙á‡@jMDФł|..˘Uó¨Çs•~^úmÍ°P±}-¬,ŚößŰ÷5d3›áÓíËyŰ‹jË,‚[FžŹpD˙jp.(ő wýrSű­+ŰK +É.ěb~NĽâŮN‚’†=mŕ×Ѳv?š±ěĎŃîGĄŮ“Ç6K‚š[ŮQ1EFLŠťD˛x íTíëdŚmče†Qâů4§Z¶ ´\*_BĚźç—Tč?řGKłďOnđ~e&A“'ł‹Sm%¨än¨.“/D±r<{|cđ¬@§?˛j·ĺřśc°?,ë:ŔVŽŽÓ°‚˛Śôg˝Ř,Ĺ*˘ 7…SçKslĚS*‹XňÚ$[´K•ý˝ő2ĆÓC–gúO­Ç9Őhf:¶Đl˝1zR ´É0Z”ŤUk‚QňrlÂđ‡ßĎ&Z EHĽÜo~ ‚˛ŤqŤaEĹQ†QÉ{±T”<¶Ŕ`U’Çňö +B—,oďî˛Čĺ9ĹdAK¨ecZŔˇWÂm±˘‚->Ąě¤Ú‚™TŤjĄ·jgĄQui·¬€~Cs—˝¦!-»˘Ś3a.6ĂHÜ +.ĚÄHRyV¶Ä”5` d’!+÷~˝ŘX@ťn1SAĽC4^okřO0%SW cŕb €5Ú0aďËn,ĂÎćZyYoňôĐŻűxÝÓ¤…ě䜲AĘ‚{Š04Uę>!]be~ż)ćGt_ë[NĆ­[#Ž˝>ŕ”?´%‡áhm—?X·\Řo€mÎ+ÜY”Ő‚`šµűzĆĘ$ö:´ˇ©Ŕg/íňB8äćb&Z¦‰ş„ß˝]>0C#ą{`Á°©T kRlËč‘—a€±rŚĚ†aÇV¬T†®ŮVęb)Ł®i…ý}ç×iÔč®â”N¸âžŰěŠ˙ć§Ď^ěţţúóü@s8,‡S®Ľ ?á©BĚ9Y¤Ť,L•7¶ŔÎD![Ő!ü>¶Č µÁďô´nŠ¶ę÷­&Vá= +–­ e K5[6Z¶O8KrUx6ňűY)–ĘG…|8˝™Ć@i›:6!IV©&N,č‹D^Ăo‚ÔŻĹâw—~.‘±Ę‹W8̦¤‘öýv0r_ - s5¬ťmŠ‚Ţ’aVćSÔŠYß«Ŕ&uÂěŕ÷S ™ŻˇŘő¨źóyOÜAˇOűĎ€ëQ"Ś@¨Ě€Ś<îŔRbßvm]Ń°$+![MöÖ)–8_ł¬–ý9ja'`d;YÂ,&ÚäçµVw˝˝Ş$ |6ĎČbŔ*C2ô ›ĚpiUBµď±Ďn˙3kĄŹ>e`ePŐ·ąk +PW–a-vz´u‹T3ɢ'+“]’eKFßśŹ[ÇR'Ç0_SźQQ,ë.¶îOT,€±Ň°1C©vVzdZYFz¬lÎq†łŕW˛˝Îä9pşä¦öµ¤Ą„€IŢ‚©'xOnHÍÎV•Ů T9bú +Ý·ŃČ­|ŐNRdĹ—ĽÁPCt |Çwu¦Łb”łŽLÍŤ‚Č°·­4tĄě´şŻ U˛Iřg˝Ća”BngǵÖÝďÚę2¸{…˝8ű®ͧ™¸7QAĆ„dô]k‰´"fŮŮ ;ýÍ<[*¦ĘOWŠĎŚŮ5ÁNęómáń`k%)E©°5q3D +a/3g&a‡h˝­aIˇWíOÂs4N«}YÁ0uŠ *ËĂG¶5Áa$‰Ł$Eź.Jld č™U;î7t˙»{+&vo§ŁĽŘ˝ŞŞJút€PBeÇĐRž–ö¸ţü$Ü+…hQ!ěń(o€­ŃüöIó§Ż:÷‚‚>n.•0» ‰­ćQůÔřĘDć$?Ý]-ěP¶ÍŮŁˇ‡Żržz2!3Ő Ü2K0-ŹşÂkMDĘłăqń ůÎXÝΩüŻ{N,ýŐ“t’ńî’ç°ńť÷Ž­Çd> +ĆKěFő†EĚŽ[‹Ň»wĐW$ŕLĐë©K±L–^Y\'®•üî+źÁî˝ö#–ňŰÁúKŃŘEbţ@bĆŃŹ9ĽĎ˛Ę:9‡ÁőĄZKO#hŤF§·“láűµd÷„çŘŇ­ůS‚`^U)%k!•éŚ»|ęŢ™ţ…ęg˙ĂĽ2€xúi±}~ pőń×{[ĄĚS—€”ŰĂH9rÜ5f8˝¸¤Č˝&MŔš pÎÍA)Ug9cŽĘ,™ 0oöIř¨™2}N‚äüű˛±¦,9¨Ç|ë`˙´Ń=J€Ş“e„é2¸ÖPáŚ=€é¦Ńę¸w$\¸8;9z¨OÇÚŕö4 XšYm>âpj&äk“ö +wX–Jîýe;‹ä™–Ń•î‡őrm|€ňF:=‰­ÉąS"÷ś‹b°źIŐÝvo%¨wŰĺ:oŕmTÝđş…8ŔďŁ*!ňŔÝ_Ci¸`®šKš ç_ kůôĹrăYÝŽ•íHvń u+;ňĽ1ŞŢí0Ůx 8h¤‘ Ĺk8Čgb[ş7×ná#4;őŮLCę*Ŕĺőßü@ĺh„VŁŕ©ÜŐs?6->AŻµ•íĘ VZaŐ[Óĺ†ßŮŕˇĆ*jÁ(áĎ ©Ś;&ţŢăCú3ÇX}Ă3B€ŃšÂ×B ţ$<+-­ŕ6i|dE¶11GÖľĂ~O0…îäâkÝîwUţIřůśyş #BKşŢÚC;Ř<Źůą¸úĂH&.n+Áç”ç á˝ÔO¬ő>›kCčĹk’Ń›ňÉďčň…˙<żţ“kůý[nIĂÜ: ^+µËáÎw¸>(ŔŃ7mYŽQľrSDlW:é8AčeŐ1ěÄCe¶Ż{ľVr×˝X‚Ą3ł…­p°TjĘŘ`LVXĂ`ď.%ą«[cÜf’ťĐQăY) s#ß´+҇ćÚ´kžŮ“ŕ‹ß÷P `5VôňáŕâÚľ2[űŁ>WrJ–™çÜfćßeg>€"Ě& ^Á˘3’z2‰.uy-hěJL«=–˛§›ËIöĎď«{ ~ʧ-Aţě˘Fâ¸áî¦ă'a¸ô)Ľ|ŕ\GČ}B°q°ę&»ÂöÎrAźI.}4‡ĆSÁvľ }‚{Ë+ĎV‚{X Ě ÂîťV/HĂ XKÂo +–n!E€­•÷Ź9 HM=wŔ.XĹÍÁڝΩ\[Yń.Jä'Të-ů6îČV’´n&8Ćú–Vđ3RV`8¸Vć©Fńf^^ };ÇÝă|nvŐě‡đf"›Îŕ.aĂWg‚č٤ÔŰTÜ­šEłS0&{:'Ϟ؇§çg{Üë’o}j•^Ł:¸_;i|öăOőW”×pŠ:ÔĐ=ťFoŐ۬ýmQ¬®´çÚ)yü˙~APídé=8$ľsE¤EóęĚCNż D+s Π á*î’’Ăăßsü=ę.őiúöWŹ·Íí­ľŹ¦ŽďuP5”¤– ř,ëĚŐ3Ŕť/TFýŚże”Łî1=:8Wq\&Ąő^š `0él|K– j"w |đë…)sś"ę=ćŽ0ß›VfôßNŃô٦¸Ćź˙ʵʸ¸¦äZéßZJL8T]_řGîQ“fN_-˘ËBĐ8KP+Ŕ­“fR)ÜŘ iy€-z<"űĂÍ7ű{µNĄŁŻ˘‡wϡ~Fµöwˇ^®ŕąÔF©Ź*ÁUƤö·YÎB˘Š$ÜrśŢ á]éťU4‹éë©IÁ$l–U4đóJę}éę§îť%k'@”— Íą¶|TĎń žµ¤&O0P˝TŔÖz}k”ŰŘëÔJĘW_›1륯rÄö^eZď¦Xš&îZÖđ5XůaíĄ/Ŕ´P=»łQdůěó‹_âđö Ł‡Âsmɵ‹™ŕ°wŐ-`ŕŽyµąÖ)•ťţÚŁ6¦Ŕő°ö—_›ä·öQ#N€69y48Î Im$ł3wŃ${ű¤‰q°<+žc%x`ďH {ÖÁúzsx¨ks0ÝCź“ÖSűŰaq^Züá}m¤ĐĚó˙7+f帼’9@ݡ˙d!B|řąἔ›ęť#\ĺBzŻúŢÚ©€ŻýĽ/Ŕj”:őů,@C(ş_ 9kÉĽ› ÍÓŇĎ;Řx¬ytU€#ĽÂuŻ}čý?QĎć Ŕ˘ť$‘&ÁÍQË EyŘdI–YŃÎW-Í„EŁčâĽ9 Ńy0x×w‡Í°Ö™®EÇ%¨@ZďăŚüGîmąÖQWçŁĂ’é7gK´™d`k”ń+Şťl‡Ůí}í´mĚ­2Ŕ%ÓŕźQmĘGU‹ě•»“#uéä“Ű+ĹÝ3_ç‰ěI ; +bEŰ)Ö¨O–=ĚűŰoü~o›ZÝ{żLTyĽbD­aÓýX˝QíΦEť°ëµř25€\c°ëq7ť…í‘Ź ëNŰç`>stream +H‰|WKŽ$» <ďĐpA~×ŢöÚ€ď“Iłć=Ă‹˘©H‰˘‚ÁĎ=˘?˙¤sĺŁNţCwůg íźýŁ`ľş¶Źű>kF·b×^ ŕ»^•!0©Ř ŕŤXżîjü|@ý7őzýl•^o{w$“[/'–u5fgßYNJҤëĐĎoĂÂÇ°Y­-CěĐş(ö^łÝź9»yíĂB\đáX—`$tß>Řĺ>ä^čńćő8$| Žíł]Ąó{}aËiô~e‘3–Vüd*6ńź{n{łSŚÖF,7A°ęy¶E;ł„Ú ąCŕA÷·řBÉ\[Ţń-üž&Řf> “źŽŤĐÜ4HÇŮZ4—o'ŃĚ{·tÍůQxnWěÁŮf%Ăq ¤uOÜWÎb^ĚÚ˙m +YéâTv iŃ‹’cŮCëĘC÷˙­ąOF‘•·!ťÁ¸–ş—Źn^×6/I")ł\čHJÎéP¶=ĺşé‘Ę»•yáŮëE¬ď®•ř|}˙ĆĄŘnP㦰žĺ€Öëy&)Ń÷(ě§OYßČ‹*QÇę>ŽWp°~źÎ +żp_M«»×S”2x/7ĺ×™ŢZNů÷ţŇvE]Đ'îbC2†5^€<Ţ`Ö†—ŻměÖ_^aĆ!H­)4?đxĽd2Ľ6U¸îlA&(âtÇÓ| –?‹‘ëĚđç*dÄĹĄ.žŻűŐynýŢ"Ö°SbÚ .2Đşw>ż§ +‰âru}6%Čë}Ë%÷Š&ő4H¬¸îlCnnŞ7Ö«Ý>ŘşG;–çÁ‰ö®äKHź§ gÚ_eX±űŕĹGó> ĽŘ›ŠSë“öŔ­x±~ŁÇ+xeˇŽŢ°¬Q <ůj\ćć Ć2‡â{ öBed ţÖi]xőaŽ úŮ©»ŐĎ"+ÉŻN?‹:¶Ś°=wËďúÇĽüQIĐĂ@ěo-°Â.x5chÜ{ď«=¶¤$ŽôěS%'ŇI×1¤Űł‹ţ6lŚ„qŞA±7ô×ď•‘‚ÔzBÂňJ·˝ Xç&U:ąš /pŮ IMA˙š7†2[Đx®żŤĆ¬Ő r |Ď´Ńulă™öĆlXý`Ňy†Ú˘˝q©xUu’óDń¶tčJ¸›˝¦NĽ]+Ađ2ŚăŁ(®čbH É„÷śöşµc_ßą nÁÍŠß8|§ń,§:ß°ÉĘ—ŃŻĘ‹ ĹSYp=}Č‚ČÇŞA p#!Ýń%|ľa®Őjl˝űçŮľ köŔN¶ćśŇˇ$ýčlÔ?'2Ĺ˝ęä*ÇíĐ·`c¶ĂúCë Ú°ŔrŻd‹Ý Ĺx<{-ÎK—ą˝ŐćJşő÷QO3ř˛q Z?pŇôŢ©Ź[I{k +č´ ĘHÝ])Kŕ‚Ţ0}'žyÇň†l>ł]Šň;ţµ>͉fz)^JóÓë'Ż¸ä"±é‡4m2`¸ťś!Ę›Ź2´X +áČ,ŚŇ×ۤ—:Uş(í]Ĺj_á˘f:ă*.•čM ę$đfüg÷H»!fm–7ÔsŹęŁGÂQ<ýýԉ߆íŘ_ &úś¬­Ć&”¬fŻ(^Ż9˘?W#¬­jmŁZ‰í%l6fľZđ%<Đ[ď3C»Oç¨ZR lxÓRťő:wPC’ťxókŮcC‚şgň™ĎĽěűü6ĽiA6ň(2†¤{6ľő8·>ô=`;°ýžşioy†zöZşk4ď0U˛¦$ăhř>ŠÇŐĽ‡‡ý™!śrĆě„Ě8„;áŮG*jcY\„[Ľ^ç ߎ‹Ye×,Ş(¦RT^\D:ánžÁŁXŁ#ÍřµąŠ+Ŕ§9ľŽŻ@ń;“j>ŕ¨jT}ĚAÍűČăAyqń¦Ć°‡©#„zc»ěPÔD•°>Ľ?BY »ć$ó7®<Ë•¶B§«űú +­ń.¤˝«:$RťĂ˙$ĚäGŰ :µá6ř4šq¦öW«cj‰ń=V8GPŁ€3€zI—ĂüĹxĐŚůf`ăwXŤ·Ôv7ˇŁc9Íú ćK¨×ďąŐ(ěÝ łÉ×—@đ̡ý-ođ[ĆĆ^kÎÚHlqNXE{s4-ÖšÜ$!CjH §ĂÄ“ő!`Ćw?Ú±z6Ć9/ +0üăý«ŰIxF?¸mO[:ľ2[_#_©ĄPHy[ßSí˛#‹§ç…}ęęŮ+\Cďą)AŁIl)‰s4‰™Ó€ \ěf‰l`§=|NŽe?ţË|Ő-·yÜĐ'Đ;đ&3v'¶vűŰ^ŮN“ń ëfĆq›^yd‰±Ř‘(—˘űí ěâŕ#%ŽÄöBöE2ň!>,€ĹH¨o°ć:0ÁPâ” *RÎjRf}CłĎ ˛ E°Ľ'l;@{š}PŹďÓŕPU@®Ŕ4š¶dŢh/—éó`ŠBö•ąÂ6R¨`2‚51 ťg`4·Üf›aËÍŹłRB¨•5$@_Í/i—µ[Ţ`Q~`Ś¦ŕ$—á€a˛™îđ=ż ßLţÎ÷µĄéó‚j×é$Źäĺ•$Âĺ®Ëö}0XŁŮZ[ŃX˘"7L,(p¶Đ̲°”»X÷á TĚ']łM[r˝’’^šl [}Ń2™RkEĎňÎßjł* +ЦP†Rń>˘}{O»Ů­&źÔ˛?8FQSµÚ +ËâŠG Jm€Pk& \!OX«LfÎč¶Ň8¨!Ϥ¤`gúąÜ¤‚ƢÇ÷Ť «%P±*`Ć,ld=Ä*¤CĹ0•¸±Ęr §ěfY»«9˘Â/¦ó~µÉĹR5{Ä*Ĺä;0íQ´\<ř!©Ś2ygK¨UËn + N3:ň_su[3DJ"ś(Űq ›Ü!ž‡9áxRŇ86‡9-SXÁDčçŕ * ČäÓőŽ ÷y.ödÇëŕGȬ_uFĹ’8m-fT%oɡ:¸Ą-b–ń,R°şŚQ$› Tľ%Ü‹GY¸cD#łö6¸čzÔ@{]Ij˝¤7" +ŁúeđĘe덽6U Ă+gNM•eM˘Éb ů@Ę°Öő"l,(8±T‰ż˘ą +™–8Ű×ŘăňŽ÷‹áB…­ŔS}ą'e"č*ćLďä7µŘtP +ÜL©V` +{®‹ç<0 + '%„Ëpŕ˛bô®\Yę“şąi'%Ź{ZEľ/˝s9Śz’Ë”¦$Ý-Á÷ĄŃËÓ‰d)ĄęőcŰä±ËP1–µh)°Żu«®]BIŘÔM÷P;ĎŠm¤Ş Ą¨Ů"…ŢtbKIMoąkľô<”á€6¨ŁÜŠoÚťÂN3ć•ťČ4ŚŁj_šşe$[őqę®q =ńáŔ5śU¬=sZE¦‹©˝yZ´O}ǔƞŰۡ"Ş]6!­wÉÎl[Á%PF4č §Ő&ľ™đÄk „ęôî“FĐ;W+·ÄAňćŚű’A,ű­ ô°ÂŁ.ülÓńŃh¸ÂO®ł÷–çɨ¶|ť(WppęZŇ.ô5§‰(E'iËŤ÷)ś‚Q‹ +™š3 †2(I-y›ł +ćp_3!ŘçEv3-€Ţ·HÖZĐpÚY¬Çôč”'ď6sè©LÖßž6ak©>3»BV÷×ÝYMëďmzŤË,`[AĘO Ʊßt°L5l…ď)o«¨)+„Ś·™@Đ«<Lđaޤ)Śe€D<'Ľ˘’lTóěC,&`ë }ĺ4+Ů\Që–Š}ĆÎ0L›šf×´X=ęýväg?¨rť9Ę„ĽÜg¬4Ű`ÝššăVp ”ľ1`§ѲŘĢ–ě{QU§řŢňŰ2ók×ç­^qvX#<´— +&…mĺn*Ŕ°Á6ID[´˘č=m& +ş¨iÔ¸[|ćHłź8tsh^M UĹ(|+|ä•GtŠ2pc­eťËLş–°¶ČŔ"tvJ1Ř…M߳ĶçLűőuÖ–%•©,7Ř2Â6f¨ďĚAÄۇіp÷°P°đúŠ°n•@jó§wGN›úΖy 88áAl¶¦ZŘ]‹ ň´Ą…ۆ5—ś-ŢVĎýK^(N‹Á¬Ś}.$Ű]ÚRCŽ +}"gĄ ´řw  ÍCL„'đ•â6¤6ÄŇ0ÎŞěşÂQ0DiQ +zöÎ@ŻŽöÂć7@6óP÷ł;`éÔµ'\ÍŁňPĹÔ×ďŇ`Ľ$–i(0+ eťĐ]óá<´-î +¤5b”fnŕ2S°`’†:ř@ŔžbúŐÖa‚ľ*s`Nkťí;_“ĽEĚçŔ\+ü00tzs…YL€Uht–€çń~¶×/ĚĽß`ôMĂAŕdNX0Ď’ß%1#ÄÉ{±Ü×€áŔ…= 7ĐOßďĆĄ73Ohˇ,n/†Ś >v™šÖv,USŃL§ú}-¸¸J]‚tŰf˛Â5sşsľ2ş­˛÷ą|©pIZ2/zd`LhčWUř ¬FFäóqʦ¨mnÎŔâg{Ď×ŔŤú©`ÚëwŐşkëZ›Ŕ``QŞ8Ú‚Ěwˇ÷~ľ.˙iŇ;0Gk!ůăDegŞF]»t?kt%[®uw‚‹Sž,âlox+]†a‘±Ąˇi›lĆ2˘«Ť,‚ęŔ†¬ĂöÎis‹â–ą…°_ĆĆ•˛0’í‚+X@– űÂŔ<3!ťŐ‡,2GNHň89jł˝^q\`µěĺ{ugoĄăg=ś@¤ĽeŚüÄď†i¶×/$~™q1;U[ 3ŻCEVŤ:Śîţ~rq3,żÜo¸:ąěvÄ—Őăćqőáß‹ÓÍË«›Ő‡öňęóˇiýÖo„M7×'¸óÍŁ§zř•=P„­Ś>…<^Ľ~˙ââÓůÉ{h>Ë3¶| ±yôTXĐ|),Ď6ç_ŚZÓť/–Ď7§óďý›ˇIކ-LJ“ëĹŹëĹn«ÓĂIóÖWŹ~á››ő‡C3\/®o.żp?zNáĐ„V7—?Ýśüľ8|lň艭®Ţn–›ÓhdĘďş[˙˛ĽřÜůć«´ăÍż…š9ŽOLçüßÁű{‚ß?Ł¶$Çâ—ł›"ľçůfŢ^ݬO?­O>ť/OžÜ«ŻfąúĆŮoąz€Wv’ _!›‡Ş=ĺrői±ţ/űĺ×ܶ­DńOĐď —űĐ™ş–déöÎő“%5šÎÔv&ĘôŐ ‰"X”Ą|úR˙"ĘNË$@šń$ć8X ?îîŮłÄHĽ5ĎX.2©ą±čťsÜc» W¸ś°¸sÝ®€í +Ř®€_Zí +Ř®€ˇŻ€˝v¬ŰëJ»†¶ĆŠoWÜI®Ű°ÝĂŇżvlwŔ&í€ý¦l6$Á/G#¶db–H>?Ŕî3ÜiиÉ‚č ¬H;[p#˛„4ĹŔ „6Ń„-9Ů\ČÂa—śĂÍE^1˝ľĂĆçÉ!LI®5'騒1D —]„Ď°ČÇĂAp[ůđ6˝ş¨É8ÖĚTwF}»˙~KXżľďuáy“1š ˘~]e2e)ž›×îm“-äX¦ÚŻ€<:‡ÂąŠ e3JĽÎľr'6洸ߕBŞ˙?'ÜTÜ˝ě”Ö6 »Ó­Ţ˦îóŠîq"öˇčěEż[üA_Č'ř]|ňÝ‹ž nł|¸¬‹ˇ +n}W­Č{ÉSóűF/q;r–‹Ěö3ń÷˝v×ĎYęXč˛<“ą˘ěFd Á‘úL}PU/ýČ"3¦‘S¶t xĂô,Ň0–‹LęJ˘&Ŕ»ÄŢ9O>{Od4HEîĘ ˝×Ô§+äĘŰ ™*’%ś6ezZ›Đ''QÜ$ fđŐi‚ +nŢ“Â ·#´z„V#„2}ekfF"Ż¨ÁoOůĽeę‘mŢdý,‘m«58%织ß;pa,ű—w®¸śý1}· H@.Ý˙ uş†ËtíaŔÉůźŚš‘ĚÓ¨¸ÚH®P¬]2‹ŁFĂ€'1ÎQ/†pÎ*ŢB iĺäć·‡±”b¤űTŃŃ%ąŚ~ür–u2ň±Żôđ^zć‘IŕÜěO»'˛P‡„ńÇ7Ś‡ăČ4 E,{?Wě0%űL"žăzr8îi5˝YBš˛F\Ş5 ž;ś˘Ż^ŢBÚj>Xs‘O‹,U–H!aŻÎÚŇ@uk5-xM›7MÓ` VÓ\¬·h6"|»Ť|¬·xY.eó^ă:&ŞKËßDZfđ›§Ý-2x—tq36'š˝S쯜Ą±Qî›7›5‘! +”ć‹{jČ’áşâ,•3Ă MP>˝=ý‘ Ŕ“€‹ŃZÁ“ÄŠu"î$×đş° ©źäi2}ĚŐ<…fÁ7g:Ý  YŹ’¦LĚ`ÔfŹ{čĽ? «Ż…|čň +–BJŢ[űÓ!ŘŔm“…§GOPú>Xŕ*«‹C‰ę˛(M¸ÎˇlÁRsK˛úͤnçđŐyőŘ;yDS·}ÂŤßáxČĹşč '0Qč~|AŠ_µj˘K!Ő-€˘ěYXŕÍ[7m˘ [r˛ąîHO‚ÜëŔ°qĘťÁ…Ň}pÍĆJ.ŕ·°;ě<Łx_ą>üÝöú ŕ‹(礩L+.["¤4_ä‚ ĽRs6Ŷ>Ć‹"nřŇîs€s4"žÉşÂź©!ĘJIwçťsÁJj$89Q®`”íYç,]eÎ-ĽŐţ´sÁSF*^ú‘‰Ao‹źŔXÇçd±bě,x1źÄŰĂž6’ň…ĹŘůéwŮ”äZs’Ž޲á¬G˙iŤ ŇÚ‡ßnĘžGaÓ\—U':Ă*t–¦żŹcÍŕ7N»[d"đ.éţÜ…máśhöN±żr–R\Ĺ^Dąďš~Ót ×E‰Ň|qO Y˛ +“Y˘*‡8'KĺĚpC”OoOäÂđ$&ŕj´Öpçvu"î$×°)ŢŁ«ĺţ“<ͦŹąšç˘- gĘ|şA˛'$M™1Á¨‘°óţB óü€B®ľňu sHxŻĐ”Ľ·ö§C¶°' !O+Žž ô}°\5Í"áDuY•&\g‚P¶`©ą%YýfR·sřÚëýÓ#šşínüÇC.ĆĐEoĐ8ˇ€‰B÷ă RüŞUťřX +©nĽeϢŔo~ŘşiMŘ’“Í…pGzä^†ŤS6¨.hJr­9IG"‡w¸ozíÁhžJ[ ń”Ę[¦Ůć ÖOĐçm2ÂIisqĆ{ř˝†Á:9aqçú‡ËŮÓwŰŔ€äűć·‡ Ä°|ÜŚäď4‹Cy 0Ľ"Ď5î°öÇť;¬™ĚeSE˛„Ó¦¸üh[©(ŤĚ"FÂmZ +đ'±ReI±R>®[}űÎúöß·¬o0|«o­ľµúV+}űU?hí[+oˇËŰj«n­şŮ«[kŢZukŐ­U·¦©Ű”äZs’ŽD®oYä`xm˘ [r˛ąÜ>§AŢZ¨śî¶‰ÎŇDżĽĺ&‚áŰ&j›¨T7ĂngŘEkg‡ýáFłáÜ–ÉůźŚš‘ĚÓ¨¸âH®ě0‹ŁĆtăµÂ÷|ĹÄ{AÖ˝·¬<ŤXĚ‹4Ŕ†\±Ś3ÁĄá<Ó` ń>öÝD|ĺ3•)ś@BiľČ©JyŻâś­(A(ŽEÜđĄÜççhD<“5\šŠiC”±č»ýyç\˝. YIäEBp–9{ä¸IÜźvÎŁ3Áqµ DĐŰâ'0Ö1Ŕ}Ůuz×ýn§7,ţívŠż×ĹsńýşřŹ +Ľ}ÂŤĚá¸Y\Č*•;ńhÂĆś ok IůÂb6ýË{wś™Ěe7"Kě(qµđ"ż  § /tän.ŞFĎÉčÍ…ŐäÝši»Î€Ĺn5gMI®5'騒-DU°ĘHŕr°S¸©"YÂ)Ő· ę{ŔŞzíG™1EŚÄë1Ŕ9•‹LjnŘ}^!\ßAć>stream +H‰ě—ŃRą†ź ďŕ›­ +UKl“MĹW(ޤŽsrÎ%K=%iVŁÁxź~ĺ1Ć3„ g-Ťßl%D˝č›nýý˙ŠÁŘh.§ť×w™ŠÁáâ?’dpĐůýŐ óúűŰĹş˙»üte˙ˇóńUwÄ©áJ=·¬ ‰±˙§Ii ¨*N´&ŹNĐ” ¦A.ţý¨Ó˝¦ůkÍ<Ż~íkŞ˛\ÜŔui:Ý˙HNŐÓ7˝%˘\ÖpůüÉ—ĆŞÔNDž<Ň‘ÓQ(˘ąI30śb™TšĄŃ`남cŘÇj(JáÚŢęřď/gč?ĂĐé>ŰNWŘ+˙_mřié6´Ö[b"µôôßŇÍÝ#î¸0€Öšî’ÎŕUwüőü¬*lŃŔ÷:Ç=ě .±˙˝řµČy­U—Y5ůÔ U)™˝âPÝůaÚŁĆôľ&8ęÉĹÍg~âł óÇrŻé;xzĐë‚Ăp‚Ó–yć’AÂĄsďÔkÄŚJĽu¨Uď4ň ®ń~÷U€D|TS*‰n ˇ´ĚJAđVŁQśÍŽŹ ŹÇ7üÖîˇ Ľo32GŹ¦ő¨†h/O»<ś«ßCC1!aQ$Ď2©‡7˝?śGp ÄńŃ×L”z©đ¶Vś¬2gŁ^ç¨7đ2jŐźđćeu<‚fĘĄl _&| ™–•ä™Ç>zć»nČX•šÂ‰ČS˛±ôé,HaŘn9Y\ŤÔ, +7®uÓX·ĄđÚ¶ŐńV3U9|Č$ł9Hŕś”EÁ‰:ŮÚ¨ +}żŰ•‰ßŻŤšŕĂ6!Ô Ë'ř45öß© +ďó—…÷Żh÷Ę“¤,ŕTIkµ%^,~¨ ď•Đ2_ęÄĆ/ż!mµ[[ľŹďGe׶–'ÖW[¶— .ąË˙Ö{ś1#üj¬WDČ›ř%P‹« \UHÎGUÁYĄ’č.Jˬą§Q!|ćÂj:Ź1n¸+­Öá +‚Ł1#óÂCb Ń^»<ŢÇŁˇ‡š°(:ŇCłL`ę±ŐďOGĐE ­‡ÖIŃKű4Öş RHL5€X/»ăřT ną`Ř@i"§h1©ţäčŤ}u<‚FfĘ%yµśË…@3-cŚÍO.Ţćâť®CĚ%Ď<Ő3ß=´~čˇÖ_<+MŠßW«óÁ§ě=š „ýËâ:hŞZE¤YK`Äí”ćÓÂ8âGnCW©bʧ{»…ŕ;+EÔzKýŻ»ÜşX‰÷7?†7:豺쩒ŐyS® #l†Ĺô ]5ČÇe+ş‘ĄNl[ź7E͢ŕtÖ ˇ ź‡Ťb_WďáştĽˇFp*…WnŞŽcöP[äÖ]H¸ä.ŻT˙(93ň_µŠˇŻ+5kµşŔUE5XÍŞŕ¬Ňn34!ĄefźŢ#7J"¬’\X!Dă1Ć w%›:ÜCAp4"fdîČŠ M2D{‰Ňň|„Ő†bj¢čHÍ2©Ç*Ľ?A%´ZűA/íOĐXë‚ŕdvŁń©L5€ĚA5X[®5ĄĄ‰ś˘Ĺ¤ú“Ł˙5öŐń™)—äŐ˛"Í´<Ś16HµDňĚcQµ(Ë~@Ç<ňĎJ“â÷Őę|đ){Źfa˙˛¸šŞVÇ)˘ĂŽ#ŘÖĂ‹öpq»ýĄůäf«żźŤ\e|źż>Ý;ňí{Î/HN Š «RS8yJđHGLGQ–Eĺ ‰qĺÂĐş 8Ő ¦Ďz˙RxE…ęx4µ:UY® +ľŤ«˝żă_Ď÷Źňň.FüD8NÖAú­îČ[<ČŰhËć\“<ĺtW6(ăIRčÔŐţíI47iߢmÚ˘‚›Ď„Ëý +mß +Ĺ ö~…¶ ¤ĺ+?Z-_ˇľňŐöíů‚Płß íŘ č7ő+ŻP7B[¶Żw[˝Ą%R;/AOań!ńíÜÜ=âŢ hŤéŽ é ^uÇ_ĎĎŞÂ «š|j†Ş”Ě Ővh—źŔ5zz5Áĺöäâfś¦f7ř—Éž…ú“d¸'Ů–ŽŹU©)ś<%»â}6f R6‚[NB#5‹‚ĂMDéPší5ç¤, +NäĐÉň;ăČśkPćPŐZKGŹdŽ™·ü­´]ÔT’`/Có’ëmSëŠô—Ę/o¶4géÎ5ÉSN÷}ه¸¶‡¸ĂţńoŘ9Ĺođ üŠŁ>MĂűÇöńäâfś¦f7č ĆŮÁÓĎł.“,K˙]Ý•g&Ewćţtx˘·x˘ř4Ĺ;ÇŐqĚ2k‹V.—űf-W`¤÷X°Ür˛¸©YÔęH·mÁçś”EÁ‰:Űh“?`ŰÂđë‹ĹŘ_xĽyb1Ü“Ď[i»¨©$)Ŕ,^†ć%×ۦ×é?đţ·g żĽąŢc©©UĽ]|ŃíÓőĄC:×$O9Ý÷e÷{.  mGwIgđŞ;ţz~V¶IM&߀šˇ*%łCĺ°Ź?=j +ôô6j‚oĹ“‹›±±V˙.ŮÁÓPl»"íďŠÉé˝9ƢLHgţ,ARĽ }Tmܵ&ę÷°D˛Ě®©!·€—zIp2©Ć†šbůŠęô.<5-žĆJ6‘ÂÁ"$šŘ9WŠ±fZ#©Vżi{¶— n÷2úhČQ‰6AőŠ6ďŠD« ohŞĂÁq<öŮěá÷_U÷G>ŞŠ ¬=“„Ň2+qMqŻVśÍľA(Ź1nř­ÜCAp4"fdîXm ˙bö20Ëó„äôĘPř…ˇ" ŁŰĂVĄ¦p"ň”ŕ‘ô ¦ŁP®ŹľfQ9hb^cבo§*ËUáĚ ›~Ŕ\@·î’ÎŕUwüőü¬*lQëý†ť‡ßŻŤÉ<ÂÔ«É7 f¨JÉěŐ†ęÎcsŮŽŘŁĆaKš l]Ţ +˘[ćř5˘»'7ë5xó­ŔěŕéçYW^§ßĂwfĆ™IŃÝą?Ýj˘ř4Ĺ'©ŐqĚ"iŤVľéc?Ç„p¦áĎŇ7^9Uo¸±ďK¨ˇ(ľá«ăÁ™>`d™]SCnżę%ÁÁ¤n¨CFÖ|Euú €Ťš(ăIIkĆe)nő{"YŮm΀>B±Oűř?ť} +ܧŔ} +ÜÁö×űŘJ˘_"ľŰ‡Ŕm č–íC`ŰB`˘‰ýşâJńb÷1p÷1p73-‡ý}Üş čÓ´ÖGÁ˙*Ŧšŕe«˝9đxçr Ń/—~á\“<ĺtWL:'†Ťŕ–“Ĺ…<‚D˝(8ÜD”Ž5˝}ÁÖ‡©ŇJäđ±¶îś”EÁ‰:ŮÚ‰ĐOá·1‹±Žń x/ČbAŻ7ŇrVIR€YĽ Ě+¬n‹˘- wMÓ®TmTłDXG~H•PúăDú}ĐYţHĺ„r3˙Ř{ăáć<ĚBu:řüU¬»ö¨Ľ ¶ĺMť-qűž”_/vvqyävÍőí×,*MŚ««5 uÁul[Ä®H SłÓ]”ĽS•ĺŞŕ˝FŰ#{}ż1Sâa5Án–:;˛Ć|šűď‡=P#|\Ý?Ć“¤,ě¨Ę‰׋ę‚#Łťl©BÁoF›Eł_v=mĂPţ+üPż¶{(ko€N+švë&ÎbŐ‰?ŰŻ_Rš$źDرӛ¶ĘÁy|Žß÷µs¸]©řCIő¨ ͸ZbY0-oĚb>‹č/É”LÁ[ńöĽóö~ť@™0-żč×S5*śsUÖdóáE­[RŮĐť†§-KŻRéÂ]Ě~ŕÉŽEüŰKÁrÜ"=Ľ/ô7!޵uDz_8fÝ1žq<Ť2˘OczÓ“­ô4†'kái[KD¸é©Čů®Ű[¦x„Żi‘"8’áŠqÂ4ëĘ´éGV`Žd‹Dt,8s‹µ"K–Ls­ŹÚ6Ĺ=üôěű8>stream +H‰ěWmoŰ8ţúü -N +ß%Ţ~ŠÓm±·iwŃlö†k«Yl9Pěľüű›RmYŽăK7YŕZĤ†äp^žÎL?®–ĺÝKö·äô¬®GßŘß“Ř‹ŻóYµ”éřŹélR—®KvúSµl×đgůí¶ÄµYÎ8{ÉNŻŞéč—ËzZÝlîý<š­üćĺčă¬ü?ďö©Fs:mśaŻß]Ľ‡ îéëéx9]TŁzKřŃX>ŽztűÁęŃ©Cő +W-·Ř#7;Ý/é§ňÍŞż=TŘ=f˙“ý‘ Ć˙Ź¶ż$Ú‡Łí»Čpľß.Ş˛ZţVŹŞ»Oeý×C?Şp ’ż™ÖĂdZ ’iőż\¬ęqů¶Ýţ1®”|€Vň ÔşĎě­.‹Ű˛-Ă1:đ§k…ô{ëňn5[¬_łýɲeŠ»éňŕôú|2Ä»˛ľ)Ďfłgŕšçb’ă0űŕ´ůDX%‡Ł5źřu%9žV†élyřŁ~úşüÄ~HNÎ~|řc5ąüýíb€$”áűEő+°X—4őäAy3­â…äý-ńĐ~éňŰüăb–Ľ8›LŘ›ŃçEŤI$áě ţ®ż$+řĎŮ/ ϬË%ă™Đ…ĆŠăÜňĽĐ0±97E“˘°27ěz‡„ßĹ®żÁÇ?`ň }a‚łwě_˙ćl‚7|HRžimeáYa´aó$6ŽkŘś #4KĄÎŚSĂÝRpG* T,u™…°ěpw\µ zĹ7Ź 9…w®÷đV![­@MmťŚUfhěĆ>06Ď[˘;Ś’­ťĎ“5©qÇ‘´#+Ś¤cĘX"p A‚Dß8ŤF|/đ®Lqc‰ŹËśÓ6&)ÄšÖčÜ"wL‰LĺtĎÁ(ÖHhäQRJqM©]ˇ´çŕő&#šEÁy74„AçÁVĄŔk`@§p–HZ‡Ć枰ቆ0N@.n•iI +l!rĽ)GŻal…"`hGÍ.ÔĎq®\˧a{‚— í„Č[ˇVP)†±˘„4­ö)ÚĚJÓ(U˛Ť1˘€kZcl;8iÁ"“ÜrĎŔ‚ŻĐ6¡mÖę62‚óał19“śµLgV i!bŔŕBà ̹Ҭ) Wx/Č Aˇ" +ÄŁpNJ$ŘařKd Q± M:O>%W %ŻIbŮ‹—ěúźÉÉpWŞę‘É +NîHWH=.ayIŽIYxň¤[$J['Ănâ:>8uť ŹJ^pěôu2Ü‘Ŕ<ńÁ)ŚŽm'1 vÓŘÉđ¨DÇş©Śx=<™˝ŽIg'Ă#€ć¨”ćá}DRóuLZ“;RŹHmŕ˙‡&·“a7˝»: îdxLŠ;VP˝ľ8«sŇRŽ ĹwN905qľšŽŃ/¶pý +¸ÔiEŃy"Jě"5ç.¨ś°¨]$ rGIŁ9ץÍrŞ ‚]J{ŠśîéPÚë·u»ŘýtMĐŇ"ŤÁK]3´Äöt]DZą=˝‹ÖŞßĘł‹źíšĄĄĹÂtMA‡ěrh—Ż§ăĺtQŤjlA v:X,f°ń'ˇ~…ł¬««ŃÇYův5ťř^؇*ŢôővQ/ me(>Ç4DŽ…´Ş „1 .µôÝČé‡r4{7‚ę+Řŕć.gÓqy9Í ýy[O'?—ß<_Ó˝ú4EwËz„z´@Ű5L\‚uć{§ÝÔ`µ\.Şáâ3´wq3őjv{‚¬§AŇ›ýg7 d Îľ±sM°łYĎ ÍHżžú—Bňß$üČ}Ć|Q&-"7_~‡ě)°Łń˘ą“ć¸^ 7ç #ŽPSÓ Is­î0lGq"ɱ¨â ĽppŽxÓŔkIŮ|Ěyłf^Ô ÜŁ 1—ʼn‡ĹG‡Ř˘¦Â D\52gëŁPč0o·pEJ¬×brßn<řŐ0Á+<çsŻŔE2ř1pUUŁy9a7őh2-Lę%95uč`ďâćwp}ÇXÔ€4đĽ\WŔÓĚ {v=ßŘhvn”’łÁř@ŽC8Š\!GtÓ`ĽşÄĂsbZFfšÇĆ “tç,¶ü†O{¦Á îěřڣ༅Cwl°3K"Hµ8 i»6vy¤ä¸ĎÉň`'Ă&¨ô6,-Đ%zŰÉjçF ĹÍ–“ű9áZëäžĚ-+skfÁ(PÄ>Ă$}^—“é’ťŹęIo’†—@Ťť.´h`ny^hFŶ)0ŚŠÂJčň DęÍꀦŤ´.-Ĺ+x,Ě|¨HGŤźô©[4ú°!‘c«Ą¨ä÷_đµZř¤ľ…&kfa‚Lá.‰•Ą)Ő5kŃĎĆçö–űĆÍA 0i¸Dň­š¤Ź7lźÓC¬Aą!Ă(n†ßs˛LĐíbťI=ÜébŮ:_$ۧ°Í =_Ö›šš‡Ŕ´™Đm–F˛QJÂÄËńąŔí<‰.ąŘ¸E€4úýË#¨Ś´B<Ă0{=Z–o¦ĺlŇ-‡|a5™VBĂ[Mxn4T·°‡C‡şkB1xXÔĺTz¤Öż7ŕ`CŢ 99 ĺFY p#­6M@c %9d,Wą4Ýx‡ąçŚ –űgĆ6G$Tw ľľ^ şG¬ŞÍz°ýĺ…ŮűňŔľ\†µĎ$üźŽÇ~ÄôěŔxöňěç fű¶>óµz8jŻźnµ=ŞŠę¸OMuźš¨Ä=j‘š+Ň +sĐ+ĄrËŃ q3Š~]­k•Ő;•-8ŠÂâőyPKŞxÁĺAłîÁÎyě/X‘^ é•ŕ^ö0Čý@ţ5W"ŞW„ÚŘ 9ߧL˙ÁŽRĆ+eĽRÁ!aŘARJýo*Ů-•Ôˇ*Ů}*©7ŕ&ĚT;>ÜT ·|“îtWŁmk˙¶Ňë ˝ +ÜK†G›ę‹Ő1Ş/bv)aĽĆ+̆G—ş/^TOĽ¨ű⥣÷Ř’BŇ#ŠŻ‡ÇÂŹť˘7éNtá±O¶öoÉ/I|Şn M<ü>"¤xOTđž¨ŕ=Q±CzCŇ’ŢŰÜ˙>–x_8đžpŕ}áĐ‘žňĎ< éǬÔ ä¦GŔŽ»ÖELGf˙¶ő‰ľ%?bÇR ˇF…ßÇĂΦôzKú.ň7Ą×{Ą7$˝Ż!˝ÍýďcaçűYţjÝPĽZśŻ©¦wR +Q4đ— '…ęËnĹĽ/·ćÍŁŢDĘşľśnôĘĚ›wĄyeD3ȦQěě–®Öl]Ôc á›*ěçŰ…}(÷{ě›ďŻ×·˛˛Č7kMë1±]TPYÚÝ*yîKŰønW=\E^l8ęű¶˛Xś Ţü( +«g×ĐÖ‹ŰÉâKŐígW_Ž ňţeł?Ś;S˝nL ËśÝ$.sÎA» žŕ\;€Ú6ĺbMIm¦iň_ö«®·mc‰úą€˙_ $iMs—är™ ˛|ťúBI´A ŕÄJŞ9…óÇű;ł»óARJś8¸č"<äÎΜݙ=Ł ź›Ú5UćsW×°t»mzÇŃŚa×â2IĆ`'ă@4Ŕ”{|­Ű‚8±E¸ů)MŃtmz‡}"`ĽMž·l†‚#„˘'«}ĘĆ°s×nŮ{X´›˘iÝýlď7ŘZ‹·Ů˝ýýŃë××çĎ–«°GÔţe„ôĽBHLQ·Ž!ŕ.ľÓä.<`@ŘPŠoofOŹĚöž.WĎfŻ——§°X?…šľqiúőx<:zś–÷÷7ËËóř(9 řtůj6µSp÷·ŐÍŮl*Swr já)îűą}łF¨Ż.q\E_KáíođóíAČžç<éĺŃ ×t•ü[‹ “ąźî’đ™2ˇ +ë' .B2ŐO×µÜOs©.„ Eżün¨öËŞ@ł)7ŁN©)7KUĚĆÜ ę’«@©ŞŔδ‹™Ú˛;É·©˙gékoźľŇ @ˇn+oÁqWB+_ĐČěĽöĄ3ř@ţ /čÉ­Đ$P™”DĐ R&ΫµfxďlÍÉf‘–ş¸UÍŢP˛Í·RĎU2üU˛ÉŇ×?OGÎĎÎ{ň™%ô'”36dI:$ť śĂ4‡řݚХÁĄőĐţ4/ĘÎć \ÉŔ7AÎď›­ŠÎ:Ű„I„eŻ2a´É˝ĂĐ°ŤÂ¨JR­ÍëóĆĂAa+Pş`f׺Ľ))q‚‹ĽńPžLŃ@/ž¶ĹJXˇ“°!vË:/me×µAţ”†VPÎjWaĄ‚Çyw뼲M˝aÖ¦É}[×ŘşĽ(­ĹŞŘäŤ3m8ĽjSBť]?Ô aśµ(đ őVCYËť«±—…ޚХĆBÚHjȆ¤Ű{rrő®ŰĽ- ˇ[ÍN栗ŕńŮüⲢ̯0EÓŰÇ?ĂżkřŤ^OakĎŇMŘôĎN® s°dÜÇ2ů8đŮ{Č9(˝7ŮńS^đzď"”ěeüĂ/ěő?7żP|/ţzµ*řktg'řrp˛:yyd›í㣶îüůűăĆĎßř|óăŹ˙7Ď78ţýů÷ç[˙„ýůéçźËŻ»}°,Ŕ9ŤEëŘ/T¶ă˘őôłÂĄÍŻ?|¸É°Ş*9°3Ĺňˢ`züc—«ř[Ě猪> +§=S±Y¬žźęPQ“=)Ńy‹öëŕËč"ř_Ă˙· tĹÎtŤ˛P 2|-¨‡ż &úB˘'ŔÂ@c&*cg +:ŁúRĄRó«µhĐŻW;Ó;荝éÇ-Ý^«9v¦‡aż„ŽîÁó´ĺ×)ŽŃ%őˇoeŁëŐ2‹6˙0“ţaĐuýúęjvů~v:I>Ť/]©Ľ€-–‹¬µmŘѬˇa7 [šliŕÂÖě'ą€Ë¶j ;řöS›sn×`‹ćq«C+fˇĎ=ďb…iĂ·/â÷•w-&>!`5uQV‚MfMUé6‡Ĺńʶ‚ŃTÂlnpá&]¬lš*ăpQWM´] mž'@“m GrÄl\!Á…ń®b‹ëúŚ&ŻJă*rŢŢá6Ż©őäĆÖ§!Ź[ç}Çëbs^‡ŰćRM©Śk„ĽŚ˝î`i“q^(vA-1yŞVĂár˛­ZáWHĺnĎ+g: j,YAý­ęRQaA¨š…u^űVÓ5AĚEŁh¤m +˝î + ţBdĂĚOŻčc7 Ź”€“q ¦¸Ő›ÚwřÓXÚÚąń”Iiűľęć ¦śŚţŕŞ-µUi\é4! +5ÂdăĚ» « ąŞ« $U†¦*Ł®2}¶C«ČIj(ÄUNQEÁzR·š?(1pu ”Sv8-ňŞ˛ĄW)ÜA +cţ:†(ƉqAřcO…>Ž† ‰7ZÖ÷‰»KHŔ­ëR§ˇ^ jÍŠ‘ĘuŞŃeaÍ\ ˇĄ"Îó +4”Ö@˘M fMCŰĄŘynˇŚ=Ę8 +‚$ÎhWß'Ęě e*‚­;G††Bd^•Ę»“ĆyMY“۲)5c č„F….÷ ×j±«Ä@̆02¶KˇÓÔBű'„q I”ѬľO„ ¸ §-nŕÖiÂ4€Źîž(}çx0?U‡1śąÔE]sĄbL‰11 ahl—bçąUZ’‡BGÁĂ8ÎdWÝ'ĘěÄS!Éř6µo´Â5_ů¤‚$jsĐ^Ý+}G’w2*‰4±›š[‰»Đ!ąFk;üŽ}W2 ßU“ś09"ěQşNFQälW€0÷xČN Śä‰˘Ś Ť”źÔ‘˘Ś4”˘Ś„Ź")Ćv P”1$”)(†F†9xš\Q–´ţŽˇx<—ý/‰á( ˇ$!$ˇČ$Ý EŚ0E + áM +7M* ‘_—ÂŽ5™T÷‰ˇ>Zp C„P8$T8ă’–†HđE¤‰xLŇLl3Ý EŚ0E + ńMŠ—fU™–<ŽČwCŃ’MąOőů@Ž<ß~ľ˝3Ý]®ćŻWóĺâäň&{Đ““«wáŞČöö—ËłěŢŃâýěr5;˝źý¤áńŮüâbľxŰćW'ŻÎčíăźáßux>ş€ŻťŃQ==śźÍŇÍţěí|ńěäj5»čŢýĚdÇŹŃ‘ŮűůëŮăË“›ěř)/ŕI?ĐűxÓ‚Ç/3 =ÂÇn~ˇř^üďůµ"«ŕ®ŃťťŕËÁÉęäakş}|ôĂÖ>Ăg‹~?Ęý]nuéęűçű‡?köĐÖ·Ů}›~ísď_‹SĚ<¬żPmŚ+ĂÓőőĘPݵŮáő‡7V°X}Áüb©k3(-Ç ůἹŠ/±…É|ńŽęÖŁ`pÚ3+†Ĺu7˙†›˙ŔÍ_P[ł'Ů‹—Ev +đńłíPN·]šôyŕ›ţÓťé¬Ü×á…µm 'WĹî‘{Fčź@@9”رŻd`ĆĄţ“ŃIBC›Ş§NVě+ ¸Ać +ĘÍąšÍ1Z6M•ÉpŤH´!$Ú3<[')Öš ćčy…GĆkąC{‹pîÜ-–‹¬µ>‘mâId˛Hť!›;ďŁqZj;ŵԚvâ¶uş2¸Í čRM ‰KPWM+ź&ŕeeG:›‚|îě ŤKřÉľdO ¸ŰL:7”]ž5i nU¨˘–¶Ktť×ľŐ”N"ꋢQôŇ6…Ţ? +šÔ,+0ŔĆ™'v˘C2;Üa™ăŃ|š@Âň€ąO°Lh—eŤ¦$JÝ—J4pĎWý,ĹôĆf°Ë2\·eŁ¶> Ť+ť¦Y#Âł šhŤ"xćŠéÖ8rş[ă(8©qLŐ8¨×gďżÔWmo7ţúű1)n×|_nűÉRŠžď¤°/@‡ˇŘJŕeŽÜ6ýő7Ăĺ ‡+Éqš ĐCbíňYr8ó 9|xśi#d˘%X€Ę§ŁDˇŹ~¨Y†˘gś™C(hÚVÜăíŔŘ(ŠF…0Ë,W(’P& žŠ#’eöY’Ě‘Xb­Ë63ĽÇÚq‚=¤6L –`"Ŕm/ůô0ą “Şě:eá2Zók!Xe˝¶ np˘I€É- ŕV‚<Ű&vŘI,ű*‰ĺ,1Ź¶e›‰Ýcë8±Ş“ń“O‚)ö(J{b'Âd:ÄšŘ­yí;T÷ˇ‹>8_lK€y- ŕU‚;Ű&rČI+{*iĺx,Ź¦e›iÝăęUŰd5­LˇŔâe,şs&N7Ť{ŐMxEż¬,Đčx°‚W 0ŻĽJgŰÄ{PňUËńPŽ9Űm&vŹ­Çδ,íŕ©=<+U/_%Ł„QŘ$őŇ’QŽ’PR—„‘ú$»Ô–l2&ČXŠě#4·d’|”LR„qěŮ®h3“S~>ŻW%“„QÄ‘­‘’€’É,%‘$' #ąIf©-‰dL)°0Ů%BňÔ’GňPň˱“0Ž<›mćqĘÎçŞä‘0 +Äďń¬ř$Ź$ %‘¤y\Ö—l7·%‘Ś "–"&»ÄÍ]ííěŁd’âŕq;Ů-mfrĘĎq&ż{ ?'§÷»7W»›íÝęţSóýÝŻĆ×g§gÍéĂnŰśŻ>îÖ÷7żŻź7'»ű›»÷Í_ŕű`ôzűv}yz6\ľzűq}˙ËúúňďëO—c§ŹĎÇnđ7ÓŽĚžúÍłŃÉÓ3­.Ľ»ľř´y»˝Mmw9_żżąËČłżn7ëç3ŐśÂß›_głď°ő~^Ŕß«”Öˇ7PPµ‹pŘ+übäòŰ+j Ęm (~ł‚AzěŐĽůŤżÁËú(m^6˙ú·j®q®ó™u]uÄ…Őě“ÍĚ@eµk× Öc˛0‡ł mŹCÓ @-,"Ą†ŽE  µh­çtiRŁ Ţ©Z3tÂhRŻ!&ŹUBa"±d͡k@˙= ŤR^#„¶…ĺiĚËŮ»™Qă0’ťÍ E­rKúâaě†aPćÄĂÚd\ŢGPp)‡š4ÜÝú)!ŹJŻ‰Źč6¬˙#kP5'óíö왶?Żv°ôď~Ľ[˝˝]˙ôps˝Î«Ú4'gw»şÓo¶÷»|ú°»čľłĘšOT7®ďzŻ`s‚`ŐaH‹ěä|˝ş}ą‚ýňŚ¨Ě ·7Wë‹«Ő-쥟îo®agŤ†ýţÜç°+>îîWHńŕK·ÓĎ«»őíĺâvűq=Ří¶wŻ~YßWűëaÜcš¶×±ÝâxłhÜ,Şy? )U–IŔd”žpźń˝ÁŰTúŹÍw|PŮŕ™V1.˘ü…F¤ôÁß%Ď‚ďÔÔISŢŃ^´ś‰™ÄŚÂѬ,%Fmŕ·ďtş4ŕÓÁ’F<˘řHaŢ–ÎmLsÂ#MŠOü„'?¶1ĹŃĆä<âČGLtĚßb]}}w·Ú¬Ż›÷÷«ë›5¬ űWĄ`k°f°85ęŘÚÍ›ŤěhôÁŽJŃüę‰çO±R-"éó9îQŘ%]_–Xâf3k3G}’ÖLS;ňTś‘¨*ň·ô)ÇTŽör>ĹĽÂťśĚ#)2ONŘ1ŞćÉ!ˇf’"¸,ęh´ž¦č¸ĹůS,ę>˝ćň˘Ó± Ç­‹×`5¬ÁhŻńB㣠?”żýÓ*…éđ>iA·’l|5WVţ†'ĽşżiÜěô_,ä +«ţÄ–ý˙DÝGQ8ĎćóÓ««‡Íův—ŠŞ(¨-¤ 6<Őx]:í™zÄG}>čÁ=ÉÇo}¶ą‡ĄlýáÓL˙ˇÓě˙(Ŕow\o?Ľţ0Ô—ŰéIMJř ŽjEGµ ťW°‡Z¨›ÔJŻ°Ąly5üÚŠ­Ť]ŻSŁu +aĐ**nâEe|íÓŔ·ÔOÜq0ŽM&áe1Ł·%»56 «Š©QŮȦ3šn9~ ŕÍŃE(ťőH@k‡de“ß’™ü +·UďMźśŐ A`°jf23ŠHJo9 •)JÓ8´I|äiŃö€{@]M#ŢEŮő4e1ž2TŢF7ŘąĄH­ILö°U˘CW(ě9ňőrÎű6z:Pđ”ÖNclzđSÁáŹt5p"ŐçŮŁVçOłŠÚă1Ů!IŰH6Ç…ř’ ‘ŁÂ5QM)Ą”—…6É„Ě‘päëĹp9=áť©s2!Ŕ°Ĺ +x¸ł1±óÓ¤.“ĐŰ'ŁcTCŢ÷:5ř>íŁ!ôé:vŮČÓYÚ©íÔU(_űń´2`lN i%]­dę6á¦áń&‹ pĆ–˙gú†Ţă5+Ű„ đ+N™_9˛Ü¤@Kŕ‡šÜąŘ÷z1}qk1“ţĘP~ÉR î=Ţ 5;đ&Ůq~(Č’ÓwQ x ܆;Ţ—nÉű #)Ť©—î9­˘-Ňq ›Ë˝YRůĂ>eÚ¶j“ Töš'ť4Ą9 ˝:˝żt#ţ>Ô‘ŻN·xćű\m/ř?«í)ă+^¦ĺ-áŻ-Ö˘,v—OâqΫÓÚ=ßá\E şŰ <—Ţ”0TÄéÁYâ91Š±Ú˛Űĺq,řĐß.5±#âM±)ň6ŻŁŞ|Ů;/ć\*´0&î˛lŘžĘ3ç$Ěŕi#mÇÚXoćLJźJ˘č‹h'­âQ´™Ä?€aÂ0 Ëx;—*ú6N5–Mt’{ť˘]b,ĂH ˘Ń"pšJˇ5Ë7ÖěšąfĎ-)ş¤ëčŹTB}+Łł ¶Ö´!!L’eP'‘äR„=Îú™ˇ¦•$…ďŇř”YČ![BSfÚ‡ŞeĆ˝XˇóšÚ*-Ë ;ďŕÁ7&…ÂJ3ĎŇ!Kk +N‡4Ç0˛™„ón/IS=S@8Ń°…;c (•§Âť'9ńŇ?áÄ@’3ŔÇÉLŨžňŁ°i¤˝ŔZŇ#ňQbX$E“í™­O%đN)m*W”k"8GPTFušŇ%±ŃČ^41´ś›ĘřČQTÓj‰#\M{‰ĺ„ÇL×›Z-UĚ9Ž8POĎÉßPŹrCl +f[:ť$­L Ą„)ôJ<)őĹŽ…FŐi9mŘöăáť#ÔŃ©1@äűQ˙`dţ9Ú ĆăëËăĹZPŢH˘_ŰígÇP +¸ťđ Ó™qÓY†¸ŕ©­zŽXębquECGËuRIa|łăâhT/“‹c%x*Cбü9çb>3Žb‡Ť&gTÂěË ľv s¤řąÂ°Ź##.čĘ.÷”ˇËžj3ÉŻŠÄ¶‚L8 +łYŁ€ŇiÚ…5ű °86ÂA‚äN©\I9Ü ¤¸RlK’ŇäsŐLT GRf´ `ÉŮŢ4‚ R őą¦u +|âD˛3"°$d´ ŔÍŠŤX@j1:)ĹřŁĘ5—WU“+ĘiąŐQc¤·Đ±4™”ó‘[ňNŇŇś·8}í—0wP#‚šČĚ=iµ4rč¸S®qzJ‡–Ě>ra4DaÖFęv졂 UýMĚć‚8JŠ¸(g¸U|mJ%‰E* łląď’Ĺ7ËťÚŕ¬)€—ą±bCÖ¨Xg“V1BýÁ‰Žx5 {;äçAÚj– ŠT+[ňµ)Ą$Šg±—6T«_‘VşËm´ŠÍd¬Ĺ·$… +ŢÍCv +Íäđ”.=M$MĄß„u"©Ä"ňň„ @˘_€†?"¬Çlč*PµAü˘ŠÔJB}FI)µ"J%o\cLß`‹Ý¸Xť‰+‚jx§X.ËËuP©d*ŮŐŤ° eŻş˛QrDÉ\.KŮĺ:]2ĹšzŹe:Űq7ÄQČËMe€čŠÚŇRč’ŔżĎ°~ť FËîztvşřR,ýPám}-i¶µ®öł 㞯L6TŠşe {]Ź«đ2ěhĺëµ,‘µÚwŹrI.›ű%üč·–B+BęE…%23”nmoŁËĆ2÷ “"µĚłd‰*mdµˇ¬¬Ů ôĆ;XUXvuZË”…W±ë+wŐYěŤUPkpĆyíÓ|>ş,&Ńçĺh2-ŕvköĹ]Gwx‡”ź;,ÔüÇR©‚â6\0|‚ş9lç?ć 8î·Ë'ˇ{ś˙N͉ŰăÇž:xÄ©X-Ź=GĽ qä|™Ť¸ě´#¦O›±ÖŠÄ*FůÚ ŢF\ŰÚ·Ť@kcŇ˝[|¬îíâ¸4¶Ůb˛¬2¶i» ŐčnN x˛ĹĹ8uđS·¸XEWâ,śJ@·KQô}kMlîb•&e ‚C˛kÇDé‰Ë-yç¸H܆—Ú”šăÜźaÚg”\—7¤r•·$¶)5Ç­MJ=U“2ůқ䉞+néĎ°E¬–Ĺčô|1ľ^ÝčP ‘čóZž¦J†´\ +ř‰ŤQ’Ý$V†5m¬‰~;ŘŢÔONÔVoËô8ŘJŐ‹Ă°č†U{ŢW6i}$ËeŽĐýÚÉrn }ł^†E7¬Ú‹đľÚy´ 8ŞĆĘÓq†D’…Çź,–ËÓ÷‹ů‡ĺtľĆ1Ý®'Km~輿â—Üů0»Ćߣłăugď`˛8+˘Áňzuý:šŹ>Ëčh9!şó[ä?GłŮ•üęb:;?ÂřýČDWë^tĽ¸žOúí˝űQ·ł×dPńťÍÍ6ş`x7­Ëý†Ł9ŚzŃŘ<Ľ-Ç‹Ń,ęFŠůx:+·‹‰ßÚ`­˙˛ÂűüóuQî ®ş)^DeşĎŠU?ęySĂ7 C?±ĂZZĂ%›jc#™ ĚüŻa˙Č,G>řćŕ—ÓÁ17+DÂáô Ůs:<ÁÎô”=•‹}X@źuĄ[śŤ›l†—ŚůďkŔߥ룎67NĆ Ö87ŢŃąVÎĄ'äXĚUr“˙÷8ô)ł-«n7Ó +4TŐ¨ÄwY?*čź~$čNŐÎŞĐžĽ˙¨ŰÜ’Čr#źÄáď‹ŻĺćH5—¦µäÓ,1@’;Ě7‹Ć´ć<6N{Ä·Úŕi=ęüxďdý ×ęô˙>_|ťËŤrď`ömµťţíd?꿇ÇĐtúč¤_ŠrK¸¸Ľbčż›ÎpQ2ÁéÓyä7xŞďý°ĺŻŔ®ýLWS´[ +lK8YŹĆż?@Â`´šŽ7Ů—‹ß‹űóků0;ZFHÜÄ ¸úb}\Śhk~ôŰ‚˘­pI'ˇü4€’l™@vq˝Ž:Ńކ¶óב˝îDýŁĺzË͆‹ůäzşľĎĄîÂË>ŔşwÚ‚˛jK•!łßÜ蟪—…‰ÄżĄ±Ë{ąĆÄ€7Í{ÎşEWŰńçvަA+ehθÄxźVĹŰ/Ĺüh2ą§•wivŮ8'ďĹŘAyl3%ř·—Z„`\ÁÜ“»DXĘüö­r‡łb>y* ‰°'S}˝š˙Ö‹túo˙(Ć×ÔA>o«ÖÍóç]ćľ_‡~ôÝ.T˝ŁóóU$§nçËď썦Ř}ß°ż–ŰkČ‹aĹčíů9Zvś®Sr÷Ž®×+ fôŻhďÍtu5}óËý–ĺ*c6/˙ËÜ«sŻzňż–.OÝ~žť—ýĺĹĎŻŘşj:;0ᾉ~d]ELěfŹ¬}5nH5Ň`äaĘáđÂ0«˙YĺTŽ‰Gżf>‹vv2żżż ľEŮďĺ˝Ěď+¬GcG;‰Ł|D8ż¬—±P9°U/,íe˙‘ +ą^…zÚŞ™`”Ä +-{%©+I§ăĚ&zŁŢőŘۢödä0ťÇÁ÷x2î'’%ĺü +Ą`ĆNúÜăd‘°Pka]5 śÂ4†¸ ~ԝǴrL+>YUO,{!Ż`ÚH1 #¬&ÄgÎyhT¬$÷»¬t‚ëFhř.AŁ5†MŃKC0xL$BbČI‚fĆ*⍣U#&"ÜHŚŐžˇÂ0(!áÖ +I pIhä’i„D†bw0±FJK˛X7Ć•Ń"DŔ±ËK4bˇÚ˘őYq-'5HŞ1 RKŻE¬ęP”BŤVĆË4C1ŤŔvĂ°.G ˛!bÇ8ZZGׄĹwřúÄÖ×ÁxĆ?ŁYŃŰk·ů8Î2ş +ŐŐăôxű­_ÇyyČ ĆoBţťOÝ:Ž§HţěÔźďęď¦Kµ >ţ'—“+äń,é…Ů4ŤîŠ÷˝0Á}—qÚJż`BrŚkUUëBÓ©Jg]ˇ¸óĽZď©â¬`©…ĘA{čĹŰţ䇻µŁ×ŢóŔľgÓ[Ϭ ‚Ń4ŁŚs`ü'rqĹ ąKĄ$—ć‰E3ŃŔâ“+Óě]Lgˇ&§××YśgQ>Z®„ĹFÚ×(‚µłÔoi*TU·irKˇ@łč=ËË“ë,ß/2ěËăfśO_X­ŞţRöŇ/ endstream endobj 183 0 obj <>stream +H‰ěWŰnŰHýý_Dęű%,'cLf'6äL&‹ h‰±9aH˘“ń|ýVUwS”ť‰•Ë ›…-X¦ÉîĂŞSU§ŞW{Ůô¤ş<:>űc^Ľ'cť­şIöS•w{Ůř`ŮśŮÍWeĎš¦ęÍ‚ÍŢËfăhÇ˝˦ó"Żˇ>ŻŠçy[ćřö­Góć˛^ÖĹz˝,w•ŕ`W´qéĎuAćŘTľ/ž57=*VE˝\ľß~7ŢÚrjú[].šeÔ”ő9ľp˝Şň«đ/®žŇN»+ŕňAƲ9Ľ-|8}^Śđ2Üzq˙<‹?26‘F8Ăłđô×ěĺ+–-áá‹ůżXB€ă‡Ů(^1ô&9żĺ»NÍ-t^LČýÓ-č‡ĺEöp±ĚŰ˝źĺërŮ/ĘŚĆł +–gŚpwŹüžĆ%÷Ŕąéór]žU·ç%b¦üM‰?¶Mŕ†ą Äß80ôĺ°y·BÇ7î^äeýî\c«ę[‘X›$;ţxN}Ś \Ů4;Ş˙V×Ë ęsYjÎX0ęľ 7|ĎÎa÷l6ŕł·"fË *P×Ĺă÷E}Ľ\ţO¤‰˝Ë’ož%"ő˙“$zGbľ0K~ĽK÷χř»D{g~>+ÔŁéă?‹Ĺ%Ú@hďhúKÝ|¨ă›GăGmłĘN/ňeóF‰8ŚM8™¤Eß@Pn"śvůâí—KRwŢ˙ąäő™içţô`´¨6őň˛ěvqę»”ó—2ńí 2Ló[Ě˙ŢGJő°n’—«ŹB¶«!ť>>ÉOž\®‹“ÓĎŞKőmcßm‡7t?Ř.óöí^ŘIŁěbÝ.†˙źU5‘ˇÓ†łŮżj•—Ű/ąhÚżÖ‰íw5«ś`oŞ1,bš덓tÁ„Ŕžă7*8˙láŢD{˝¨‚Í&l(XŹßĽÁŁŐă?W9hé¬xÓ´EöĽh×qĽ˙®M÷;ĘđŰ×G§w|'Á;MT”0{qřIÄŕç%Ü(›Ý§o–I­äDi«<űD î_e«Ż¨ěo4;˙ŁóćdĚK‚ĆĽ0%Ľ×(zč÷Äř±_«qw#ćNÚv|‰¦U͇Lg«îNăî4î37YüŐSć꫆LqŰÄx7ţ šůîć—U÷j –§ĺ»UŐ«%E.šÇéCń™ďÎÝĂÉc8O@Ž»Ő˙:řŮż~\/ÚŽěZăŤw^?mę“V—őůýűáö¬€B8É«˘ë +˛ýälgkÇ/ç°{ݵ9÷jŹĽ~ń×čúýŃÉâ&-ăß/Ę®ĎvOv&ôŽ„„ôÎeĽO \2?šeóbˇ™áމŚVÍ•ëÇł´ö?E…e–aŤň=ŢpÝQ[u\¦ąőŇ*Zzß;—V^ĺi±sŇ K­ńÜl&ĂÍbŹD…0Ţ3ôÜăLöVl˙šźu—Çő0T‡čťuŢŇT%¬Př:f¬˘ «Ť3řkáÍÁK!÷ą—ŮŃľôŮl_éD­†(ćJ(—BâĆWôÁĐTÎĽc¸†+ČVAGű¬4}Č,,•Yă,2Ťx<ÄZi‚ Ů›ą…·Žö=ŕá^ŕVjĆŚ!3ť6hxx„oŹüîńĐ>ßČ6€‚#ŽTN9Dv–K¦ S’HKŹ…äHŹ€ DgűÚ'@ĄąŚöHHNHM÷đ‡ŇČLH©“ÄťL‘v< +„Io EHʉ‹Ě9‹&Ţ€ă ăN3'8ňCͤ I­UHB›˛ö)aCG=šgžU†kĽó–ŇaŞ ŚRÄK™"OS 8«RŃé´§TŐŕŔzťDEІĘ$‰¦äÚkI9Ă]n Ý‹ŇÇ;Ď(*‘d­ľE,cN-ljk„ ůo#X§\S‡0ś‚ť:ŹL˝6öŽaçˇĆÓ‹ź„ˇŠÂeČ5őE 9o)ˇ5‘cŽm'ćߦ(őí~˛€IÚ ŘZHý0W)ZÓŚĐwÇXPJj=2MĽ*kZčF&ˇĺT–j›hÉVžĘŠů ¨Ä«$Ő Ĺ4;3g¦ďea<ĚÚi|ÄďŮ9”đl6Ú^ĽÁ8}{uëV\łŮqÜ..Ę孛Ⲹ/Ťżł zéĺ»wéxř©÷†e…8jŞeQgs8ÖÜŠ3\‹`ă'ĺűbokOřĽĽĘVq!m9¨®Öë|§MqičbăŁ6żZďÁă“óĎ:ô„^‹ +Ú÷1ˇC1cHŽáhă9Ő;śx莔ü#Q–1ŹfgßţŤWA `NĹ?PĎTňÎ/”›ß8·áˇQ‘tvŁĄĄ¦˘aЧ† +=Ô’¸©dLö\ż –j‡rŰK'/ šŁŕł–Ŕ´[ęfŞ˙vküFaK +M_‘Ł¸x=Ľ`VǦźĚş~)&ťkŕ;U¶ĺ%7•uAˇ{čĐpaŘ°± ™a? ÍGËí~Ç6Vç.u87ŘdŇő‹hC‡¤YÂ&ŐöbČ6ŽĄ -ăńŐőż1/˘¶ŹÂ ßé㔦RžÁđlM<×$[®_¤€ŃaóWlZ0%…ăźĐˇI§ Ü›ŔößtlŁąDa`á;ŐÖďĹYvŘTM›µÍ媯˛Ě Đ˙ĺľZŰŇV¶đůţ‡ôQĽlE·€Ú–›(nT +j{vké 02dŇɵżţ¬ÉŤ rénűŘžµ$yךő®űdRYźő/3‘ »]ČrépĹN…‹tü¤ć_+łn]¸{Ž?¨µ` HyTńV(wfká4ÓîüĺÜűŚ7ź˝¤fł3—TĎ/’Ń”Ż¶qÍ&jôâ©HI:é‰PŚ°~H·§S°#ř2’†×‹"śgCĘÍS-(ĄTzÖÍŞ”&ť%ŹĎi9‰óĆ«źZޢéű$_ä—ę)k–×bĄz¶slMD±Ř{.ă>1;Ělrb +hŮk–üR𾔸h‹GŠÄkŰ«¸‡*nwÖ¶«śYJ{€ vO—ŽŔ”Ý+YĹđ¦L¬\`fÂďĘ€łVNI@áźü,[}礽ôo÷·{.X8uj`vÔČx|±őjŇűÔ~u•jţ9B0łĂĆrČm_ˇnń¸@Ýđ ~%ŽQ§ÇtdžMf][ÓR’50ź›ČÄ´SˇĚĆđŇÇ!kS#ÖÁ­¶¤ÜĆƵt ÇJqCľ0ËňYúčś&dJ Ť‡ŤB)©îř,Á/QŽó}ĺÇł +ÔFŘ`Z‹uÁłrŕ>]f"ţč>'•D #Ş@,16®u ¨;ĘŢĚ·–Śjäk6ř +ŃE´…-‡Ú ů9Ů2żŤ"™|hbn[ŚăNŚÎ Á÷@© +d‘©řě<¸kV é¸döéRt÷ž‚ó0ń÷vçĘ4¸^Ďʶ’žsž¨ÜZ– éNÜY‡(Ě@®MâëËÎuJŤ2Ć/-¤ńčcç{P’<~80sÔő^ +>\$ž7Ô5â„cěÇ:^N[„-O’eˇ±SÄ ő«ó,ŕKÜŐëŮX¬hj ~LçćNSZaÎÄ«¸ŘĚ·sB>5źý)Tü7fžb·eşh‹éjCCÓs•JCŰä›úÓŠO”8ěĎîĎC¸7`zŠ´8ózŐvżú’Ď# rúŤp@ŰĄXžęÓźĂćęŃňMÜV3ű0Aw”D[pŮ·‡Ąz͡4h]7 +ŕëâRrÓy•¬sSi·(C\t$ďd˛‹°a¦Ű ŚßtuUT`ŕȡTrµĚřţió*¬Xîź'˝§ĺPĚ/90}ôR‹˘ÇsćAă +üRjů”’J<›‹hlazĹZž6Żł1›„ý/\YDőc żË`*đ"˝OgÂ.ł*´°ĚXX·1™`Ě ‘| *&hŞÓ¶p—Ús8Ë÷ď‡óĆ<=ëaPů0˘&|Ž#¦uaó±găň‹Uüý”> ÔŕA5|•Ĥ7M»3FÜ>Ś”d:ž$±űŢž3#± +€{ĽwşÄ4€Şş‚sŔ‰mě§ěrEŃ?)I˙-G“™óLŽňŁLĘ^·ś[€üIá˙AöęBö+Ĺ•Č)·Jâ/ŤäźTčă•K]B_8‹%=¸çÁÝăe;ŮŻËĂŤ,ضŕ®­cŐtüĺuŃ–‹÷ocĘ˙C•Ú˝űßxżpŘ”čz/Ž«j!XËçń|\%˛Áííĺ‰işRŠľ4‘đ2ŹF— -ňZ\»–łš•yY’©LfY´î‰!«pó/µĺu4Ŕ¤?XeB…Čß`Ö»M®Í®ă2sLăŇ=Ś¤—6a„2`÷ůQ; +?hÇşÁtg„Í•r*žę2ĄşšTzr ›+Ç6ćc¬°1ćčöbťKљ܎űPpľ„–őů=‘ŕČÇÇXŚ+]D‘©”>žc8#Ą…mFY˝·r HUŞ>v,ÇRjˇŢ¦4](“›¬šM5YŞ”sl”–{8ů†¤îČ1žD:9%qéËKd’–3Ć5ŮwP+Mf9–‡Ď„řB`Ľ$÷ÎA”GĄÇ†šC—ç"D¦ + Ń’Đ0GPbbĹś ¦‘\řÁO‘§ý3X Ćm#dźĽ˛-&žĽŁäÚ©a‘ýiÇčŚň0mKuĄäĆϲP• µ•ˇÉô!0Qúśţž%E$°Ëşi@fŔĹB8Ć&#‡˘IĽS‘ř ŽLŰBPŃú#śI @ĂÓ]Fâ]†¸…B™O.›Ę¤ňs1J +, *})´ĎqĐT–b9öc—ËfÓŮůH5bŔRhÄ€ĄŘĐ5—ΧCdP:dŽ‘ÝŽú1żfĐź® O•cÔ%˛p¦‹±‰ąmA!c|aé´ä@mB§Á7Ä&žD[@ü=±ĽZP­Q˝ o2č{˛/ĐsĹ,QĎ|Ź‚˛»’Euä4Đ!­˘ă™Ä@âF4h…,hH«ąeä"čQÁ”?<ĹcG„ţĄBů7Ě ˇC1÷¶×şiŕ‡6Ö™i|źLŤp;𕦮ćmiésΞwfŤ2Ćç§Ú<±Đ!s¤âŮ`6-H ,Ő»&“^-A&iú4CĄ¨Î¸ŤŮ)ˇ$.řžĎŰź’I&üµItŘX‚Aź¬ş b©-ömť÷ř×i>ÓaI‘éA®›CĄAlˇHSž´ů§ĽŰvJŚ`)¬ Ă»Zó—‹ý;Öe–đvśčZ’RÎXWąô>EVM‹nAÓ¨I‹K”Iŕ R»RŻçłU,Ý!?fŢ^n~Ü=z˙zë}Ř;Ko^ĆËE~2ôÍWgµW{Ű[‚öíŤÜőéqný x}ňć<óö ńiëĽČ]«§Îó15“YO&íę]µż—Ü(~Ţ˙«x´gŮEűďTb-V&x ÍÖ´DŃ}gY ńnÍAvOP + "y!¨ńk>ŠŢÉ´Ć_ßř¶ZÄär@af‘N$B÷"Ói5Q2óÔ•O;Ĺ'§«÷ň¤©0ŕW‘bW)€H* +ô-hoJ‡Dł(úsHĘA­Ěľ3Q¦Ë¬&bCY‘Š.ŐŻ/ŹKbĆÍW%>šbE–ŞŠQ_…c?1!¤h§1Ä`v™iWŇdKŠ~MYµ‡ňrĹ„“Ć–k˛á§€éËęÓ˝%/^?n‹bĄä/jŠoZÄŘ܀ƱĽ>„jd¦őuÄĄ™ř—lś_ĹFá|ůiÚ˛6nŽř89n¬ę s*2(˙jwJĚ##>ŁPÚ§đ†B€ńš˘Ă Ą=7xôŐ=˛vÇŢ#'łřľ ”€-vś +Ą¬8,Đ(bxňi^Ł)ľŃŤř\+rsŃą™ću|ň‚Ń×*Y +iV¤‚čěa…©«SˇHŞ­ćôÉó…úÍ&'M]d»‘öŁŞąMëŽ÷kV ĆÜ3—pëYQ~!ÄFyJ‚ +“ć©ÔY?ÓQÚč˛ÖIŁF¨H6Zţ9çŞć«n’šëFČtv|!,»€UCS•+1ÁJ śťkP%<:řĄŐyş•6»Ö^l,>\€E‘4ÔŔţ=˘ąlOÔŤ…\ë»%†,-pµô)†'Çm÷ \ŐÖGîV€bżń¦ óÔ,đ#e]´Ĺ&1ůľ§s‹zŁ·‰Ż6AU4«)Öůľ@ńŇÚ{Xj|–öÚj{W÷Ů1˝ÄV¬ij|Q˝©cŰę4§ ’˝gvÔ›ŐśÇGd2˙m€Š=qĆ$ú˛é‰őQAľžrâHŕsrŚZ  +”ÜÝ˝ ĹúĄµN1¨cŕÇV8Mně-{~†;|¦"ďXÝ{éń )ľą.Ć´Lgĺ’ßŇT!K§¨Ů8‘ˇ^9cţK[7^‹ý…ź,…2ş>™z)R§)|ű&@†˙$ĚLä *zdŘ=¨„GÄđSy!Lő$HônńÁR Ľ{‚©|ÚĽ‘D$P›*RÉ4WDŠĽČLl0TŠ­ćĘ ř/‰YR‹Gn*? +Eź&żúUŠyÝIÂsdFĆ‚‘#ő0Š»y˛fBPGxšRř×ďß;ę‰k˙ G<¸á*ß`YĽ‘§{8RČ*ë13%gźč <µ%ý÷.Á*Ł7“#z˙‰ĂTţßă×°€Ä%Ó*+Tž‚…@$˙+…mE™s#eŮ ‰+Ď@}ČTŔFěÁL„IâžEć^Ů”ŚcúA("¶˛D˛ĺ­;Ż¦­¨Eä ńIŞ$M «fńŔAŠ®ąŹŘţs¨˙:^äEÄůcĎ + 2ÍL͆Ř%fáj‰tÔ™8í« 7 ?4)ÝűŃĎ/6ZĹť&xf 0é{ĂŕÄč•ó’6*wšĂ] Úżuű  L.ĘZh;›sy9 +ęd}tăVf'bçęďëŚ}ě Űhť»ŘýBUćA_Ź~ŐĽďÓęqwŰĺZ/'/.zW)Ź’Ý i8őťRęÓL°aKßK!Ńîx§6C>8ŇöŹ§áW_,ˇ­: 4Âm{#-ŤçĘĚŻć¬Ů +NJ… gsťÂ>ăŰęf"Ŕj +w[nŁí <žý`đׂűpY˙ˇ^`RÓz¬űo–“?XMŕ¤ô/—“?XM®SźˇAhÚĎż.–3ŘV­÷)6äÁÚÚPâ›Đ)wőA“X_磏‚„ĆX '‹Ő˙×fÁž–®ŃmźĘ}*E‰ńľ±Tz~©FôĎh†Ą‚}‚“}AaźfŠ!%żbż,ŘŔf»Â/îrlkSj•f„;ČNś–"ż-Ď4ĂřÍČJfŢCÓ˙ aÍ˙?ťU”ěšôŞ[ŘLŔ[ŕś=ĽŽ9ŽLFßďŮ–~YRx®0Y±ľHp{~¤'z¦šîş©6ü3Ö: + Wď÷ĽŠt×NyńéH…‡Ă›÷ű!`näľ´.“`©Q3Ap1HëHĘaÁN%¦Ű ÝT°íg•#iĽú2ą°Ú ďwjęî˛2BpŰ8Ž¬€+Ü‹ł“RAŞUĐ-:Ű÷«˘—!ÖŢë-MńMoíŐŰă˝›b×—q•*B›ěwevz|ÍĘŮ˙kÉ/„’šp:-šŃDąťA’T&9‚ŰťLśś·ń®¤ś˝Hh~;î|Đ\˛4Ńch)˘]L §×BNóűQP®Ú`ż Lw ;éš6ô9ĐŇ7vB»Fş ˛ľÍŹ[ˇ8·UçJÉ_„¦q¦¦™\P)śü#c?#ơ¦1Ą™żwĚţ,{#ŚčFÄŘßćď›bP…ńdŻM˝`Üňň{É€Ü7‚=ť*¨Gů#·že[˘e;¬lV#T$-?˛­9@çľeď_ŠD’ ă0ókľNő,;ô»1U|ź*Ó-¸ź÷U1<J‘sNÜŚ‚{G:˘s­jQPąXb6rĎ®8ĺŞaiŇiŔ´ľCcÇ %ľ7ă}u8 z@ůąC8JŻŮ±fܪ˸€—‡=g®ŽĂÝĺý *vŹéęţŻkż.ÍÁ¤Ä¶Ë‡ú}ďĆ”,˙¦ÎÔAe<łIçNHęSŚzą(í8ž®âßśźiş•üvŮ“b­ŹXóWç˘Ţ Áf‘%˛}VZÓÓ“}TÁ %Vň˝’:"Ő™Ż?S>Ţp»ęÚĐéî(ŔKÚÄ]ĄŕőyŃpcć>š$ćÄÄ÷š4\őšQĐDőo•ô3†˝˝A_†Ň@hąÎgSr ¸xî`Î%M‘k„‚wG•ďeů+ łżB•ĺ•a$–žZŚtQS:9˙3Óîčbä ‘ěď{źEÔňłď˙aĽJ×SU{čô¨ÖY+N8+ P­µVE­¶(‚2śóś?ßµ'ě¶Ýý㣒÷MVVVřbű‹IQś†65iE…W©(ÓQmśfĚ$^†™Bz‡»;_ARďźoÔŕúł‰aef_/QĘKć"‚ŹEśzď©eo®ŐdĎC€ťnjĄˇÝÂ]tmŤßĺ[Ëx‚hč&^$wnĺ}ŐaľěÇĹŃąP) JÚ Ú5˛čXűńÁ’µ\ľ+ŘłE=v…^x]o\â>XĚè5âĄçß»ÚuOŘŰ+ą…éw•ţ€_‰Óů)ŐbÚťŽzۢęSĂ ˘ †.…|}ŔâhOnŰ•Ěźxéx`|mƶR*&‚ŔsiH56N-Y–=tąuu`ĂĚź|Ě}×˝S“Zjúă ŔćajJˇZŁä}gjËjęŇ>ÇýĹY謏ÄbŢ×2šĚlVÔSĹ'‚ÄČcŘĆ4?g·E&؆örůisÄ;%–¦öŞ`E.  c|çCSá`(—Ń‹CPEOk˘ť S;¨nđReçu÷âIÁ7!îĘ"jDÇXĄź¦‰L¬Ů±‰"ńgÇČ9č”I˛7g’‡yQi>ŁBäŘcčF˛D¶×b Ł7B#–ÁŰQ óÍÜw.‚ žP©ĐŠ¤`’˛ţű_uęěuůřa/Őś°)GMhbV%Đd•é¨ć(ÍŹô …×wű“qTłvŇÓW•lŹę"R~?»˛SgB*YüÁY% O¸ ÖŔ…–ÍÝBlYŇĎ7™ U;b«BIEŮÍm‘·˝…1×Ř^Đ ´p+řŁGěđ€P8‘č.W^Ř˝(ŃŐ^L*ÚŢ 'Ą´±Î§vĎ'Šźć=Ř6™{ťˇsÝúW±±Żw_` <—[ż×­5vŃB7@ ›~tŠ Q~ĐĹ!i"Ŕiě'»J Ú°ů‘™Ç[‘ď|çŘCĽ¤0!·˙ę¬÷}ßŮ-ĽŻ˝Ňůą3P"cśż#°Ą}Ąr°ŮĘk\öJGA{2bfJŽÄ<ű.ŃDîÉ0ÉXnc‚ϱA-ŃßE±ŕßÂť»!wäĘ~ë¨H›“«ĽxÍ–‘[ě$×HpwÜáę ő4´¸´Dý+őja*îză mO ąóaűDľz»Ç0¸ ďY¬đwübÎŇëäÁŢZźaôH©Eô˘8ÔE +«î(8iŢňĚ\ěŃc Bě Ľ`©"™Ţ6čOąlµVŻ­>Ź˝ayđR'5ĄšÍ°üťÝz ôĂůiĽ8éěĚv"h2şçĺÇąËŃU2Ă+ćŢq#ôĎ)€˝—ÜÝ"ÔT°·q–ťYęť,keJĘ`žRÔú”±Ę>LĂŢ3%†?˘ńĚOgj:qŇ‘ÇŚăRń揔ń¬‡‚%-cŔA&µlOĐJ ĆwÓŘßtAx¶äÂo¤K°Oďăwęb’ç,M^§ ‹™O¬Őg7Š©Q6íÂ]lÔäŕ.N5–ńŘ +ßęB2ÎÜvĺqšÜ:3° OźRńU×n ^§$päZëX—§Ś ¶źe/ąËođő Ü|;t‰ŇC–çCQ;Ô ĐŇëîŇš‡d‘K…ĺ8_ŠŽš$‘‹6l~îâôęY}—ůSqŽ +Ź1EňD»Yç`J#;É«#u<0ÄŹ"7ÔÖ°˝Ć鵏ˇóšLOßW} śŘč†ůë·?ÖG†ya>żő̢̈́FóX(C¶B!9«6:°YéqĚ­‰Áć~‹ śĆtl”“Čô0sU_žF%‚ĄŚ0¶orŐň'%aą*%®ăť˝„ËĐ/‹Â¦LMä‘×´łźě@yaaćlżs‘ęÔV¸ŁJmřeäŁÉΧ— 6ÉÔĺmŐ\÷wüilŮĚ Űűg†^°tćÂŚW‘Ƕp¨ @=1 ]xiűż<>ěDüwľě0… +nľ– 47_G µz˙ĆĚ“¤Ý źÔóý˝ďä{6-6Úő.Vxď/ŕ."s”µ#[<ŁTd^|Ć\wĹ +Ţ VLpG!DĘ­b<»ý,ËŮlÜX¦ťo$"›B—ČägşÉC×E˘ĐC¬Aó•:¸ęűwů>ýń—†úťNVOŰ ;%ŘoÚgü_ĺÎ7+"A˘‘H"ĎÚiďLYS „âL.„Dáiś’yű?N˙) ńWÍ슼¦ ˘ŕ"}Ăq ź×ÎţÓ,d§ŔKšŠ‚l?qBÜIś¬"ňU (ÁÎŻŞÄÔlĽČ¦mĚ! +ĎL€ ČĘĘúFÚi°TQÁ´cú<ÂGŇůZp¤¬¦xä¸ĺ/,BËŃ:˘QČd«ŻßµACiőn$G'ťÁ]€…(}'±–ni “ř&yÖÓ SI9kŻn÷çHΡÇĽş¸?Ę}8ĎŠůQú0ňĺl;ĐHtN§×uâŔ‚Ů)Ćaw´"“eU<Ĺý'͉ł®˘&ľ†Ă +’ét“R]"hş‹çu6’xäś7ÚŘOč’zĐö‡ÂŕS¨P½ŋ+óůŇŠĎ‚Aˇ.łŻŇ,Ą˝lö%äʤS6_?†ŘÇö¨ěŚ[<5hsuČY(@«óň™my1˛9sU>‚~-…ă«Ő +IŃjä#$kÓ1 ]39ޡH̉m¸‚$GłKY&š S‘ˇ-ˇĄöÇŽYźh䏍* tÍ—îbä‚Ĺ:Nq“ĎÁĽű¦P6Ę‚Ý»Bqď| IWx‹—Ť‘T—Ä€1}›K°}'éá~ppś·ëăŮ4…U4P0Ou)Ę0?•hŤÂ‚Ű*íF”3ň¦l.J)`°  đt§YÖ"öĂÁ¶Pă$âĘq „NF24˙±§ţş°Ié67@ÄŕÄŃł40´»,MźIaX_ŹaNÖz»—±üŚ`ŻŃ…c}Ď`UŃH5SC…/y6F'#Ř-9zGa,ˇfđr«`č»;m3Łh¤2ý¸Źňą X* ~ÖP´•—’ˇ·!×4¶´Î ¸1ÇK„ÍĚÜ*Ľmćm˨Kç?ôÔÁ> aßÓX(BVÖ.kic!Ç«ČśÓMüÁÉ/¬M9.EB[ăR"Ő”‘"#ĂŻč, ¦KU±'â`8wdö±…‡ň|ć[\C6 8Î3`}2Â{„…ÍU‰“%6ňÄÄ^¦„4ë RU͉{uµPa‹4óŤKÉ©^ŠneÂ…+ĺPxJö~Ţtž¶„÷lČj6iÎ7ň±fHŔĐĺ +ţqźCK“w,Í>§śÁŔjćÄÝđ‚&M{Äd”EXđď´Úg®aK—Ď \Ő¤sú_'îGB˛ŇČd„ť8…Š{P¨Ę’é+zű€Ě +•†P'hHÇN©Cˇ…Ť‰/Ͽȝ{¨ ‚P!öˇ>(Ŕ—CËLá˛Óűk*űT8—7ëřd>Ł$=lÎuˇ‰Ôńć ˇŁés}áŰsMł8USş «z:8cnő»Yě:¤ć” çC^™BŰ/.[¦H±P1ˇ˛$cľŮ÷]€BÍtőhŤčÍܤs›ĐłÖřJş„ę/äzŃO\H&&é;,™Îým%ł˝q=fDő’ËČn˘ŕ?Ů7;ĘoźŤĺ¸r1Ó­™Ő+W!ŢÓ÷÷ɦŕĺkGţŔJ“v«őHH·5ł‹%Ť AN­źb HÚ×Kučž«"Ń3™×s0_Ą<î·Xšţî˙E8Ň•ŢEŁ±_¨b*ÇôÖť“Â[içônÓ;­˝ťÓ‰™ŁeóĺŰĂÜâĂíâ/ëĂQî´ožWGőéŐz÷UGâýÉâkvç¸[śÄ·rWÇń˝ôf7–ďśLËń­öĂA|w"ç·Q*ľ3?ěĹw[˙«Ć÷ÄVVLß'-úBübë6odŤ<®:͟޼ťäÎ÷sűŇâ졼÷VÓJ?sâĐű*^˝â‹X‚“ăAeWo?»>0NöŻĘ?S5í!wIžÄęCíľ_;®K™íJIuXr·;{Ű]ŕk̵ Jĺšŕ±/ ¦AČ‘Ń’݆Î÷l3Ľ—ű5ó.ű˘Mż‰Ăo‹ůĆ»–<‹FîŢźďśÔăß,Ă­¸T§©´±_Ďď˙>ú˙­+púľşLúDž[O·lŇzéĄpŘxI1I_6ÚÍXb…Ö#-Ę×ő›´O#“ lŇNć)ż–=ÜöHc ŹÖŘÜmí&I´yÉ&Ío=픳c¶Ąkµ—|,±ţCWš,[ĹÚůőYiq}C%[Ǥ÷/bmÔîy¤`‹Ź¶/Ë|í3IëWŮ~ {ł'ý7‹rqpąÓźÉOó“&ĄÝúŐä}îQÉli^ű’JMńÜ!íln® +łWÝ#ő2٦}%ϵ@z†ŠĄÚF†IúrúÖ "˝Š%6rÉŁ'¶­ĺřł±>Á]6éíĹÖÉďŤY“Eşs¤žx¤—ĺTÚ>}8»a“ćďďĹÚŘf’®ŐĆĄŤî,{Ă"Ť%ÄÚós-ŔÖâzb޶.‚H‘Xß}»c“ÖĹĘ&N–î-ŇXbŐÁćúî©Czż—\qđi;ě¸÷ňiZ["}(‹ÍŇ^†’nŻĆĆÚÖŠ]´—Ú’ľšżÍÇ@Z\/M‡µ— ŇŞŘÚ~>°HiŽ­ŘÚř}xö‹´»LŇŢŃf.ô÷r"‹”*ţqOě˝n­±l5Ö®Żpűńa+É$˝ŰTǤ˝ÉíŰŔ"Ť%ľÚúXď®ő2›´™Kü¨ť•ŹŮ¤ú÷5)h2Ą˝ű?ëUÚ–8EAD -[Ůq@Yd“QTTdđu`ˇđ˙ß$ ]BҦ2_ňř{—“{Ď=wX“¶ €_nOĹV…î´]¨ß:ŐéŕfŃ@Ná|9ĚuŢ?™^1śľž'Úß(ÝéŻů×çMö’wćíóę­(ŚŻÁ(‘ň>®ů쌸==Ođ­¶8?čĘÓĺ‡ÔŁÝë¤xŰČ˝2oĎSá»űöcü0;ĽżL)Ďż™·×‘e1ĹľťÜĽ˙0o ÄN}7ŇďIťńőy]©˙ějúí{`ť%ľíFţěĹé{RĘ Öť4ď—´{ťĺ*‘ņyű$Oâ"űöµ’ËďŁÜŹä·3?óvľ˝ýŞ3oŹ©RÇĽ=@ěsqUxc} Bęü8aŢ6S™BŹŤü{9ążf}­Jă5ĚĽ­^¶'3ćm3U”’lÄ.Ĺ”?”cÜžÔŐ|xźs.ř¸Ť{ŽMŹ|éř°ů‰zn:–Ž·Ď—°Çöv€Z%ř{˙iřóĹ˙ä'!ŔNRułŢ6şÝH‚lşE›Ăé©î9/t§™ţ3Ó)"ó$ˇÇ¬ą˘M‡éŽĽß,§S«ÓĚ˝_-nĎ•î-N§Šâ3ť"őo8MđBőodZűksęŁíŐęÖp>ĹtŠÔ?Ă)Řú3ť‚\ląNŔZ†íަSA†ú˙žëO1ćäô:ŔtŠ4…éöľÍ-Ô¶Wťe÷îŃ_ř!Bĺçé'Ď˙˝í>—ÖŢgüç©oýVíݸţßÉ®;Ě%óë%fËÖ?!:wFő +żÚm0ą(÷DÇÇ˙řrŞyľ‚S0ük˘˘sU _ˇź_†Ĺ 2QČÖýsE![{©âWˇç´IMŘ}ˇ*ăCmŻ°$÷ m âÉĺżôÚ›H´WŠĚ*˛qÜY3°ci\đĎčĄfMwÔ,"ćG!woÁ +´»đ]·c:¶dp«Ř¬,LÍYF,Č'ű–D j‘mAYCî tŰj*PL4 žAĂJÇ,9`ËÁ®Ôr8řĚŠ‘_@dć'Čf†č`ľŕţýî%÷÷óů…qŤŃ2„âµë˙ű­P}ę›'XĆ’áŇüŠiJŕ)÷=X?˘ž*ˬ+ŰDÖ+«öşöŽ<w nžq%Ť|Şôśm:ă.°Á˛SOčzŢŞvęI3©Gp+ÝękccĐŮ ˘S»·*Ô0`FÉ´ć¦Âx©gq® 2s0qhFóźšyŮ2Ç’ {yßĤî]=ŃzZłó4¬öĘĽ!m‹M欼ąĂńđH:[ĐíźNů^0ëwnšßö‚KŮQXxxżÚí§iJŻä#ŚÝ/9â]ÉeĚ>PĽĆĄ3ża¬ďĽÄxIŇŞęŽFl¸ů‡ŮÍc\hľT1:Ű,®Ű‚öMulĆ +Ľ€xę´e%h©:Uę}.içxFV FÓgĺwíŘ-eµ˘–‚¸|ňí¸ ÓÔ€m=®HaQ5‹ű‡żé\ŁŇ5JF˝Ó»· +ÜyHAŹ~›ĆU~ŢěGŚůňXłiS™•AźßliÍ óLłŔŘŁč‰d™IłŔX_:–fˇn#ĄtŚ@ŻF^—aÜíđI{¦ ´^żw|VďI©OłfĄ7;ąŕ3Łs$ąˇ.cě6tÓ÷ä,ůE ş°OCđkô}o)ұt§˝ńőžhúž6 Ů}>yŇ÷´YhnĐŘńúţuM›…^§|5g}Ď7Ĺ ťcô˝ĹŠ1 ż?ĹŠľ§Y1¶W†Ţič< ĂĽ®Źž†¶Y8Üłyż; qöą`‚ÖŃxVĆ?V‘<°SUőĂM 7Ob…RĎV2‘żµ!{ĽÝíÜŰ“±c»ŰĄ·ÍŢwĺZ;b\rw˙’Đ k#oăęsdŚˇkžŹŐwŔň¶Š /©DHĚŠ€ą¸·9ʱčÁX*Çâ\{%Ç`J•zÓK=]$fŰn<ţÇ—SŃafoLd"˙r,Ĺ%GsM4ËcĽ/i,ądK vĄë]Ěb6–Y1ŤĄý?Z×ütäŘ™7‰1–¶5ĆKc•Lc4{­8Î!ȸ&¸‚â¬ćÂYo]sžNÚKęfßŕZŰlRÚbtŮŠęă[UŚ^¦ßÄh3[Á–á_}Qý?Ŕ ˝ŐĘ]˙ł^µki3Aô +r@ä+áµB[‚X,âGETĐJËĹB÷˙în’Í,Đ?yü!;3gfÎśó#g~+'pCu&eﯡ+ÜÍfN{GŰ)j6yĹT3 ~ÖžçňÎq«7*eŘ}ĺ|çř#YČź>¬mű$®xżNp<‚šf'ްף\–ś*hćÄř}ÍEśŚÂ©ęÝâĎ€´ÔuâÍiQ´ĐüuuC»W˘Ö#U/¶‡?EAßÉ Ą›ôřŞvC}×uîľÖQ'ă@& ŔŐebŽ+µţPAÓ}aPď©A©>–¬µ\¸=R˝ąń"Úf‚*°SµG÷ ÉqęÓ„ô$&Y pĽů-) j;wŐ0hěËsö–T ě¸ě'€ţň‘>|źSÝüßËzţţ {ůŇxřůâoî<1Y5?}EżŘXÜQjLě,šk[LRřü‘7ĐŠéź{ęÂۦz Zn%¦Ôiklž˛Îßč{]ĎT»É&OmŁ(\]w  úA=đ%˛)yű˛‘Ô›ŮXW·Hsе¦ă«>?G×b\W±źp-÷ ”ő˦R$őď N_űíZç:>?©Ęuç_ŕôů€WŘ}ćĐĂ|RX=‰G 0žŽďĂq +PrýKŘcÎěÇŢő)¬0ËT¸k}ŔďöC÷Eôüö)ą·r3©óÜ`Gśh®IŁW`->Ű€'^4×pdł ×4`d+Htźď!Ó:šľXî®Â%)C­PĂPäJô ńt)SDţôÜŇľľ5xĄA†Ůô´Ű––UĂKó˝Ř¸›ÓE luçŃUénUś9G“ zÎ,ßN˝ZĐ'Ač’¬KťämŞ‹ýi`Cx°l ÚRÖ4ʆ4g žryl«Çd‘Łâ"voĆ’©yGN~mnezŃVŠlď›—iüx\ÓM&śüďĺśś—řżĘR—±4jŹĺ6S$Öc‡5€ÓiçĐűxpdHÄ<­çŰŮńŢŕ|ĆJG€5…ۤDú”!K)ŃË}ĹBp*ɦä:ľ°¤ÎsqňX_±z§Zn%¦ţó6­Ě8žŽš±ĆӬə±6<é5c¸tjđÓ:|.…%ś7…Hś+š„m0•śNî4Ţ!Ł5üéńÖÇWJ¨8¬Ń÷(-Ĺ+ Ý}ĘńŽ»0oţµ([ÝytUş[)¨”ˇ=g–o—‚ÚkšĹMZÁ˘ŮAëRžr3Q^–Â{ÎŔB°% ĚĐŽFĹ,,Ŕ.\ô$Ă˝ă]dZ,›g·«-–/±ěó@N,›gwUbŤŞŕĹ%m48 e4`_*×I™^ÂO8‚Ň*)¶´˙!`, endstream endobj 184 0 obj <>stream +H‰¬WéZâL˝‚\„`¶㠨ŕ!(˘€Ŕ€Ë ĽŕÇĘ~˙_wŇ$éĐÝéţôă#PË©:U§.Zů´ ʥŦ”śM+"|$ř´ĺâl›ůqRŽ´˛›ô¦!~Tć…ś¶¬gŠ˝N#•Ě>d˛­|F.öĆÉTRn´äBAŃŁŐ%ąŹ¶ł›ĚiK7%Ůâýk!UµK™bWTŕçĺÔDz¸¶µëÓÔÍQ4ži3!–‘‹ĄÍ=tš†חޢ° O:(đ˛˙ś;ˇÔ[hŐ·Ĺ€BŇ?í6SµWIODÁő+şŕĹČËL˝oť(ŁÓPÍ;08,g, .4`’˙.ÇôO•Q`«QĐoč° +b:TL]ĂĎe;DŮXŰf± 5?áWÚö¬ŕ˙&ˇ‘ĘČ9ÖX豢\őy^%D['śµôZÉţô2Ď]3j9܅ҡËFĚĚ9L5&ĂjťdJ±Ć€h h,Â0¦Ôo}öÄű›äłőĐt4Ś#ľ|׎-˝W9˘uaŰQ_6šď¬Ń7u;fo­˘ŐÚFĂĆ™ÝXé1wăҡ)ŕCłý&Ú&†Ś¸ł1g"]®™Ě *±®Ď“Ţŕ +šÉNN¤ňÖť†˘ACťŃŃßc•Č艔NčĂL]¦<|Ü |źFŮPšušˇůâ"´hÔ|ĎĘÔt3Ź€éőT¶{ŮĚeöZôŃ6[$Jc|W. âš'Ć[|!Ć÷ěn˝ŁĆŚĹ­|9ŚŮL˝ěJuËě1R7ÚĚ.¨Ć2§çő[żÜßĚ3~e@tŕyTŹb'ćV}N;q?ŃzL·“8JVI’AÔí$g ůrßEî §aÚ^řX)Ś¶ëe#iqźEC ˝˘N‚˙ąÂAB4- 4ěůˇáľŮKÝdĄc8 9敆%/ jâťőßhęsĹ9<1/ěxŁŹ­ú;G °’äŰb®vRŃŇ^7†źO•ą—+aŹúÍk$¦©«ťľ›Ě?ÔNT¦”ŽÚGĆ vŚ 4aRoJ€8Ľ8 +ôw$eb»^éBçĐŘ0ŕIćmI:ŔŘ8č÷tů/Čvń}gR=Ż č청|v6ó?~˘ą@;`¸ôýgzhŔq‹ąŰɇ)ŃÜ·Ěö±ÎC٦“JVĐĆ{áĺFÚ,üUjşí&“˙‚ů•†8 ă¨ú8 űľiH§s “ÖĂ6·Ęášqk ¦p‚I€$9Ď]3“ á¦ÂôşôĺbX­»¶|@«@cz\EĄ~ëÎJXwÄ2Ĺ^§qŚ»Ô2aďzWbldspD{ôÁěM¬Ž0Ľ8{Â! Ý„a9?†ĺ„-`¬.4iH+í€% íŁL~sˇP7rşÔźťĐv6 +ŔC‚×cĺ„ËYt`L;‘Ču)'~¸!f=ČX3˘;;–†I—É}k©ĂCĎŬĄÖüä5FáçxCZy–Ćz ·X7\ Bu!­‹ż©du#ůC5NËëuá~¦}ôFĂJp˛S«ąÓ«żŐNˇ©^%·!0ů«ťâĎAĺ±:čTŐőŐďÚYç¦\JüW.—’u{Xîבř‡|güUfBŕ{7ź‰äćW-Ř]~›Éç˙Ý7lýbwúc/N€/¸[ä4;čÓťŞ“$ŐiŞÚ)µNőşčnĎ‚âýżĆćô•áT‹çlN'’´ś®7yycl±{cdâgűłŰó˝SíĂîô"¶;Í>śZN×»W%ápŞoä=ŔçźmŠÓł`pu¶{&;Íž¨NĽźiě˛ŔsMUťŐ©t;ťMhN§§Ć„Ů·Ň]«OwŞŢ=iTxOż2çCšS `Ş +‹˛Ö˙B}žçüŢ9é{/Žofźoą,f#Mă{huŢž„čÝţJ*TwÎ…:‘.×Ô!eÍ;ÚI…+XůËČĄmź«MiÁľTůöőSE‰–Ţ«6u‘&Kř ?—äQß”V!Aľ¸…‰ŕĂ€p˛íBőy^uěBăz­8őoíő¦ČˇI!Ą_vĄş#$X:N٧Љ§Ň!î“‚ÂĄď7pB(5/´“«„vĽM`Ň[`¨0R©! žúia5§§ül“ßĚp°F±$cĄ0R +ŕ±!†]ŞŮXŰVäÂü×Ň! ÁŻ».C߆čzĹĄˇŐ@¦J7÷m+Z¶¸{?§M4śc„ âV_ôĺůŻIÜ iÉ;\÷`ŤO<,mĺËc„ rŞâ˛˘á i¤+%ioŻźcŢăâ"Ć-O'š«$×Ďś–ö +®őq|”fX;÷ľ/cl9(x4ö˝Ž'#ćz°đÇĄűX±…ˇ+b†ĚŰ7ZşÔÄaëŢ™M\TQ™VT0ÄbÖ &2«ÔźěĽ+OËÉĄţŚw^MóŰđňšţ«Ŕç•Éîš\ «u0†ôâZÄâ6ě1»˙WËśž×oyô=y<„ń€_Ż®&RÓŃ°Ë®4Ş3¦žöWj–‡/ź¦Ü÷ 5:‹Č´Ř6®Ü'a©qÇ›x‡|·aÁŃ” HČŰU$T°Ä ü€që´{żÖWwŚ”+éÚyBÜń+ÉBžĄÓ/›• Ů1đł Šş<RŐ…7Áó˛EşşđtM^ó¨ >ś¶rČNJć•dŕTŮş + ÎĐz +$cŽqĺ‰w 5Î +ęyőMś,§1~můŔ ż0]' §ôË®T÷42áĂ/˘˘rłq\D™ÓÜŰű¦r„?—”»´;×]9m&$ÚLľ§Âµí·&Łő+É.ś’üóG,s€ů¸NĄňźZ1ßjčżuÁ“ĂIDŇIJ äf‡S’•V—‘şĹAÍWé#ÔJ,ńiyĐ;ú ”ŚiI+“s‘`x€Á9KĆ·ăLÄ Ň0ť3tűÜĚoiGűőjCjă&ß:a;°$üu”‚ݲŽĎ ćoz3» +»A%ÖUbđyrHn/VOÔť˘›ÜâdŃíH͒܆‚Ąw:+µËoÚô3§ňţqAĹ•hé˝j»+ż—ĺhMMÝúÁ®üq—uŕĺ-~tʶ€†čŕšÚÉţâú7<C0—;3«2ř_ř“šł r¬:T+­ůIĺ»’űÉŻW 4UÜm +đéVh*i™BJ‰8ŃáĂÖ›ĐXĘŹ•őŮçłÇú0€·o;ÉJ¬>§ťÁň›ŃXW’nÇ7u+ř kNK‡ť ąKd–1\­’C2Ls 3†KÍ‚öđĺŘ|ú˙ܶtLŤě@ŕe")_cžEóëŃň 3űî˘BŮ!AI¬‹ýdHT˙J!W;}7˝táÜG©L=ř{qŠýŠś/č¦Ů} +'ů-YĄÔn1)Nš¦¶pQ’óe¬hĎPoi;ĄŇ4aŻ@Lĺ©.ÖřxĹ€—o~’LFĂa€{ߥaÁďĐ°`HÁ˘!EB¤0ᆸ p·ąą±R‚¬ţˇ/Ql‹™FŔ˛ŕ#+eÁČČ’´ˇśľ4}aXNeäŕÇ‚ęë:Ź•C…•<ŻCVěť6ß_˝+A'›ý7ő»’#\ăµhÓz3†C´+VĽ ‰P2† †1ˇWdÖPÉVincáý‚‰»P¸yşIO‚z‹˝p)ŔJÉ÷cŔl,NN…Ię$Á…‚ŻőŽtűÂŘľ,ÂŹ«śîtYPŢ=Ět“-ß\őd[Óí$çJÚéeŇ ^ +ĆY™Ępl.Ŕ}ĆLPëA¦h $ńDh!…őŰäâ»Ý#ö{¶őK$7‡­âUm‘®V’íŰZ`ÖľÔBµrěň޸|ŠĺÁOÍţŻä§^m Ͻ䯙‹§őбđěź©p|řë›ăłňtĽöĐű±â ?×B›ŔͨŹU´Čę»ý‚:n• +Őű‘;JÉŢń»žJ‡Űő:&˛Ý—ź¬G×ۧBšÔdâŮT#íqÍ‚GČ#çŃŃ÷Q‹żń‘ĺćšjŹę§ÓÄűŃć_üŃźľű(Č F/p˙0=úÜG7úQxí<š%=śGŚňý_ÖŁZřĎ•|Ôß$¸Ź¦ťź}ÎŁů@(wV{BŹZ~Ś,đXđh3ç?ÚĽܱŐBh”Bç˙ő&ěçFţŁÇgťţŁőúu=jodđlţ{ÜůÉüËő6ZL’Ýçü]¶šâţâľýöS´đ[1VX~ÖÝ5 rĺhÓi˙¤ŁÚ@MĆ—gŐ= vÉ^tÜó‰<AQ#P7Ď0SŁw3}•Şíf€]üŔ}D¬—a:%ôN˘ţ°h0d˝F{^aHp’ůAU×TPdHBĘŹ>Ř{ŻŢh!î By]±Ó!u·Ü´łNŃßÓ:łNÔfWlťĺa .ýßR§Ą»ŇíîÓKÄ™Iţ4/ß…!™UŇÔć©yłÜ'?¨üv†éúă¦É>˝ĺGún_”‹Nj„$$-$ +jşůž9jů¸­tŘAYń(nľ\ŐJQ$WN uJ¬\×çU®ę§ků-FĂĹőü˙ÔęlV^¤ÎŘŹ|”°oVô±Rëë:'µ‘ź›¦0frÜÔ”ś~ł¶şF]źJ-¦’Ő¬źóL~}‡˝vB bŚnqJ˝č«ˇô¤Š„‘„ąm‚ÝÇ˙śŇÂ8eIQeÜ˙ÚŐÁŇÜSPZfUŢJ#Š 2i¤žőI]4çj +Ó•'§‚Ś·şuaYĽ28íś4h…á4~¬ęä–lňM3+.Źˇ»‡źsöą‘Ÿ‘ÁCňž“äůE:~ťŽ;ź{»b˙gÓAü NĹÜ +ľ7ŔC^Ż˝ű0cŚY ą˘˙‹-xtTct·‰|›uYđ‰bź›$Í襦y×ʼnOV,{Q!ÁŠAe*w'mÎR“şq"¤€Ş”Ű<G 깊—6ę1…– ˝}úgĺ‚Š•šMĆ×ß3 ©Ůëě†Řű{m· +qÁ‹OFm•ý*ö’öŹľ©b/ăîŰ*F)Úžëć8`çJiYîĐŞX¦2ţ°ő=Ç,@~ŢÚ»Rę„™;@Ě} +¦ëăA,dWŮSćź4ü< iÝ‚ƨw…1ÍüX÷[„Óż?­lđG§ËŇ@-D».á- ôBČĹĹî4ŰV¶Ä¦é“ĺM§TW kŔŠ}–6Ę'%ŻžbÝ€ÜW)Çxíáö+¬¨„Ŕ+fČ !ÁšÜµ‹¤ő!Cš}R!Ťěx3žÝ¬H÷TŘĐî©lÔ>Ĺ]Ó(KŔ#Ăë©rëP¦ŃßÓş›)–Ë)´ä-uáâÜ~™ÇÍg€_1Ě Č˝Ŕ©'É€ÝŐ‰+ +urC‚:&3(Šuš'ą# …®źšÜN0C‚ąě•ńbT!9zŕÜ•_®SN!$lď‹‚’™IHPǬ ňÜ ¬íĘ6yĺ&vŻÜ·6şrÍIVąsyWnÝA‚+ů±Hq‡y"”Óť ‘¤S6щǮX6XH„qYphh‹BČů „ løşTj®ueA’š!NÍüĚú0j[ٵĐN•›ý7yVa3+öT‚ž“ěctKšP{K.‚ÝÉAźf'Ś¦Ţ•»lËOV9ď…Ů-‹µČˇÂ +p8ăW‡â,g’!uYľŔ±ěč˙dËWź)Ň°whĂN?`‹‚íĆy–=[ľŽö†Ź¦c<¨ÇÍŹ•núť=… ťŰIkż¸±Ô +†÷ÔŕŚÉ‘¦[2ˇś@Bi*+gż¨O(ěůÍŇSB&÷énĄ^ôŐP<ś2â.|éIPoˇL§ôĹÂä‹VRKľë…Ő™näŐá°7Ţj$íŃďŕŞŰwŃUŃKxëĺn'‡—±Ňâä”ŰISat¸ÔăNÖŚň­ě±Ř9uY3Áv÷ť·Őv©÷ĺ÷nÄ YBa0cBśt´ňÚŘG +Šň´ôřŃ8 dˇhĘ82í¶Ű’Űi6âB:†ŔÖi5u04qí=ěRQ\ ™Łz©A¨ę§ …9Xď‚e +b¦»‹Č/ĺë,ŞTJřaXg’mVBżęu_Ĺ_Ů,b2łŚ_NQJ<\;ĽV0ďRĆß,YłűâŮI °ÇmĄŁZ@ä`sK.X6řŁÓÝŹł›EV íkT«`DĹ(š*N|źh@.6ÎÁ·dŤŹu‹yÁIňŻÜů2V´g!öeBŇ07>^1¬íZě%ś<ČxŻ(MCđ;I#Ä4tHxHh9ĄŻÓpôˇ`çµ R$tn1l‚jÓ×âÜx»šD<) çčP®Ží…“TŰbRś—†”µç{[aXz°|ž"qô'Ą“VđŐb%äřŹM_]Ŕśń6Š‹ĆčŔ`ŹWÚĎ, W›ř‡[ď6‡3c˙Ř/ż6Tl€š´Đľ§Ë-Ľ!{bťŇäJő°‚¦óz˝:†p6‹Ű=u q˛PĐŚyÁIűGŢŁˇÔâŚ;śÄOí˛Ťs~á {Ćř +5§Ôvě•ŚÓř_©Ůçu2ů_ W¤áECřĘĐ%ˇ­É_ĄaÁHqu̵Ô#v7^ĘńZpmá6€YJč.đb‚4'§B­ŃI0×—a¬lÔ;Š™Ă?`X XD–ît嬄=W,[ľąę}Ç] z™p‚—‚qÔó†fü®5äŤWBq"’óBŁďł—jâ`ÇV’eěCózĺZĂ‘č>ĂĄŔ](‚Ťś© ç>Ţ ¤|dĄ¬&˛2?¶Öô…y`‡*fĘô0X_×y`y0%“©ŚüaůÖ Č•t˛ŮŁ @Ĺx`~N7˘•Ç^»`ő°Ršér0÷~’±îDíü×| 3`RPjη0¸µ+ÁoźőIťCgÖ ëiRŘzV¤{DM“=c gVĹl ÓćĽNż+®AYű‡T„”/7d®_XvsîĹ%/ŹŠŤnäQ^¸ŇÜ9ńćN‹x!ć^×óť´4Úv©â¦Ýf”ˇNűhÂ’¬fz}ëXőĆéx…Đ°W™íer¦ÜéLč|»« 7p¸ľËę†kąXöÂĘž†;'ž;űYNÎz%ć¬Ď|üp®?0r»ámř ŕ”0L2¸Â¸}p‹ 4ř łćŹ®«Q€Ux:Ç—‚_)•Ć·ÚćçëcŚçR·67˛—˙Ě8&’´cbć‘“7¤9%í)1ŰoÝ›%kż˛sż §´2‰y¤ dě×B±âšYßh{ń )ÇěÜš +:pŠ‡;}ă }~„aÝ»”HEDCQÇVǤ…ýDëKÔ€úS' RtŐ#úR~}eőEóŚpžxPˇ9M+5<4`çý`ÄŞW ąęóZ‚Ů&gE*r·07m˛ć.<ĺ‰ňâć™Ě31 +˛o{p"š äßâęm$-ýĐC/ÇčD"§'űxřĽü"ď@8÷)A·âZ$Ő +=fnG ?:uY‘ę?8Uc˝h~*y‰iaB Ę"uY¬M×;Ś01§$QNwXť˘\ż$ ‹Ü#ććµ°ń¶i‰ĆŰe06´Ą§făM| #°1é§b޸'› +Ż˙=ą4 ě)Őµ˛­/:¬™Ćox3ÖY§Ruř2í2şiâŇ}óÜČnŘ×@¦>©äĘ%âŮ.$ř@b%„6őZ,TĆ]‰)”ČKiiÚ3â°’Wl…°µ’7>oąŮkťd¬ko3[S“›ŁBnăšg͡ď†Ě«Át]Ö qtZqĆŮ?"úYĽ–znuÓ{U7­˛öľnš·ŞśŐÍ»QmďĎw˛Ő‡,µŃęPA#J6ĎłÍ÷uÓ*ĚFÝôaǡ¬E}¨€Q7f®Bů7Üč®i=ŞŮîřÄskËýqŐ˝’'¶=óĽź=u Ş%,éAËá ía˘6L ůa ďhnŽ*„P-­Ŕáź6*) +‹uŔQu¦Ľ¨őŃw­AŤřâ‚ú>úh˘ě§SçÔęĂď¦f@Ë˝†02©Zßă[K@9]†Ü¸m+ňtťY\UŐ +χŐ2 +DYpVĂě1‚uňk Ő>Ř ·ÇW r}AßSžUn &Š… ^ť\ăĂ +gbŁZŠ¬Zjk˝ň/PR?N%]áYŠŮ\"Š±pŮ8;C$@´$÷†OĄ."~é +s¶¬ÄßČĐcî‰_»,×h§ĚÁ‰űg@iȰ׫TkČ㾲qFłŇé%aËNôÍ ß˘]ezűâCjë˛+QË[Oď.:ř˘C(^Ĺ©z!çÁž‡-ŽńGâ’‚‹‰QhôĆZß8ëÄ…y>"} éÉißwÜb^[{Č15%VR4Ő2ŐÓ‚`‘ÖcŻ$"ľ0C!j„Ä$M§ń-„¸0!ę Q=¬3ő©ř¦őčěAŕę4â’ĄĘŘ?ëzkt6eřXck(˙ý`c90“nkkCőŠÁĽt|^«˘¶ÁeZc3_ 8(h’jRp'ŘPr÷‹IĽ"!t´H;I_ź0 h˘ď¤¬qR'ަgň$ĚŹ6 Ň`#Dm v«¬sSCřŹ>Ąjň ¬ťý]bĎĺu´lođłîŻ öÄ÷6|Yť4ŔŚő¶6ŻT{sçĘŢĐĘßž#đ|a¤4®‚Sßţ:ÇžwżÎ±ĺů7°!~ťcíÝ/s¬·˙,Ç~ ˇjß'H˙*ÇŢą±ú%•őőĹαčM~p\uă®|ˇ~^ű~fĂŇAĄÎŘ˙ŤFoőý‰wÚľĽłbýËhôv—ż¨4űąÚ7gă#ôŽĎ‚¸¸~—Ř}·űűY< mÂ×^=;!Tő_ďëFV—ÇďřƆŐ'çlpTËŻPקßVKuwţÁMôĹ=¤/_Űđ}µT/„s8w»®†^·Ţ*@s©÷üËť?f7„Aô™É˘K0ÇC…`ŞÝš.áź ŐvQÇq´fHňËs:Šuif»Żś2ĺNgěč&gží°0ˇeč {áÜçzÄlw ^Ä{±Śp†'4„ć$•G"WńYo~˝±[žÖHŤ+zżËż. c(łH¦*,ţ ëd…Łóí®‚ěJ÷íCÖl{CţB^¬"“Ë”ĂP&vž™ýi™vNTčą5a“QÍĎŚo—Ö”˝ßHňÄ_3ć~5Á&ś$7ĚŔG [6 yb[Hńú@âŞĎk ţnŇtĘťpŁY6`A´ô*AkÓ©ąË8Žô9n–đŢ˝î|­˛Č‡Ţ¬ňáJĹŠÝ'ó’ÎǬ›CYű„lŚŤ;ů#ÄŹđnČ Šľ”+g"RѧX´XHű–Í\i‘$p˙^u3Uš˘x‘ÚLŕ®ĚĎ×Ç,š…,×g°Ë9fL­E z jFmqü˛ÎBQP»Ľ VJĽ ţ!LůęXLĹJ"ÄJťIćŰN%†0B»n`Ä ~ĹsÝ匿×Ţ|Ű٦ŠľűJĘ°f˝cBšč§rZ=’–/ëmwmR6*Eă˙Ń^Ą[©3Kô x‡ĂHČ‚ 2ÉŚ2EDEĂZ÷×}ö[ŐťIŹÓwýÎź¬$•TWď®Úµk>ćîóGĄ‹ÜsÜG€5“R° ďB×yş!ç‚1¤7\rchô%{Ńě…&‹1VÔ˛šeáîFµîî4çK Š6ěĎxŇ˙&jôJa.}뉾ziZgŽńLs‘ŕdSÎĘ|”ÔţčȬžâ'CŞ5‹bńéť!!8—xTŽĹ5͵‰bÉ[<5†±ôIňŁŻ¤Ą °ŇŢF,*…ŕŁhZTç°†8(,>&xµxJS¦˛éţč)”®rë}Ün%„ Şĺ±4¤Ü†eKçŇF“‚¦<>í Î)·«‚˛šÚśDŮRňĚ­ýN0ßuU‰Đ"ëUňÓĺéť–v3qŐ%z{žÁŹT–sŰ#ČĹ°Ŕ`-aăżOńť + l,ł‰Cą$ŇLćĚŁ-×dËwCˇńTŽjVŚ Ťľ»3"IĄ¨÷ôżiO\ŤëżČEnžç»‹ÝăâqőKđśxäÓŞŞvWwëŇn>żś˙Ç(¬g‡—ůĘř•ř%źvňŐj4öxX÷uK‘ů˝L.P°\Ě‚n]Cäd—µÔ/«ú^ÚĆÂË2ťHvů1Ý-q€‰–&yn˝ëm­wťüx±â#drJ–¤Ü+ąŹ{ֹ߆Ę.„OžĽ´Q‚xŃÔGźNž» v”ÂpC‡iJ#Š +gŻÂ7P‹| DG7×Äŕa86sýěCĆz‘ŘĹö×?ŔT\Ôg.:»¨+ňĹÜ‡Ń ^Nťsë{×rüůŠŔ\śČ˛ěm ýJE/ÓxÜŠRÝŘ ŚÝh‹– ÁĐ DC €Ó§ ,ă „lÄ“ôN-tŮŁY:éC “ɲ™Äref^ Ú ‹"Ö‘|‚”}źf˙Áë€ŕŐ÷×ÁďäA&Ń4ĚÄÎqç6•‘ä{ęZH˘‡q@x“Ę|żä,ę©$‰;žpúßĚĆ?\¨>ţ»1@˝Ľë"Á +?ŰF^ť’"ýămtň7N㳪ŽŤđOrZň ˙ƉŘw‘P…®*~µŤ›dĂqą~V©·]lňĘ»Űř&”ިŞÄÁŢW®ä,G~ľŢE¶®/Ëą-g~YzRť/˝QşóüfúaŽ@a–c5]r|cźşg•źćXčýYŽ)+îű¶‹/|™ ndŻsl“~rŞ°HÉď9€ű®‹rÍ÷uąľď€ś>şč˛ßćľ÷cKďC‰1xďśĚ/+ţł`•ň&ńłÓ@Uű9”¤ż|¶ŤŠXúgµńG G5ŐřjŁ’ik_Ä°KËŞ«#WtCę&].nÇĚĎzŔí‚ç­ŽüiźÄ°Q?NŞ71µ˙6ŠY &ţ(#fbJr t±ĺťČíâ(˙n‰Í– ˙9Ş˛D$jˇ´Ż`ÍŃJ\ôÎôB†źô ‡›r-?:y†şţČŠćŚŘWüd=Kë±0CčVĺ—±ŞľÔ`lM‰ő•=WNřbŻ_Á»)źn>“±¦Ŕňy t\• [çÄ c­•BÖť +ĚX2±â*ŃXŚnć¸M ävu sn4/Y?–äRQ«ÇÁmEá s(±•j{ĹÄf9·áظ!r.çĽŰTăgö?˘Ű0ŽÍmě6lň Ű ş ĐÜĂđ®†U\o»ě­őyCpúťmČ”„Ľ˘ČóBé3ąyZ“JĹÇVŘq<µŘ¶ú$qÂś6„úšĚ—J-ČţfđEťeŞ[Ët;ku‰[¸ř“~D›‡1sÇ4NÔ©żtŁq™ě ®rÉ\íÜł´ź6g÷µÂyŐŰgÚüńhůÜzźGgĚëK›d ‰Pă*Ą$ť’ţ5Ź­ZĘö—‹ÍŔĽ<Ćć´s<‡wMwĄ:ů«ŤălţńFVy0ŽXéu©»6^ČÄěTą €Zˇ•G^ą’­´żR±ŰŽśW€rş^i÷ď"öťN]O^ŽŕqhzśĚČÁeëߡbß©îÓצÚřŃŠgq:-,ĹŮr{¬Č˧¨µ—á.W´çSŽ9(kĄ đľ®ý6Ůî…ě‹\0ŠĽnëűH ˙Ś$gŃH»@PGp\±x§Úwšű»úBÇwş ÔľO«4í ň>ΕJĹz/n2•ńUć·‰#ĚP)H&§Ą w=ň¬Ĺěá/?›‘°´ŠżOYü «Ňıł1?şŮŠSé¬ĂT6ą„ř´‘ޢ”ćń‘#5„3$y„ËŕśWëR\Ç~‚ó'©Č^,8LĎ}-;‘˛ŠÉ8Tą(‚La‹EE–Rř“gĎ×Ýs.°Žą¨e{z»gzúňuĎM§őéwÂ&ůůq¶m?ýâoŰHŞĎ_ě^Ż;6ĺ“Ý«í˝§ĎßĎÎżqxöŐKµař§?|ůí_˙˘¸9üăŽpJ>O[‚ľČddí‰ '¸_<0ů¤‚çóů[6ł'˙úţ§wż_}ýѦôíźç˙üi˙‡ľ?¨ą˙§˝-ÎWâYž.>ɤ~ŽeŐĺkĹ1@XWŃK@ +SŃáËĎo öymřř-ÜôrżßűČJ đďéŠ+őďţć?Ď›g¸Ě ˘ÓŻVçß\ü{}xłĽ»ľX­›'OŔy{±ľ{Ďáôŕâňjµ8»ż¸m¨Ő??ţźJK6·6,sß73‘mi«] »śîîß®Ż–ë«›ŐŮí}»Ç¬ăW‹Ł‡í^«˛§}ÖÎ`Ť9…4~Új·! OÓîăsü‡ďżőş1] +Ćâü.¦łÂXkACŃ‹}Đ9kL5‹{,^‚ř¬-™öUű݉iĎyó7M4íQiŻ›J,ßqJčO?°1«†ďn B™żň˝"SvJńo˙Ă3ב§PÜV»űv}{µşlgűKÄâÍÍúŚE'ľSďŘ%í‰Űo;ź˝‡ÉXv”¬yĚqŢ[ĺxŁ_rŽ ŰĄče“u/lP@$|¨Ëžň°çŤ,-©ň˘.aZ $»g2$ś0‚ˇ źár>Îu¶Çç.:ă\†Qfn=ôťëńO=z¶tŃň¦”Ĺq%0'Ő [ßă‹ěť3â-Î3Ä»—ÎĆŘjk;›Jž„+YI8Ĺ5ŮśGlŔŃ.ŮXyě˛]Ů‹ ĹľĽá]Ž)!‰Âęë K.*»—9†ĽpĽw^8١Uϧz)rŚŔˇ@*•ś˝q•‚wřÍ9§Ś,3<.ő¤ěłŞQʉÔęXMh—sęiŮĺĄ.'qĄĆĎ Ľ±Ő'vbw„'A_ŹŠŮF+ĽĚ†Ádď’ +JrIă + tĄ3”%K‰ş„0Ż8ĂRž3šď&ú2â z§ !Ů㣔…íDduJ±¦ {N‚$Iă;¸Š3ŘtŮÂiś4©‹Ţb |ç%Ż7±ąL·çŔr‰Q +¦ct÷¨'”@Ňźś×ŁWŻ+A¤Ôs“ +óÄ>»k&”´Z®Ą‚ÂČň‰Éj!ň]Q)Ńńđ#%Ŕâ\*ŧEž"Z)Ŕ$e˙°Rzôś-M¤@’ëŕ8g|Ş™;¦/ÇĽqÎFą˝lɆ#LŹă]9óFÍăŇĄř +O%űvĽ¨7j +ëőŢŕLe-qěyŘĘ +Ȣy›ĆŔ˘4qIţćč˘g/<ˇ\·Ň=‡0mDrŢ|]›U{8 tÍWp4˛s“b ÜmÔ2®TbT%Rdi*&iÓč|Mgé<^lQ—¸Ťa”ăť(ićHNAŃüvŚY} c\çÇÇ~ĺ¦ůíF÷II¸©@@­›8÷8ŞęY˛’Ĺ\ű%kę ťřµ_$RŹ#\ĆK~؉”E1ą~ŠžË đON¬Ź>|)ÚQ‚ ˘:)y†tř2†’ÄÎÇéě†tć¤!O¤PNÔÍ ĆŘ”ąu124Y†hČ)O›;.ŕ’F˛Y ™´ăCüÄĄLÍ_p¬`.‡údѱvýĘ°?PÝA@ÝĹ >Ő˝ĎĘ1Á­ĘĚ.h—˛Y“vŇŘÂú^8 +Tôä=ŚŐĆ‘QĹÚ<©pŔťŚach)A;"Ň" +Ç›¤Z‰<úz‰±^Ëm¸‘˛Âĺă !¸‡¨˘ß="´|§3IňĽ¶oćđzaťRB”Á­¦ ¦§őh@ˇP’Ř…˝QýóźA„aşýě¨9jdz@Şkal€Ů&ŕmŔâ’5aç´>†_Q‚3‚#W+ÄZŤŠąŚŰi‹‹Ž™f!3zěćcŤŤn Ż”ěĎ´9µyŁ>ě–0,Z›p˝ éSĚź?ö4[ÍH>Ű_ݬZ€F’¨ü–—‘`0讦 1ŘŁâ5đ§&ľ1^_vś(ČBFˇ\U¸‘HŠ[Súí™-÷ +Őž%ŇďNţä•łř<éSJuÁsż©[s»˛=×)¨wLő’,৪˛ĐKq(DZë¦nŮ«riĺ‹´ŚÉ"Ý.fŞ*)&Ňj÷;\gŁŠŽš2PvW?Oü˙˙#Š\ś5Đżč.–ę&ôŻşŚĄz§őô/»ŤĄzljUżęşń¬ń>GâńÓ“Ó)ýFŮę!/ôbĽIĄÍCşĘ°%4~4”aÉÂşűŘ +4-ő‹{,^‚ř¬-pęUű݉iĎÁ>~ÓęË€0đĂ|<€{™YdP‘‚-ą•çżÓ(ŁůeâŃ`ťh ‘ăN̡ MX°‡0âcŤ•ů Ăkd:ĺÂĆî@$ŤL(0‹"žíět`FżÓ$I‘=‡“łQ°8 ŹVŽź%Qň˝ł©Yś¦xAŢ,ŕId™É 'Yř”9Ů%•.ĄÖ‚ŹĘs& ś—.Ż´Ă»P^˛D±.”⹇›:oI…ÄlÄâÇĽě‡,¸ bď"gHËďť Ëş´•|đ&#<6¬Îµđˇát—iעä5"ËŔă\Ąś±;9E–ç@Ť]€ř‰4ŞĘB¤ăx« ĄtŠly`j7˝ҧ†ş­Nś2öG™l4á!Ëß ůćYcÁ? ˙˛.ďîß®Ż–ë«›ŐŮí}»Ö Ź) q[íîŰőíŐ겝ě/—w×onÖg,şŐnCđ>jAť>>Ńůą€;^7@żl5±[ĐZÁŽóYĎĐXŚ¸™ˇ`ÉňHF•AĘ$Číâ˘4ÜÎDŹ3‹~ĺQŐĽĄ5ŇUś‹0‚>cŮń™_-YqT¶@RZya”¶ü—ů˛Y•ăH˘đô;ÔF YXÎĚĘßى^öĆŔ`Ěe¸Â`#]°0zű9çDdUu·F–˝2⪲˘3+˙"N|±zä3ć(U‚`pʬV*Ę!Ď»fµŞ2ËEt Ţ8î(ŕvC‹*JMˇ[´ŇbZĆĚë–AycöbŮ“›-ˇQQľ(=DU ++ĆFôŻă›*aiY3uĹ#ľXd)­i\‡Ű8Ë°©lˇĄzgJv$h8žË%ĎQ3" eµď"«¤âz*ĘFë::öźV-¸ŕ +Ô†pŕčŘšŠrń×l‘Ío´¦Đ@îݦαYZIsi©JµéÉÖZ´/Ť¨qÔYed»µJčPq´ ZĄZĘŤpž–Xn¬Ý•7ä1Ú79pŹvÝ ä‘«őŠ#e9ÉHŐ’MÁŮČIŕ‰L´a*ĺ쀛Śt/ŠÎŠ›ôŰnKWşŮ„ŁŘć‘×ÎUŕe_"ń¬ÇăFK5 m{B|4­PFą‘–[9p ĆŃ%{N‡^Ľzĺ 6tź·u>}ă)uye'NŢĽ+ vöXż"ŕł®ř†€5ă$ŕžĚ˛#p®J‰±Ý"0·ŤŔűÓ¶C¸Ć ‡v‹Ŕ8˝s¨®ąwâ)Mó˘ú~Ý\dň/˛ÂńidŽ+ú…›Ôkřmug_o;ú¶ęäk /Gąď×ŘËĽvC˝[ĘÝŇIs·îČ‹öńŻ€÷,wľâ]lú +w÷Đ)3t >7°Â-ě†őv!ww°‹;»]Üë5ěîJ16ĄŔa^Ă.|ív©÷W°{V¸]Xn`—é +v•}n`7ĺvŐŢa7ĺ »)`źŘ`|4dŮa7_ßu±ŞjĹŞEęy†ěeâ×ŕ@Ő›Su|öÜĎ\Âޡy«nwňw'‘Źu«Ł÷J{ŻÇă 1\PÎĘĺa˛[v<&Ť3ąB]ÔžÝpä“ý“‘e âNA5őťŇdř¨Ďě|Ôî;a?ęţy?M.ŹęůüĺÓoO βíţWA8›ú6–W_Z˛'–±´ Çă©28‡´nˇÄÎÎ’[ţÎ’] L[߬ńâćůMňŢÓ¦g9ńA˙ÄňÍęˇwŢ°š¦Ĺ˝Ř!Á-j¨ńö„"v«•s”µŮŤ¦ŽËWŐúnc°ŕÁ˙±ĘČçŰÓ6V¶lŠQl}o±ę;żß ˘O„Ä˙ăá˙/ż%Üü<“ŮüĚ©<{ŘÎÍ?;v±ł±Ö˙?LíçĂÖçNh[/»ţŚż×ÚµŽł4âďDŇATŰ÷e.\-­fkůĎ\BÜf}} ťz ť8gú—oŃř¦?ćËwËŹ?…ĺ Ě?|Ż‹}wBZ¦R0;«´ ŰóźPáŕn&ÄhÇ +ÁÁ‚gŐ€|8:˛7 ke!Ó—âX$z—ŢŁą˛šCď–Ră{Ră‹b0ôF¦ŞŐ«°Ŕęb˛’8 ĘBť ´Ň7 +dµY×+qÉŐmrUFí”ÉzÓđxĘŕAĐčˇOx‘›Ę] W…~BĺkcbĄćZňPą” ôFx­(®‚v°$bn÷M3s”äP3Iß"N´aX««TÉp0¬j%úĄÓ?(Ó‹4Ű.Ů|“`[Ă8ŠăYí´ş r‚ +5p‰”Eß‹5…Őą‰é›Űb<Ş˘=XRľXYG™řś&›ářČ…¸zűjĚÜ(ňV !yu"¬J’ÎQ ?äý‡Č\&:sóeVŤ2Ůw˘0ŘĆű<źĐęŁYY—‘±nµ4‡¬‚›Ě‡=‹źpë@ö¸pë“.§©F˘Í=:0Ü»•Ąf +ĽŰxŠYnߢqGćö#ĐíiHÚ%˘Ą´bç4¨ + +ÂÚ%”ęŔv°˘ă« "-wŃ÷8a©2ľ;­žń’ötÜůáÜ:„C± ‹Áx9Ë53ŕkÉŮ‹=Mó.÷E˙Ç]Űž+‰Ŕň0|˙đĺ„K’×mÓŇçšŘ–7…}ĺ]éťž¸TËřľß=!Jcé¬5¨Ü j]¬#˝¤ćc«ţt”ž ŚŘ)q|kĹ`Ç"ď…(ß;Ąá‘ÝŁ°¦: ôc´­´R›WFsµ¸Ě7pľ>;ă†C0äÎú¬­(ˇ„š¨ľňŞ>ýŃq—ŢKŐ@ĘÁ®˛ëŔ +{ö ô`Ą(7‚mč*•R˘ę7hÍşÜlĚÚ(ÁX7±4€AĚÂÉtzZ([ÔFśĐŢ+zi¶Đhö¦¦µ°ˇa‘ÄR ¦u`Ő´H`@¶é2”śm”\͆Y¶‚-¬5Ş—â”űŚ”-í-ś&kJ3{Ú㨬o+]ŮwbVjŁ­Ça˝Ö4řm_rÁX˝´ BąĚĺá⯸‡›>Ü:E –R[–% +8,mĹ}ÚTkd [ĹĆĹ•‡=¨U몍 n©“â0h^U'Ż`Y ¬ŁšŁyĺZ]U§…7ëJ~čµZˇI‹R{ PÚĚf4ËčĚe›·Ĺ+…N`ĺöyřWÂnđ¬±Űö¬¨‹J(óőńÔ±˘˛–ÝÔá2ĘĘŘ|tix(303ŕčŐóśâ ClÔ}ŁEčy+G?śtóM2ĂÖńvŞgIĚžG‰:3@łťŢś™[Î:3 µ˝W~J5KŞôkśYë5j#ŞCĎ'„rŁÝŁŠUü”VzŐXŻĎÇ_Ď:źDĎź&śŹG›çvĄő¨łWóұC®FRŘíR ‡ĹwÖĐý—ąľć•ęľ‰ć-7ĹaătÂąâ –[1p #éV[/†ľ»Qqs_ćMťOßŘíĹĺ•]Zíşľ-ÂM”d«Ô‚²cí¦gÝ°1i”jNcŇęQN‹ ´ŠJ›Fe§ŇjXşPÉ K[şŰbÚ¶Hż“is2Ut M›Ł)ÇgÓjpĘŔ16ĹFwéćŽ ęF§xßž6ÇSś¬áis<…_dÇÓćxJějŽ§Ţví #ód’N¦ú9\¶-¨ikÚšł×·©_Â,Ă,ÎŮ>âĺ[4~…éÂňÝňăOayóßC„«*[° 1Y5®ZV÷ęçCSż?aŢŻ_ľ˙ýŐ/Ź,l˙űţăňožC˙r,cý×ňő~˙ËÓ˙(­{„a +ŔWéCÝ´I*&zn€:0!¸?ďĄÔoc¨”Xq˙”Řß˝;,Ëe]ߏëóuăŇcwÂÂ3®­*׳ôgQő¤3đí{í „üŻ3äľbKóŽpxÂ!ŕ ÇŚ,„C@‡#ł˘FÇMę‡<Ô&!7¦'J“'ó!śM©Φˇ!«ÇŘg! ă,DqRBČYMrßIíeZZAm+7qšł„s|TĎ1Ň@glzpiŢ‘Ž3o: ł Ž?ęlś…uđ–s˛đ;+ě> ŁćĐ endstream endobj 5 0 obj <> endobj 29 0 obj <> endobj 51 0 obj <> endobj 73 0 obj <> endobj 95 0 obj <> endobj 117 0 obj <> endobj 140 0 obj <> endobj 148 0 obj [/View/Design] endobj 149 0 obj <>>> endobj 125 0 obj [/View/Design] endobj 126 0 obj <>>> endobj 103 0 obj [/View/Design] endobj 104 0 obj <>>> endobj 81 0 obj [/View/Design] endobj 82 0 obj <>>> endobj 59 0 obj [/View/Design] endobj 60 0 obj <>>> endobj 37 0 obj [/View/Design] endobj 38 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 164 0 obj [163 0 R] endobj 185 0 obj <> endobj xref 0 186 0000000004 65535 f +0000000016 00000 n +0000000250 00000 n +0000043273 00000 n +0000000006 00000 f +0000179331 00000 n +0000000008 00000 f +0000043324 00000 n +0000000009 00000 f +0000000010 00000 f +0000000011 00000 f +0000000012 00000 f +0000000013 00000 f +0000000016 00000 f +0000180537 00000 n +0000180568 00000 n +0000000017 00000 f +0000000018 00000 f +0000000019 00000 f +0000000020 00000 f +0000000021 00000 f +0000000022 00000 f +0000000023 00000 f +0000000024 00000 f +0000000025 00000 f +0000000026 00000 f +0000000027 00000 f +0000000028 00000 f +0000000030 00000 f +0000179401 00000 n +0000000031 00000 f +0000000032 00000 f +0000000033 00000 f +0000000034 00000 f +0000000035 00000 f +0000000036 00000 f +0000000039 00000 f +0000180421 00000 n +0000180452 00000 n +0000000040 00000 f +0000000041 00000 f +0000000042 00000 f +0000000043 00000 f +0000000044 00000 f +0000000045 00000 f +0000000046 00000 f +0000000047 00000 f +0000000048 00000 f +0000000049 00000 f +0000000050 00000 f +0000000052 00000 f +0000179472 00000 n +0000000053 00000 f +0000000054 00000 f +0000000055 00000 f +0000000056 00000 f +0000000057 00000 f +0000000058 00000 f +0000000061 00000 f +0000180305 00000 n +0000180336 00000 n +0000000062 00000 f +0000000063 00000 f +0000000064 00000 f +0000000065 00000 f +0000000066 00000 f +0000000067 00000 f +0000000068 00000 f +0000000069 00000 f +0000000070 00000 f +0000000071 00000 f +0000000072 00000 f +0000000074 00000 f +0000179543 00000 n +0000000075 00000 f +0000000076 00000 f +0000000077 00000 f +0000000078 00000 f +0000000079 00000 f +0000000080 00000 f +0000000083 00000 f +0000180189 00000 n +0000180220 00000 n +0000000084 00000 f +0000000085 00000 f +0000000086 00000 f +0000000087 00000 f +0000000088 00000 f +0000000089 00000 f +0000000090 00000 f +0000000091 00000 f +0000000092 00000 f +0000000093 00000 f +0000000094 00000 f +0000000096 00000 f +0000179614 00000 n +0000000097 00000 f +0000000098 00000 f +0000000099 00000 f +0000000100 00000 f +0000000101 00000 f +0000000102 00000 f +0000000105 00000 f +0000180071 00000 n +0000180103 00000 n +0000000106 00000 f +0000000107 00000 f +0000000108 00000 f +0000000109 00000 f +0000000110 00000 f +0000000111 00000 f +0000000112 00000 f +0000000113 00000 f +0000000114 00000 f +0000000115 00000 f +0000000116 00000 f +0000000118 00000 f +0000179687 00000 n +0000000119 00000 f +0000000120 00000 f +0000000121 00000 f +0000000122 00000 f +0000000123 00000 f +0000000124 00000 f +0000000127 00000 f +0000179953 00000 n +0000179985 00000 n +0000000128 00000 f +0000000129 00000 f +0000000130 00000 f +0000000131 00000 f +0000000132 00000 f +0000000133 00000 f +0000000134 00000 f +0000000135 00000 f +0000000136 00000 f +0000000137 00000 f +0000000138 00000 f +0000000139 00000 f +0000000000 00000 f +0000179761 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000179835 00000 n +0000179867 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000044989 00000 n +0000180653 00000 n +0000043646 00000 n +0000045295 00000 n +0000045181 00000 n +0000044253 00000 n +0000044425 00000 n +0000044475 00000 n +0000045063 00000 n +0000045095 00000 n +0000045371 00000 n +0000045743 00000 n +0000046721 00000 n +0000052837 00000 n +0000053300 00000 n +0000071520 00000 n +0000098254 00000 n +0000121507 00000 n +0000129082 00000 n +0000132781 00000 n +0000145416 00000 n +0000162249 00000 n +0000180680 00000 n +trailer <]>> startxref 180863 %%EOF \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js b/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js new file mode 100644 index 000000000..32535fddf --- /dev/null +++ b/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js @@ -0,0 +1,8 @@ +/*! + * zeroclipboard + * The Zero Clipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie, and a JavaScript interface. + * Copyright 2012 Jon Rohan, James M. Greene, . + * Released under the MIT license + * http://jonrohan.github.com/ZeroClipboard/ + * v1.1.7 + */(function(){"use strict";var a=function(a,b){var c=a.style[b];a.currentStyle?c=a.currentStyle[b]:window.getComputedStyle&&(c=document.defaultView.getComputedStyle(a,null).getPropertyValue(b));if(c=="auto"&&b=="cursor"){var d=["a"];for(var e=0;e=0?"&":"?")+"nocache="+(new Date).getTime()},i=function(a){var b=[];return a.trustedDomains&&(typeof a.trustedDomains=="string"?b.push("trustedDomain="+a.trustedDomains):b.push("trustedDomain="+a.trustedDomains.join(","))),b.join("&")},j=function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c ';b=document.createElement("div"),b.id="global-zeroclipboard-html-bridge",b.setAttribute("class","global-zeroclipboard-container"),b.setAttribute("data-clipboard-ready",!1),b.style.position="absolute",b.style.left="-9999px",b.style.top="-9999px",b.style.width="15px",b.style.height="15px",b.style.zIndex="9999",b.innerHTML=c,document.body.appendChild(b)}a.htmlBridge=b,a.flashBridge=document["global-zeroclipboard-flash-bridge"]||b.children[0].lastElementChild};l.prototype.resetBridge=function(){this.htmlBridge.style.left="-9999px",this.htmlBridge.style.top="-9999px",this.htmlBridge.removeAttribute("title"),this.htmlBridge.removeAttribute("data-clipboard-text"),f(m,this.options.activeClass),m=null,this.options.text=null},l.prototype.ready=function(){var a=this.htmlBridge.getAttribute("data-clipboard-ready");return a==="true"||a===!0},l.prototype.reposition=function(){if(!m)return!1;var a=g(m);this.htmlBridge.style.top=a.top+"px",this.htmlBridge.style.left=a.left+"px",this.htmlBridge.style.width=a.width+"px",this.htmlBridge.style.height=a.height+"px",this.htmlBridge.style.zIndex=a.zIndex+1,this.setSize(a.width,a.height)},l.dispatch=function(a,b){l.prototype._singleton.receiveEvent(a,b)},l.prototype.on=function(a,b){var c=a.toString().split(/\s/g);for(var d=0;d=b))this.iframe=h(' + +
  • + +
  • + +
  • + +
  • + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Print this page to PDF for the complete set of vectors. Or to use on the desktop, install FontAwesome.otf and copy + and paste the icons (not the unicode) directly into your designs. +

    + +
    +
    +
    + +
    +
    +
    + + + + +
    + +
    + + icon-glass + (&#xf000;) +
    + +
    + + icon-music + (&#xf001;) +
    + +
    + + icon-search + (&#xf002;) +
    + +
    + + icon-envelope-alt + (&#xf003;) +
    + +
    + + icon-heart + (&#xf004;) +
    + +
    + + icon-star + (&#xf005;) +
    + +
    + + icon-star-empty + (&#xf006;) +
    + +
    + + icon-user + (&#xf007;) +
    + +
    + + icon-film + (&#xf008;) +
    + +
    + + icon-th-large + (&#xf009;) +
    + +
    + + icon-th + (&#xf00a;) +
    + +
    + + icon-th-list + (&#xf00b;) +
    + +
    + + icon-ok + (&#xf00c;) +
    + +
    + + icon-remove + (&#xf00d;) +
    + +
    + + icon-zoom-in + (&#xf00e;) +
    + +
    + + icon-zoom-out + (&#xf010;) +
    + +
    + + icon-off + (&#xf011;) +
    + +
    + + icon-signal + (&#xf012;) +
    + +
    + + icon-cog + (&#xf013;) +
    + +
    + + icon-trash + (&#xf014;) +
    + +
    + + icon-home + (&#xf015;) +
    + +
    + + icon-file-alt + (&#xf016;) +
    + +
    + + icon-time + (&#xf017;) +
    + +
    + + icon-road + (&#xf018;) +
    + +
    + + icon-download-alt + (&#xf019;) +
    + +
    + + icon-download + (&#xf01a;) +
    + +
    + + icon-upload + (&#xf01b;) +
    + +
    + + icon-inbox + (&#xf01c;) +
    + +
    + + icon-play-circle + (&#xf01d;) +
    + +
    + + icon-repeat + (&#xf01e;) +
    + +
    + + icon-refresh + (&#xf021;) +
    + +
    + + icon-list-alt + (&#xf022;) +
    + +
    + + icon-lock + (&#xf023;) +
    + +
    + + icon-flag + (&#xf024;) +
    + +
    + + icon-headphones + (&#xf025;) +
    + +
    + + icon-volume-off + (&#xf026;) +
    + +
    + + icon-volume-down + (&#xf027;) +
    + +
    + + icon-volume-up + (&#xf028;) +
    + +
    + + icon-qrcode + (&#xf029;) +
    + +
    + + icon-barcode + (&#xf02a;) +
    + +
    + + icon-tag + (&#xf02b;) +
    + +
    + + icon-tags + (&#xf02c;) +
    + +
    + + icon-book + (&#xf02d;) +
    + +
    + + icon-bookmark + (&#xf02e;) +
    + +
    + + icon-print + (&#xf02f;) +
    + +
    + + icon-camera + (&#xf030;) +
    + +
    + + icon-font + (&#xf031;) +
    + +
    + + icon-bold + (&#xf032;) +
    + +
    + + icon-italic + (&#xf033;) +
    + +
    + + icon-text-height + (&#xf034;) +
    + +
    + + icon-text-width + (&#xf035;) +
    + +
    + + icon-align-left + (&#xf036;) +
    + +
    + + icon-align-center + (&#xf037;) +
    + +
    + + icon-align-right + (&#xf038;) +
    + +
    + + icon-align-justify + (&#xf039;) +
    + +
    + + icon-list + (&#xf03a;) +
    + +
    + + icon-indent-left + (&#xf03b;) +
    + +
    + + icon-indent-right + (&#xf03c;) +
    + +
    + + icon-facetime-video + (&#xf03d;) +
    + +
    + + icon-picture + (&#xf03e;) +
    + +
    + + icon-pencil + (&#xf040;) +
    + +
    + + icon-map-marker + (&#xf041;) +
    + +
    + + icon-adjust + (&#xf042;) +
    + +
    + + icon-tint + (&#xf043;) +
    + +
    + + icon-edit + (&#xf044;) +
    + +
    + + icon-share + (&#xf045;) +
    + +
    + + icon-check + (&#xf046;) +
    + +
    + + icon-move + (&#xf047;) +
    + +
    + + icon-step-backward + (&#xf048;) +
    + +
    + + icon-fast-backward + (&#xf049;) +
    + +
    + + icon-backward + (&#xf04a;) +
    + +
    + + icon-play + (&#xf04b;) +
    + +
    + + icon-pause + (&#xf04c;) +
    + +
    + + icon-stop + (&#xf04d;) +
    + +
    + + icon-forward + (&#xf04e;) +
    + +
    + + icon-fast-forward + (&#xf050;) +
    + +
    + + icon-step-forward + (&#xf051;) +
    + +
    + + icon-eject + (&#xf052;) +
    + +
    + + icon-chevron-left + (&#xf053;) +
    + +
    + + icon-chevron-right + (&#xf054;) +
    + +
    + + icon-plus-sign + (&#xf055;) +
    + +
    + + icon-minus-sign + (&#xf056;) +
    + +
    + + icon-remove-sign + (&#xf057;) +
    + +
    + + icon-ok-sign + (&#xf058;) +
    + +
    + + icon-question-sign + (&#xf059;) +
    + +
    + + icon-info-sign + (&#xf05a;) +
    + +
    + + icon-screenshot + (&#xf05b;) +
    + +
    + + icon-remove-circle + (&#xf05c;) +
    + +
    + + icon-ok-circle + (&#xf05d;) +
    + +
    + + icon-ban-circle + (&#xf05e;) +
    + +
    + + icon-arrow-left + (&#xf060;) +
    + +
    + + icon-arrow-right + (&#xf061;) +
    + +
    + + icon-arrow-up + (&#xf062;) +
    + +
    + + icon-arrow-down + (&#xf063;) +
    + +
    + + icon-share-alt + (&#xf064;) +
    + +
    + + icon-resize-full + (&#xf065;) +
    + +
    + + icon-resize-small + (&#xf066;) +
    + +
    + + icon-plus + (&#xf067;) +
    + +
    + + icon-minus + (&#xf068;) +
    + +
    + + icon-asterisk + (&#xf069;) +
    + +
    + + icon-exclamation-sign + (&#xf06a;) +
    + +
    + + icon-gift + (&#xf06b;) +
    + +
    + + icon-leaf + (&#xf06c;) +
    + +
    + + icon-fire + (&#xf06d;) +
    + +
    + + icon-eye-open + (&#xf06e;) +
    + +
    + + icon-eye-close + (&#xf070;) +
    + +
    + + icon-warning-sign + (&#xf071;) +
    + +
    + + icon-plane + (&#xf072;) +
    + +
    + + icon-calendar + (&#xf073;) +
    + +
    + + icon-random + (&#xf074;) +
    + +
    + + icon-comment + (&#xf075;) +
    + +
    + + icon-magnet + (&#xf076;) +
    + +
    + + icon-chevron-up + (&#xf077;) +
    + +
    + + icon-chevron-down + (&#xf078;) +
    + +
    + + icon-retweet + (&#xf079;) +
    + +
    + + icon-shopping-cart + (&#xf07a;) +
    + +
    + + icon-folder-close + (&#xf07b;) +
    + +
    + + icon-folder-open + (&#xf07c;) +
    + +
    + + icon-resize-vertical + (&#xf07d;) +
    + +
    + + icon-resize-horizontal + (&#xf07e;) +
    + +
    + + icon-bar-chart + (&#xf080;) +
    + +
    + + icon-twitter-sign + (&#xf081;) +
    + +
    + + icon-facebook-sign + (&#xf082;) +
    + +
    + + icon-camera-retro + (&#xf083;) +
    + +
    + + icon-key + (&#xf084;) +
    + +
    + + icon-cogs + (&#xf085;) +
    + +
    + + icon-comments + (&#xf086;) +
    + +
    + + icon-thumbs-up-alt + (&#xf087;) +
    + +
    + + icon-thumbs-down-alt + (&#xf088;) +
    + +
    + + icon-star-half + (&#xf089;) +
    + +
    + + icon-heart-empty + (&#xf08a;) +
    + +
    + + icon-signout + (&#xf08b;) +
    + +
    + + icon-linkedin-sign + (&#xf08c;) +
    + +
    + + icon-pushpin + (&#xf08d;) +
    + +
    + + icon-external-link + (&#xf08e;) +
    + +
    + + icon-signin + (&#xf090;) +
    + +
    + + icon-trophy + (&#xf091;) +
    + +
    + + icon-github-sign + (&#xf092;) +
    + +
    + + icon-upload-alt + (&#xf093;) +
    + +
    + + icon-lemon + (&#xf094;) +
    + +
    + + icon-phone + (&#xf095;) +
    + +
    + + icon-check-empty + (&#xf096;) +
    + +
    + + icon-bookmark-empty + (&#xf097;) +
    + +
    + + icon-phone-sign + (&#xf098;) +
    + +
    + + icon-twitter + (&#xf099;) +
    + +
    + + icon-facebook + (&#xf09a;) +
    + +
    + + icon-github + (&#xf09b;) +
    + +
    + + icon-unlock + (&#xf09c;) +
    + +
    + + icon-credit-card + (&#xf09d;) +
    + +
    + + icon-rss + (&#xf09e;) +
    + +
    + + icon-hdd + (&#xf0a0;) +
    + +
    + + icon-bullhorn + (&#xf0a1;) +
    + +
    + + icon-bell + (&#xf0a2;) +
    + +
    + + icon-certificate + (&#xf0a3;) +
    + +
    + + icon-hand-right + (&#xf0a4;) +
    + +
    + + icon-hand-left + (&#xf0a5;) +
    + +
    + + icon-hand-up + (&#xf0a6;) +
    + +
    + + icon-hand-down + (&#xf0a7;) +
    + +
    + + icon-circle-arrow-left + (&#xf0a8;) +
    + +
    + + icon-circle-arrow-right + (&#xf0a9;) +
    + +
    + + icon-circle-arrow-up + (&#xf0aa;) +
    + +
    + + icon-circle-arrow-down + (&#xf0ab;) +
    + +
    + + icon-globe + (&#xf0ac;) +
    + +
    + + icon-wrench + (&#xf0ad;) +
    + +
    + + icon-tasks + (&#xf0ae;) +
    + +
    + + icon-filter + (&#xf0b0;) +
    + +
    + + icon-briefcase + (&#xf0b1;) +
    + +
    + + icon-fullscreen + (&#xf0b2;) +
    + +
    + + icon-group + (&#xf0c0;) +
    + +
    + + icon-link + (&#xf0c1;) +
    + +
    + + icon-cloud + (&#xf0c2;) +
    + +
    + + icon-beaker + (&#xf0c3;) +
    + +
    + + icon-cut + (&#xf0c4;) +
    + +
    + + icon-copy + (&#xf0c5;) +
    + +
    + + icon-paper-clip + (&#xf0c6;) +
    + +
    + + icon-save + (&#xf0c7;) +
    + +
    + + icon-sign-blank + (&#xf0c8;) +
    + +
    + + icon-reorder + (&#xf0c9;) +
    + +
    + + icon-list-ul + (&#xf0ca;) +
    + +
    + + icon-list-ol + (&#xf0cb;) +
    + +
    + + icon-strikethrough + (&#xf0cc;) +
    + +
    + + icon-underline + (&#xf0cd;) +
    + +
    + + icon-table + (&#xf0ce;) +
    + +
    + + icon-magic + (&#xf0d0;) +
    + +
    + + icon-truck + (&#xf0d1;) +
    + +
    + + icon-pinterest + (&#xf0d2;) +
    + +
    + + icon-pinterest-sign + (&#xf0d3;) +
    + +
    + + icon-google-plus-sign + (&#xf0d4;) +
    + +
    + + icon-google-plus + (&#xf0d5;) +
    + +
    + + icon-money + (&#xf0d6;) +
    + +
    + + icon-caret-down + (&#xf0d7;) +
    + +
    + + icon-caret-up + (&#xf0d8;) +
    + +
    + + icon-caret-left + (&#xf0d9;) +
    + +
    + + icon-caret-right + (&#xf0da;) +
    + +
    + + icon-columns + (&#xf0db;) +
    + +
    + + icon-sort + (&#xf0dc;) +
    + +
    + + icon-sort-down + (&#xf0dd;) +
    + +
    + + icon-sort-up + (&#xf0de;) +
    + +
    + + icon-envelope + (&#xf0e0;) +
    + +
    + + icon-linkedin + (&#xf0e1;) +
    + +
    + + icon-undo + (&#xf0e2;) +
    + +
    + + icon-legal + (&#xf0e3;) +
    + +
    + + icon-dashboard + (&#xf0e4;) +
    + +
    + + icon-comment-alt + (&#xf0e5;) +
    + +
    + + icon-comments-alt + (&#xf0e6;) +
    + +
    + + icon-bolt + (&#xf0e7;) +
    + +
    + + icon-sitemap + (&#xf0e8;) +
    + +
    + + icon-umbrella + (&#xf0e9;) +
    + +
    + + icon-paste + (&#xf0ea;) +
    + +
    + + icon-lightbulb + (&#xf0eb;) +
    + +
    + + icon-exchange + (&#xf0ec;) +
    + +
    + + icon-cloud-download + (&#xf0ed;) +
    + +
    + + icon-cloud-upload + (&#xf0ee;) +
    + +
    + + icon-user-md + (&#xf0f0;) +
    + +
    + + icon-stethoscope + (&#xf0f1;) +
    + +
    + + icon-suitcase + (&#xf0f2;) +
    + +
    + + icon-bell-alt + (&#xf0f3;) +
    + +
    + + icon-coffee + (&#xf0f4;) +
    + +
    + + icon-food + (&#xf0f5;) +
    + +
    + + icon-file-text-alt + (&#xf0f6;) +
    + +
    + + icon-building + (&#xf0f7;) +
    + +
    + + icon-hospital + (&#xf0f8;) +
    + +
    + + icon-ambulance + (&#xf0f9;) +
    + +
    + + icon-medkit + (&#xf0fa;) +
    + +
    + + icon-fighter-jet + (&#xf0fb;) +
    + +
    + + icon-beer + (&#xf0fc;) +
    + +
    + + icon-h-sign + (&#xf0fd;) +
    + +
    + + icon-plus-sign-alt + (&#xf0fe;) +
    + +
    + + icon-double-angle-left + (&#xf100;) +
    + +
    + + icon-double-angle-right + (&#xf101;) +
    + +
    + + icon-double-angle-up + (&#xf102;) +
    + +
    + + icon-double-angle-down + (&#xf103;) +
    + +
    + + icon-angle-left + (&#xf104;) +
    + +
    + + icon-angle-right + (&#xf105;) +
    + +
    + + icon-angle-up + (&#xf106;) +
    + +
    + + icon-angle-down + (&#xf107;) +
    + +
    + + icon-desktop + (&#xf108;) +
    + +
    + + icon-laptop + (&#xf109;) +
    + +
    + + icon-tablet + (&#xf10a;) +
    + +
    + + icon-mobile-phone + (&#xf10b;) +
    + +
    + + icon-circle-blank + (&#xf10c;) +
    + +
    + + icon-quote-left + (&#xf10d;) +
    + +
    + + icon-quote-right + (&#xf10e;) +
    + +
    + + icon-spinner + (&#xf110;) +
    + +
    + + icon-circle + (&#xf111;) +
    + +
    + + icon-reply + (&#xf112;) +
    + +
    + + icon-github-alt + (&#xf113;) +
    + +
    + + icon-folder-close-alt + (&#xf114;) +
    + +
    + + icon-folder-open-alt + (&#xf115;) +
    + +
    + + icon-expand-alt + (&#xf116;) +
    + +
    + + icon-collapse-alt + (&#xf117;) +
    + +
    + + icon-smile + (&#xf118;) +
    + +
    + + icon-frown + (&#xf119;) +
    + +
    + + icon-meh + (&#xf11a;) +
    + +
    + + icon-gamepad + (&#xf11b;) +
    + +
    + + icon-keyboard + (&#xf11c;) +
    + +
    + + icon-flag-alt + (&#xf11d;) +
    + +
    + + icon-flag-checkered + (&#xf11e;) +
    + +
    + + icon-terminal + (&#xf120;) +
    + +
    + + icon-code + (&#xf121;) +
    + +
    + + icon-reply-all + (&#xf122;) +
    + +
    + + icon-mail-reply-all + (&#xf122;) +
    + +
    + + icon-star-half-empty + (&#xf123;) +
    + +
    + + icon-location-arrow + (&#xf124;) +
    + +
    + + icon-crop + (&#xf125;) +
    + +
    + + icon-code-fork + (&#xf126;) +
    + +
    + + icon-unlink + (&#xf127;) +
    + +
    + + icon-question + (&#xf128;) +
    + +
    + + icon-info + (&#xf129;) +
    + +
    + + icon-exclamation + (&#xf12a;) +
    + +
    + + icon-superscript + (&#xf12b;) +
    + +
    + + icon-subscript + (&#xf12c;) +
    + +
    + + icon-eraser + (&#xf12d;) +
    + +
    + + icon-puzzle-piece + (&#xf12e;) +
    + +
    + + icon-microphone + (&#xf130;) +
    + +
    + + icon-microphone-off + (&#xf131;) +
    + +
    + + icon-shield + (&#xf132;) +
    + +
    + + icon-calendar-empty + (&#xf133;) +
    + +
    + + icon-fire-extinguisher + (&#xf134;) +
    + +
    + + icon-rocket + (&#xf135;) +
    + +
    + + icon-maxcdn + (&#xf136;) +
    + +
    + + icon-chevron-sign-left + (&#xf137;) +
    + +
    + + icon-chevron-sign-right + (&#xf138;) +
    + +
    + + icon-chevron-sign-up + (&#xf139;) +
    + +
    + + icon-chevron-sign-down + (&#xf13a;) +
    + +
    + + icon-html5 + (&#xf13b;) +
    + +
    + + icon-css3 + (&#xf13c;) +
    + +
    + + icon-anchor + (&#xf13d;) +
    + +
    + + icon-unlock-alt + (&#xf13e;) +
    + +
    + + icon-bullseye + (&#xf140;) +
    + +
    + + icon-ellipsis-horizontal + (&#xf141;) +
    + +
    + + icon-ellipsis-vertical + (&#xf142;) +
    + +
    + + icon-rss-sign + (&#xf143;) +
    + +
    + + icon-play-sign + (&#xf144;) +
    + +
    + + icon-ticket + (&#xf145;) +
    + +
    + + icon-minus-sign-alt + (&#xf146;) +
    + +
    + + icon-check-minus + (&#xf147;) +
    + +
    + + icon-level-up + (&#xf148;) +
    + +
    + + icon-level-down + (&#xf149;) +
    + +
    + + icon-check-sign + (&#xf14a;) +
    + +
    + + icon-edit-sign + (&#xf14b;) +
    + +
    + + icon-external-link-sign + (&#xf14c;) +
    + +
    + + icon-share-sign + (&#xf14d;) +
    + +
    + + icon-compass + (&#xf14e;) +
    + +
    + + icon-collapse + (&#xf150;) +
    + +
    + + icon-collapse-top + (&#xf151;) +
    + +
    + + icon-expand + (&#xf152;) +
    + +
    + + icon-eur + (&#xf153;) +
    + +
    + + icon-gbp + (&#xf154;) +
    + +
    + + icon-usd + (&#xf155;) +
    + +
    + + icon-inr + (&#xf156;) +
    + +
    + + icon-jpy + (&#xf157;) +
    + +
    + + icon-cny + (&#xf158;) +
    + +
    + + icon-krw + (&#xf159;) +
    + +
    + + icon-btc + (&#xf15a;) +
    + +
    + + icon-file + (&#xf15b;) +
    + +
    + + icon-file-text + (&#xf15c;) +
    + +
    + + icon-sort-by-alphabet + (&#xf15d;) +
    + +
    + + icon-sort-by-alphabet-alt + (&#xf15e;) +
    + +
    + + icon-sort-by-attributes + (&#xf160;) +
    + +
    + + icon-sort-by-attributes-alt + (&#xf161;) +
    + +
    + + icon-sort-by-order + (&#xf162;) +
    + +
    + + icon-sort-by-order-alt + (&#xf163;) +
    + +
    + + icon-thumbs-up + (&#xf164;) +
    + +
    + + icon-thumbs-down + (&#xf165;) +
    + +
    + + icon-youtube-sign + (&#xf166;) +
    + +
    + + icon-youtube + (&#xf167;) +
    + +
    + + icon-xing + (&#xf168;) +
    + +
    + + icon-xing-sign + (&#xf169;) +
    + +
    + + icon-youtube-play + (&#xf16a;) +
    + +
    + + icon-dropbox + (&#xf16b;) +
    + +
    + + icon-stackexchange + (&#xf16c;) +
    + +
    + + icon-instagram + (&#xf16d;) +
    + +
    + + icon-flickr + (&#xf16e;) +
    + +
    + + icon-adn + (&#xf170;) +
    + +
    + + icon-bitbucket + (&#xf171;) +
    + +
    + + icon-bitbucket-sign + (&#xf172;) +
    + +
    + + icon-tumblr + (&#xf173;) +
    + +
    + + icon-tumblr-sign + (&#xf174;) +
    + +
    + + icon-long-arrow-down + (&#xf175;) +
    + +
    + + icon-long-arrow-up + (&#xf176;) +
    + +
    + + icon-long-arrow-left + (&#xf177;) +
    + +
    + + icon-long-arrow-right + (&#xf178;) +
    + +
    + + icon-apple + (&#xf179;) +
    + +
    + + icon-windows + (&#xf17a;) +
    + +
    + + icon-android + (&#xf17b;) +
    + +
    + + icon-linux + (&#xf17c;) +
    + +
    + + icon-dribbble + (&#xf17d;) +
    + +
    + + icon-skype + (&#xf17e;) +
    + +
    + + icon-foursquare + (&#xf180;) +
    + +
    + + icon-trello + (&#xf181;) +
    + +
    + + icon-female + (&#xf182;) +
    + +
    + + icon-male + (&#xf183;) +
    + +
    + + icon-gittip + (&#xf184;) +
    + +
    + + icon-sun + (&#xf185;) +
    + +
    + + icon-moon + (&#xf186;) +
    + +
    + + icon-archive + (&#xf187;) +
    + +
    + + icon-bug + (&#xf188;) +
    + +
    + + icon-vk + (&#xf189;) +
    + +
    + + icon-weibo + (&#xf18a;) +
    + +
    + + icon-renren + (&#xf18b;) +
    + +
    + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/community/index.html b/library/font_awesome/src/3.2.1/community/index.html new file mode 100644 index 000000000..616b039c4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/community/index.html @@ -0,0 +1,363 @@ + + + + + + + + + + The Font Awesome Community + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      Community

    +

    Lots of ways to get involved with Font Awesome

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Font Awesome has a vibrant community of folks helping each other out. You can + get support, + report bugs, + request new icons, + submit pull requests, and + check upcoming milestones. +

    + +
    +
    +
    + +
    +
    +
    + + +
    + +

    + Having trouble getting Font Awesome up and running? Something not working the way you think it should? I hate that + I don't have time to answer Font Awesome support emails anymore. So here are some things you might wanna do: +

    +
      +
    1. + Make sure you've read the latest version of how to get started. + It's been updated recently to make Font Awesome even easier to use. +
    2. +
    3. + Check out the existing questions tagged as + Font Awesome over on Stack Overflow. Other folks might have had the same question you've had. +
    4. +
    5. + Can't find the answer to your question on Stack Overflow? + Ask a new question, then + send me an email and I might be able to take a look. +
    6. +
    +
    + +
    + +

    + Found a problem with Font Awesome? Feel free to submit an issue on the GitHub project. But please keep the following in mind: +

    +
      +
    1. Please be nice. Font Awesome is a happy place.
    2. +
    3. Please search to see if your icon request already exists.
    4. +
    5. + Before opening any issue, please read the generic issue + guidelines, by Nicolas Gallagher. +
    6. +
    7. + After doing everything above, feel free to + submit an issue. +
    8. +
    +
    + +
    + +

    + New icons mostly start as requests by the + Font Awesome community on GitHub. Want to request a new + icon? Here are some things to keep in mind: +

    +
      +
    1. Please be nice. Font Awesome is a happy place.
    2. +
    3. Please search to see if your icon request already exists.
    4. +
    5. + Please and thank you if you include the following: +
        +
      • + Title your new issue + Icon request: icon-name. +
      • +
      • Include a few use cases for your requested icon. How do you plan on using it?
      • +
      • Attach a single color image or two that represent the idea you're going for.
      • +
      +
    6. +
    7. + Concrete objects make good icons, since abstract concepts are, well, abstract. It's harder to make an icon + to represent happiness. It's easier to make a smiley face. +
    8. +
    +
    + +
    + + Found a way to solve a bug in Font Awesome? Want to contribute new features? Here are a few things to remember: +
      +
    1. Please submit all pull requests against *-wip branches.
    2. +
    3. All pull requests submitted against master will be summarily closed and this guide referenced.
    4. +
    5. + After doing everything above, feel free to + submit a pull request. +
    6. +
    +
    + +
    + +

    + Want to keep up with what's planned for Font Awesome? Check out our + milestones on the GitHub project. +

    +
    + + +
    + +
    +
    +

    + Thanks to @robmadole and + @supercodepoet for icon design + review, advice, some Jekyll help, and being all around badass coders. +

    +
    +
    +

    + Thanks to @grantgordon and + @johnsmclay for developing and hosting + icnfnt, the best way to subset Font Awesome. +

    +
    +
    +

    + Thanks to MaxCDN for providing the excellent + BootstrapCDN, the fastest and easiest way to + get started with Font Awesome. +

    +
    +
    +
    + +
    + +

    + Hopefully you think Font Awesome is awesome. I've put hundreds of hours into the project to give back to the + open source community. If you'd like, here are a couple of ways you can tell me thanks for all my hard work. +

    +
    +
    +

    Tip me on Gittip

    +

    + Gittip is a great way to let developers know you appreciate their work. +

    +
    +
    +

    My Amazon Wish List

    +

    + Or pick something straight + from my wish list. Gift cards are great. +

    +
    +
    +
    + + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/design.html b/library/font_awesome/src/3.2.1/design.html new file mode 100644 index 000000000..9c5830d74 --- /dev/null +++ b/library/font_awesome/src/3.2.1/design.html @@ -0,0 +1 @@ + diff --git a/library/font_awesome/src/3.2.1/examples/index.html b/library/font_awesome/src/3.2.1/examples/index.html new file mode 100644 index 000000000..c0604c8c4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/examples/index.html @@ -0,0 +1,680 @@ + + + + + + + + + + Font Awesome Examples + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      Examples

    +

    Lots of easy ways to use Font Awesome

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + After you get up and running, you can place Font Awesome icons just about + anywhere with the <i> tag. + Many examples appreciatively re-used from the Bootstrap documentation. +

    + +
    +
    +
    + +
    +
    +
    + + +
    + +
    +
    +

    Rotated and Flipped Icons

    +
    +   normal
    +   icon-rotate-90
    +   icon-rotate-180
    +   icon-rotate-270
    +   icon-flip-horizontal
    +   icon-flip-vertical +
    +
    +
    +

    Stacked Icons

    +
    + + + + + icon-twitter on icon-check-empty
    + + + + + icon-flag on icon-circle
    + + + + + icon-terminal on icon-sign-blank +
    +
    +
    +

    Better Bulleted Lists

    +
    +
      +
    • New bulleted lists
    • +
    • Fix some old bugs
    • +
    • And deal with arbitrary
    • +
    • Font sizes better
    • +
    +
    +
    +
    +
    + + +
    + +
    +
    +

    Place Font Awesome icons just about anywhere with the <i> tag.

    +
    +
    +
    +
    + icon-camera-retro +
    +
    +
    <i class="icon-camera-retro"></i> icon-camera-retro
    +
    +
    Icon classes are echoed via CSS :before.
    +
    +
    +
    + +
    + +
    +
    +

    + To increase the size of icons relative to its container, use icon-large, icon-2x, + icon-3x, or icon-4x. +

    +
    +
    +

    + Increase the icon size by using the icon-large (33% increase), icon-2x, + icon-3x, or icon-4x classes. +

    +
    +
    +

    icon-camera-retro

    +

    icon-camera-retro

    +

    icon-camera-retro

    +

    icon-camera-retro

    +
    +
    +
    <p><i class="icon-camera-retro icon-large"></i> icon-camera-retro</p>
    +<p><i class="icon-camera-retro icon-2x"></i> icon-camera-retro</p>
    +<p><i class="icon-camera-retro icon-3x"></i> icon-camera-retro</p>
    +<p><i class="icon-camera-retro icon-4x"></i> icon-camera-retro</p>
    +
    +
    + If your icons are getting chopped off on top and bottom, make sure you have + sufficient line-height. +
    +
    +
    +
    + +
    + +
    +
    +

    + Use icon-border and pull-right or pull-left for easy pull quotes or + article graphics. +

    +
    +
    +
    + + Use a few of the new styles together, and you've got easy pull quotes or a great introductory article image. + Or spinning icons for loading and refreshing content. Or fun big icons in multi-line buttons. You can combine all + of them in any combination to get lots of new possibilities. +
    +
    <i class="icon-quote-left icon-4x pull-left icon-muted"></i>
    +Use a few of the new styles together ... lots of new possibilities.
    +
    +
    + + Use a few of the new styles together, and you've got easy pull quotes or a great introductory article image. + Or spinning icons for loading and refreshing content. Or fun big icons in multi-line buttons. You can combine all + of them in any combination to get lots of new possibilities. +
    +
    <i class="icon-flag icon-4x pull-left icon-border"></i>
    +Use a few of the new styles together ... lots of new possibilities.
    +
    +
    +
    +
    + +
    + +
    + +
    +

    + Font Awesome icons work great in buttons. You can even combine them with larger icon styles, + pull-right and pull-left, and icon-spin. +

    +
    <a class="btn" href="#">
    +  <i class="icon-repeat"></i> Reload</a>
    +<a class="btn btn-success" href="#">
    +  <i class="icon-shopping-cart icon-large"></i> Checkout</a>
    +<a class="btn btn-large btn-primary" href="#">
    +  <i class="icon-comment"></i> Comment</a>
    +<a class="btn btn-small btn-info" href="#">
    +  <i class="icon-info-sign"></i> Info</a>
    +<a class="btn btn-danger" href="#">
    +  <i class="icon-trash icon-large"></i> Delete</a>
    +<a class="btn btn-small" href="#">
    +  <i class="icon-cog"></i> Settings</a>
    +<a class="btn btn-large btn-danger" href="#">
    +  <i class="icon-flag icon-2x pull-left"></i> Font Awesome<br>Version 3.2.1</a>
    +<a class="btn btn-primary" href="#">
    +  <i class="icon-refresh icon-spin"></i> Synchronizing Content...</a>
    +
    +
    +
    +
    + +
    + +
    +
    +

    +

    + + + + +
    +

    +
    +
    +
    <div class="btn-group">
    +  <a class="btn" href="#"><i class="icon-align-left"></i></a>
    +  <a class="btn" href="#"><i class="icon-align-center"></i></a>
    +  <a class="btn" href="#"><i class="icon-align-right"></i></a>
    +  <a class="btn" href="#"><i class="icon-align-justify"></i></a>
    +</div>
    +
    +
    +
    +
    + +
    + +
    +
    + +
    +
    +
    <div class="btn-group open">
    +  <a class="btn btn-primary" href="#"><i class="icon-user"></i> User</a>
    +  <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
    +    <span class="icon-caret-down"></span></a>
    +  <ul class="dropdown-menu">
    +    <li><a href="#"><i class="icon-fixed-width icon-pencil"></i> Edit</a></li>
    +    <li><a href="#"><i class="icon-fixed-width icon-trash"></i> Delete</a></li>
    +    <li><a href="#"><i class="icon-fixed-width icon-ban-circle"></i> Ban</a></li>
    +    <li class="divider"></li>
    +    <li><a href="#"><i class="i"></i> Make admin</a></li>
    +  </ul>
    +</div>
    +
    +
    Don't forget to add the appropriate JavaScript to enable button dropdowns.
    +
    +
    +
    + +
    + +
    +
    +
    +
    +
      +
    • Bulleted lists (like this one)
    • +
    • Buttons
    • +
    • Button groups
    • +
    • Navigation
    • +
    • Prepended form inputs
    • +
    • …and many more with custom CSS
    • +
    +
    +
    +

    Easily replace individual bullets.

    +
    <ul class="icons-ul">
    +  <li><i class="icon-li icon-ok"></i>Bulleted lists (like this one)</li>
    +  <li><i class="icon-li icon-ok"></i>Buttons</li>
    +  <li><i class="icon-li icon-ok"></i>Button groups</li>
    +  <li><i class="icon-li icon-ok"></i>Navigation</li>
    +  <li><i class="icon-li icon-ok"></i>Prepended form inputs</li>
    +  <li><i class="icon-li icon-ok"></i>&hellip;and many more with custom CSS</li>
    +</ul>
    +
    +
    Make sure to NOT include any whitespace after the icon declaration.
    +
    +
    +
    + + + +
    + +
    +
    +
    +
    + + +
    +
    + + +
    +
    +
    +
    +
    <form>
    +  <div class="input-prepend">
    +    <span class="add-on"><i class="icon-envelope"></i></span>
    +    <input class="span2" type="text" placeholder="Email address">
    +  </div>
    +  <div class="input-prepend">
    +    <span class="add-on"><i class="icon-key"></i></span>
    +    <input class="span2" type="password" placeholder="Password">
    +  </div>
    +</form>
    +
    +
    +
    +
    + +
    + +
    +
    + Use the icon-spin class to get any icon to rotate. Works well with icon-spinner and + icon-refresh. +
    +
    +
    + Spinner icon when loading content... +
    +
    <i class="icon-spinner icon-spin icon-large"></i> Spinner icon when loading content...
    +
    +

    + CSS3 animations aren't supported in IE7 - IE9. +

    +
    +
    +
    + +
    + +
    +
    + A set of classes that can be used to arbitrarily rotate and flip icons. +
    +
    +
    +   normal
    +   icon-rotate-90
    +   icon-rotate-180
    +   icon-rotate-270
    +   icon-flip-horizontal
    +   icon-flip-vertical +
    +
    <i class="icon-shield"></i>&nbsp; normal<br>
    +<i class="icon-shield icon-rotate-90"></i>&nbsp; icon-rotate-90<br>
    +<i class="icon-shield icon-rotate-180"></i>&nbsp; icon-rotate-180<br>
    +<i class="icon-shield icon-rotate-270"></i>&nbsp; icon-rotate-270<br>
    +<i class="icon-shield icon-flip-horizontal"></i>&nbsp; icon-flip-horizontal<br>
    +<i class="icon-shield icon-flip-vertical"></i>&nbsp; icon-flip-vertical
    +
    +

    + Rotating and flipping icons aren't yet supported in IE7. +

    +
    +
    +
    + +
    + +
    +
    + A method for easily stacking multiple icons. Use the icon-stack class on the parent and + icon-stack-base for the bottom icon. +
    +
    +
    + + + + + icon-twitter on icon-check-empty
    + + + + + icon-flag on icon-circle
    + + + + + icon-terminal on icon-sign-blank
    + + + + + icon-camera on icon-ban-circle +
    +
    <span class="icon-stack">
    +  <i class="icon-check-empty icon-stack-base"></i>
    +  <i class="icon-twitter"></i>
    +</span>
    +icon-twitter on icon-check-empty<br>
    +<span class="icon-stack">
    +  <i class="icon-circle icon-stack-base"></i>
    +  <i class="icon-flag icon-light"></i>
    +</span>
    +icon-flag on icon-circle<br>
    +<span class="icon-stack">
    +  <i class="icon-sign-blank icon-stack-base"></i>
    +  <i class="icon-terminal icon-light"></i>
    +</span>
    +icon-terminal on icon-sign-blank<br>
    +<span class="icon-stack">
    +  <i class="icon-camera"></i>
    +  <i class="icon-ban-circle icon-stack-base text-error"></i>
    +</span>
    +icon-camera on icon-ban-circle
    +
    +
    +
    +
    + +
    + +
    +
    +

    Anything you can do with CSS font styles, you can do with Font Awesome.

    +
    +
    +

    Star Ratings (inspired by CSS Tricks)

    +
    + + + +
    +
    +
    +
    + + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/get-started/index.html b/library/font_awesome/src/3.2.1/get-started/index.html new file mode 100644 index 000000000..ea9830ac0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/get-started/index.html @@ -0,0 +1,308 @@ + + + + + + + + + + Get Started with Font Awesome + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      Get Started

    +

    Easy ways to get Font Awesome 3.2.1 onto your website

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Setting up Font Awesome can be as simple as adding two lines of code to your website, or you can be a pro and + customize the LESS yourself! Font Awesome even plays nicely with + Bootstrap! +

    + +
    +
    +
    + +
    +
    +
    + + +
    + +

    Add Font Awesome + Bootstrap into your website with two lines of code. You don't even have to download or install anything!

    +
      +
    1. + Paste the following code into the <head> section of your site's HTML. +
      <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
      +<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
      +
      +
      + Want to use Font Awesome by itself without Bootstrap? Just don't include the first line. +
      +
    2. +
    3. + Pat yourself on the back for your scalable-vector-icons-on-the-website + judo solution in two lines of code. +
    4. +
    5. + Check out the examples to start using Font Awesome! +
    6. +
    +
    + +
    + +

    Use this method to get the default Font Awesome CSS with the default Bootstrap CSS.

    +
      +
    1. Copy the font-awesome directory into your project.
    2. +
    3. + In the <head> of your html, reference the location to your font-awesome.min.css. +
      <link rel="stylesheet" href="path/to/bootstrap/css/bootstrap.min.css">
      +<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
      +
      +
    4. +
    5. Check out the examples to start using Font Awesome!
    6. +
    +
    + +
    + +

    Use this method to customize Font Awesome and Bootstrap 2.3.2 using LESS.

    +
      +
    1. Copy the font-awesome directory into your project.
    2. +
    3. Open your project's bootstrap/bootstrap.less and replace +
      @import "sprites.less";
      +
      + with +
      @import "path/to/font-awesome/less/font-awesome.less";
      +
      +
    4. +
    5. + Open your project's font-awesome/variables.less and edit the @FontAwesomePath variable to point to your font directory. +
      @FontAwesomePath:   "../font";
      +
      +

      The font path is relative from your compiled CSS directory.

      +
    6. +
    7. Re-compile your LESS if using a static compiler. Otherwise, you should be good to go.
    8. +
    9. Check out the examples to start using Font Awesome!
    10. +
    +
    + +
    + +

    Font Awesome works just as well without Bootstrap.

    +
      +
    1. Copy the font-awesome directory into your project.
    2. +
    3. Follow the above directions and skip the Bootstrap parts.
    4. +
    5. Open your project's font-awesome.less or font-awesome.min.css and edit the font location to point it to your font directory (see above examples).
    6. +
    7. Check out the examples to start using Font Awesome!
    8. +
    +
    + +
    + +

    Font Awesome supports IE7. If you need it, you have my condolences.

    +
      +
    1. Get Font Awesome working properly in a modern browser.
    2. +
    3. Copy font-awesome-ie7.min.css into your project.
    4. +
    5. + In the <head> of your html, reference the location to your font-awesome-ie7.min.css. +
      <link rel="stylesheet" href="path/to/bootstrap/css/bootstrap.min.css">
      +<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
      +<!--[if IE 7]>
      +  <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome-ie7.min.css">
      +<![endif]-->
      +
      +
    6. +
    7. Go complain to whoever decided your project needs IE7 support.
    8. +
    +
    + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/adjust/index.html b/library/font_awesome/src/3.2.1/icon/adjust/index.html new file mode 100644 index 000000000..21482f25c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/adjust/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-adjust: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-adjust + + · + Unicode: f042 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-adjust +
    +
    +
    <i class="icon-adjust"></i> icon-adjust
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/adn/index.html b/library/font_awesome/src/3.2.1/icon/adn/index.html new file mode 100644 index 000000000..9ecc4ab34 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/adn/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-adn: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-adn + + · + Unicode: f170 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-adn +
    +
    +
    <i class="icon-adn"></i> icon-adn
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/align-center/index.html b/library/font_awesome/src/3.2.1/icon/align-center/index.html new file mode 100644 index 000000000..1c1741075 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/align-center/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-align-center: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-align-center + + · + Unicode: f037 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-align-center +
    +
    +
    <i class="icon-align-center"></i> icon-align-center
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/align-justify/index.html b/library/font_awesome/src/3.2.1/icon/align-justify/index.html new file mode 100644 index 000000000..2cae1cd47 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/align-justify/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-align-justify: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-align-justify + + · + Unicode: f039 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-align-justify +
    +
    +
    <i class="icon-align-justify"></i> icon-align-justify
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/align-left/index.html b/library/font_awesome/src/3.2.1/icon/align-left/index.html new file mode 100644 index 000000000..d5130fe11 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/align-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-align-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-align-left + + · + Unicode: f036 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-align-left +
    +
    +
    <i class="icon-align-left"></i> icon-align-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/align-right/index.html b/library/font_awesome/src/3.2.1/icon/align-right/index.html new file mode 100644 index 000000000..77cc1f648 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/align-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-align-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-align-right + + · + Unicode: f038 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-align-right +
    +
    +
    <i class="icon-align-right"></i> icon-align-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ambulance/index.html b/library/font_awesome/src/3.2.1/icon/ambulance/index.html new file mode 100644 index 000000000..2923d5d41 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ambulance/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ambulance: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ambulance + + · + Unicode: f0f9 · + Created: v3.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ambulance +
    +
    +
    <i class="icon-ambulance"></i> icon-ambulance
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/anchor/index.html b/library/font_awesome/src/3.2.1/icon/anchor/index.html new file mode 100644 index 000000000..c1fe261f3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/anchor/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-anchor: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-anchor + + · + Unicode: f13d · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-anchor +
    +
    +
    <i class="icon-anchor"></i> icon-anchor
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/android/index.html b/library/font_awesome/src/3.2.1/icon/android/index.html new file mode 100644 index 000000000..d74cbf626 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/android/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-android: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-android + + · + Unicode: f17b · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-android +
    +
    +
    <i class="icon-android"></i> icon-android
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/angle-down/index.html b/library/font_awesome/src/3.2.1/icon/angle-down/index.html new file mode 100644 index 000000000..2c9ddafb7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/angle-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-angle-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-angle-down + + · + Unicode: f107 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-angle-down +
    +
    +
    <i class="icon-angle-down"></i> icon-angle-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/angle-left/index.html b/library/font_awesome/src/3.2.1/icon/angle-left/index.html new file mode 100644 index 000000000..d08bee4b6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/angle-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-angle-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-angle-left + + · + Unicode: f104 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-angle-left +
    +
    +
    <i class="icon-angle-left"></i> icon-angle-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/angle-right/index.html b/library/font_awesome/src/3.2.1/icon/angle-right/index.html new file mode 100644 index 000000000..51ab55edd --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/angle-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-angle-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-angle-right + + · + Unicode: f105 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-angle-right +
    +
    +
    <i class="icon-angle-right"></i> icon-angle-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/angle-up/index.html b/library/font_awesome/src/3.2.1/icon/angle-up/index.html new file mode 100644 index 000000000..573758e54 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/angle-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-angle-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-angle-up + + · + Unicode: f106 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-angle-up +
    +
    +
    <i class="icon-angle-up"></i> icon-angle-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/apple/index.html b/library/font_awesome/src/3.2.1/icon/apple/index.html new file mode 100644 index 000000000..5c97c9c91 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/apple/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-apple: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-apple + + · + Unicode: f179 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-apple +
    +
    +
    <i class="icon-apple"></i> icon-apple
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/archive/index.html b/library/font_awesome/src/3.2.1/icon/archive/index.html new file mode 100644 index 000000000..cf88844e5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/archive/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-archive: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-archive + + · + Unicode: f187 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-archive +
    +
    +
    <i class="icon-archive"></i> icon-archive
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/arrow-down/index.html new file mode 100644 index 000000000..8c939cd56 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/arrow-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-arrow-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-arrow-down + + · + Unicode: f063 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-arrow-down +
    +
    +
    <i class="icon-arrow-down"></i> icon-arrow-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/arrow-left/index.html new file mode 100644 index 000000000..dc93f3dbc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/arrow-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-arrow-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-arrow-left + + · + Unicode: f060 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-arrow-left +
    +
    +
    <i class="icon-arrow-left"></i> icon-arrow-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/arrow-right/index.html new file mode 100644 index 000000000..a44e49957 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/arrow-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-arrow-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-arrow-right + + · + Unicode: f061 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-arrow-right +
    +
    +
    <i class="icon-arrow-right"></i> icon-arrow-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/arrow-up/index.html new file mode 100644 index 000000000..014f44b37 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/arrow-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-arrow-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-arrow-up + + · + Unicode: f062 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-arrow-up +
    +
    +
    <i class="icon-arrow-up"></i> icon-arrow-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/asterisk/index.html b/library/font_awesome/src/3.2.1/icon/asterisk/index.html new file mode 100644 index 000000000..459b88593 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/asterisk/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-asterisk: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-asterisk + + · + Unicode: f069 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-asterisk +
    +
    +
    <i class="icon-asterisk"></i> icon-asterisk
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/backward/index.html b/library/font_awesome/src/3.2.1/icon/backward/index.html new file mode 100644 index 000000000..6338facbc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/backward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-backward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-backward + + · + Unicode: f04a · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-backward +
    +
    +
    <i class="icon-backward"></i> icon-backward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ban-circle/index.html b/library/font_awesome/src/3.2.1/icon/ban-circle/index.html new file mode 100644 index 000000000..6c90e2fd6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ban-circle/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ban-circle: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ban-circle + + · + Unicode: f05e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ban-circle +
    +
    +
    <i class="icon-ban-circle"></i> icon-ban-circle
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bar-chart/index.html b/library/font_awesome/src/3.2.1/icon/bar-chart/index.html new file mode 100644 index 000000000..89a5dc3cb --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bar-chart/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bar-chart: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bar-chart + + · + Unicode: f080 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bar-chart +
    +
    +
    <i class="icon-bar-chart"></i> icon-bar-chart
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/barcode/index.html b/library/font_awesome/src/3.2.1/icon/barcode/index.html new file mode 100644 index 000000000..760534e60 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/barcode/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-barcode: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-barcode + + · + Unicode: f02a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-barcode +
    +
    +
    <i class="icon-barcode"></i> icon-barcode
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/beaker/index.html b/library/font_awesome/src/3.2.1/icon/beaker/index.html new file mode 100644 index 000000000..368923d5f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/beaker/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-beaker: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-beaker + + · + Unicode: f0c3 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-beaker +
    +
    +
    <i class="icon-beaker"></i> icon-beaker
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/beer/index.html b/library/font_awesome/src/3.2.1/icon/beer/index.html new file mode 100644 index 000000000..838a1ca50 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/beer/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-beer: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-beer + + · + Unicode: f0fc · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-beer +
    +
    +
    <i class="icon-beer"></i> icon-beer
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bell-alt/index.html b/library/font_awesome/src/3.2.1/icon/bell-alt/index.html new file mode 100644 index 000000000..26ebf4bad --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bell-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bell-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bell-alt + + · + Unicode: f0f3 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bell-alt +
    +
    +
    <i class="icon-bell-alt"></i> icon-bell-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bell/index.html b/library/font_awesome/src/3.2.1/icon/bell/index.html new file mode 100644 index 000000000..f30075f51 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bell/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bell: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bell + + · + Unicode: f0a2 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bell +
    +
    +
    <i class="icon-bell"></i> icon-bell
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html b/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html new file mode 100644 index 000000000..b49591c56 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bitbucket-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bitbucket-sign + + · + Unicode: f172 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bitbucket-sign +
    +
    +
    <i class="icon-bitbucket-sign"></i> icon-bitbucket-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bitbucket/index.html b/library/font_awesome/src/3.2.1/icon/bitbucket/index.html new file mode 100644 index 000000000..d3645b5c9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bitbucket/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bitbucket: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bitbucket + + · + Unicode: f171 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bitbucket +
    +
    +
    <i class="icon-bitbucket"></i> icon-bitbucket
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bold/index.html b/library/font_awesome/src/3.2.1/icon/bold/index.html new file mode 100644 index 000000000..7a8240b14 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bold/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bold: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bold + + · + Unicode: f032 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bold +
    +
    +
    <i class="icon-bold"></i> icon-bold
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bolt/index.html b/library/font_awesome/src/3.2.1/icon/bolt/index.html new file mode 100644 index 000000000..6fed3da76 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bolt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bolt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bolt + + · + Unicode: f0e7 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bolt +
    +
    +
    <i class="icon-bolt"></i> icon-bolt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/book/index.html b/library/font_awesome/src/3.2.1/icon/book/index.html new file mode 100644 index 000000000..aedd49ecd --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/book/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-book: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-book + + · + Unicode: f02d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-book +
    +
    +
    <i class="icon-book"></i> icon-book
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html b/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html new file mode 100644 index 000000000..273f32a3e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bookmark-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bookmark-empty + + · + Unicode: f097 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bookmark-empty +
    +
    +
    <i class="icon-bookmark-empty"></i> icon-bookmark-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bookmark/index.html b/library/font_awesome/src/3.2.1/icon/bookmark/index.html new file mode 100644 index 000000000..c1c3ef7de --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bookmark/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bookmark: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bookmark + + · + Unicode: f02e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bookmark +
    +
    +
    <i class="icon-bookmark"></i> icon-bookmark
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/briefcase/index.html b/library/font_awesome/src/3.2.1/icon/briefcase/index.html new file mode 100644 index 000000000..15af5eefb --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/briefcase/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-briefcase: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-briefcase + + · + Unicode: f0b1 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-briefcase +
    +
    +
    <i class="icon-briefcase"></i> icon-briefcase
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/btc/index.html b/library/font_awesome/src/3.2.1/icon/btc/index.html new file mode 100644 index 000000000..59da41a87 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/btc/index.html @@ -0,0 +1,215 @@ + + + + + + + + + + icon-btc: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-btc + + · + Unicode: f15a · + Created: v3.2 · + Categories: + + Currency Icons, + + Brand Icons + + + + · Aliases: + + icon-bitcoin + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-btc +
    +
    +
    <i class="icon-btc"></i> icon-btc
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bug/index.html b/library/font_awesome/src/3.2.1/icon/bug/index.html new file mode 100644 index 000000000..5b6a148fb --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bug/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bug: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bug + + · + Unicode: f188 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bug +
    +
    +
    <i class="icon-bug"></i> icon-bug
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/building/index.html b/library/font_awesome/src/3.2.1/icon/building/index.html new file mode 100644 index 000000000..cae086791 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/building/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-building: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-building + + · + Unicode: f0f7 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-building +
    +
    +
    <i class="icon-building"></i> icon-building
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bullhorn/index.html b/library/font_awesome/src/3.2.1/icon/bullhorn/index.html new file mode 100644 index 000000000..189e88a95 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bullhorn/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bullhorn: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bullhorn + + · + Unicode: f0a1 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bullhorn +
    +
    +
    <i class="icon-bullhorn"></i> icon-bullhorn
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/bullseye/index.html b/library/font_awesome/src/3.2.1/icon/bullseye/index.html new file mode 100644 index 000000000..1c4dcbf38 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/bullseye/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-bullseye: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-bullseye + + · + Unicode: f140 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-bullseye +
    +
    +
    <i class="icon-bullseye"></i> icon-bullseye
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html b/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html new file mode 100644 index 000000000..4deda7e1a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-calendar-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-calendar-empty + + · + Unicode: f133 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-calendar-empty +
    +
    +
    <i class="icon-calendar-empty"></i> icon-calendar-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/calendar/index.html b/library/font_awesome/src/3.2.1/icon/calendar/index.html new file mode 100644 index 000000000..ff01fde88 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/calendar/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-calendar: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-calendar + + · + Unicode: f073 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-calendar +
    +
    +
    <i class="icon-calendar"></i> icon-calendar
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/camera-retro/index.html b/library/font_awesome/src/3.2.1/icon/camera-retro/index.html new file mode 100644 index 000000000..e1f8bdbd4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/camera-retro/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-camera-retro: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-camera-retro + + · + Unicode: f083 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-camera-retro +
    +
    +
    <i class="icon-camera-retro"></i> icon-camera-retro
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/camera/index.html b/library/font_awesome/src/3.2.1/icon/camera/index.html new file mode 100644 index 000000000..fb3c6ae64 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/camera/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-camera: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-camera + + · + Unicode: f030 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-camera +
    +
    +
    <i class="icon-camera"></i> icon-camera
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/caret-down/index.html b/library/font_awesome/src/3.2.1/icon/caret-down/index.html new file mode 100644 index 000000000..ad35768ce --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/caret-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-caret-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-caret-down + + · + Unicode: f0d7 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-caret-down +
    +
    +
    <i class="icon-caret-down"></i> icon-caret-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/caret-left/index.html b/library/font_awesome/src/3.2.1/icon/caret-left/index.html new file mode 100644 index 000000000..00b7a6635 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/caret-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-caret-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-caret-left + + · + Unicode: f0d9 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-caret-left +
    +
    +
    <i class="icon-caret-left"></i> icon-caret-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/caret-right/index.html b/library/font_awesome/src/3.2.1/icon/caret-right/index.html new file mode 100644 index 000000000..6cbb07e3e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/caret-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-caret-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-caret-right + + · + Unicode: f0da · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-caret-right +
    +
    +
    <i class="icon-caret-right"></i> icon-caret-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/caret-up/index.html b/library/font_awesome/src/3.2.1/icon/caret-up/index.html new file mode 100644 index 000000000..7f99181df --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/caret-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-caret-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-caret-up + + · + Unicode: f0d8 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-caret-up +
    +
    +
    <i class="icon-caret-up"></i> icon-caret-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/certificate/index.html b/library/font_awesome/src/3.2.1/icon/certificate/index.html new file mode 100644 index 000000000..2d8136f14 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/certificate/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-certificate: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-certificate + + · + Unicode: f0a3 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-certificate +
    +
    +
    <i class="icon-certificate"></i> icon-certificate
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/check-empty/index.html b/library/font_awesome/src/3.2.1/icon/check-empty/index.html new file mode 100644 index 000000000..5e151fcfa --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/check-empty/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-check-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-check-empty + + · + Unicode: f096 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-unchecked + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-check-empty +
    +
    +
    <i class="icon-check-empty"></i> icon-check-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/check-minus/index.html b/library/font_awesome/src/3.2.1/icon/check-minus/index.html new file mode 100644 index 000000000..9c07a46fc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/check-minus/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-check-minus: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-check-minus + + · + Unicode: f147 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-check-minus +
    +
    +
    <i class="icon-check-minus"></i> icon-check-minus
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/check-sign/index.html b/library/font_awesome/src/3.2.1/icon/check-sign/index.html new file mode 100644 index 000000000..e45f99aa5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/check-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-check-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-check-sign + + · + Unicode: f14a · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-check-sign +
    +
    +
    <i class="icon-check-sign"></i> icon-check-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/check/index.html b/library/font_awesome/src/3.2.1/icon/check/index.html new file mode 100644 index 000000000..c9b5e8155 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/check/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-check: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-check + + · + Unicode: f046 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-check +
    +
    +
    <i class="icon-check"></i> icon-check
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-down/index.html b/library/font_awesome/src/3.2.1/icon/chevron-down/index.html new file mode 100644 index 000000000..f95e5173c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-down + + · + Unicode: f078 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-down +
    +
    +
    <i class="icon-chevron-down"></i> icon-chevron-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-left/index.html b/library/font_awesome/src/3.2.1/icon/chevron-left/index.html new file mode 100644 index 000000000..84a22cf0d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-left + + · + Unicode: f053 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-left +
    +
    +
    <i class="icon-chevron-left"></i> icon-chevron-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-right/index.html b/library/font_awesome/src/3.2.1/icon/chevron-right/index.html new file mode 100644 index 000000000..558787287 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-right + + · + Unicode: f054 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-right +
    +
    +
    <i class="icon-chevron-right"></i> icon-chevron-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html new file mode 100644 index 000000000..dad0a7318 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-sign-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-sign-down + + · + Unicode: f13a · + Created: v3.1 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-sign-down +
    +
    +
    <i class="icon-chevron-sign-down"></i> icon-chevron-sign-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html new file mode 100644 index 000000000..d570f1a60 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-sign-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-sign-left + + · + Unicode: f137 · + Created: v3.1 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-sign-left +
    +
    +
    <i class="icon-chevron-sign-left"></i> icon-chevron-sign-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html new file mode 100644 index 000000000..c31d24e63 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-sign-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-sign-right + + · + Unicode: f138 · + Created: v3.1 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-sign-right +
    +
    +
    <i class="icon-chevron-sign-right"></i> icon-chevron-sign-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html new file mode 100644 index 000000000..3f9d6d61c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-sign-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-sign-up + + · + Unicode: f139 · + Created: v3.1 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-sign-up +
    +
    +
    <i class="icon-chevron-sign-up"></i> icon-chevron-sign-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/chevron-up/index.html b/library/font_awesome/src/3.2.1/icon/chevron-up/index.html new file mode 100644 index 000000000..c99d2e56c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/chevron-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-chevron-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-chevron-up + + · + Unicode: f077 · + Created: v1.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-chevron-up +
    +
    +
    <i class="icon-chevron-up"></i> icon-chevron-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html new file mode 100644 index 000000000..f4c8b7333 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle-arrow-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle-arrow-down + + · + Unicode: f0ab · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle-arrow-down +
    +
    +
    <i class="icon-circle-arrow-down"></i> icon-circle-arrow-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html new file mode 100644 index 000000000..7b3e4f2e0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle-arrow-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle-arrow-left + + · + Unicode: f0a8 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle-arrow-left +
    +
    +
    <i class="icon-circle-arrow-left"></i> icon-circle-arrow-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html new file mode 100644 index 000000000..e5af31e3b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle-arrow-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle-arrow-right + + · + Unicode: f0a9 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle-arrow-right +
    +
    +
    <i class="icon-circle-arrow-right"></i> icon-circle-arrow-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html new file mode 100644 index 000000000..037027392 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle-arrow-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle-arrow-up + + · + Unicode: f0aa · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle-arrow-up +
    +
    +
    <i class="icon-circle-arrow-up"></i> icon-circle-arrow-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle-blank/index.html b/library/font_awesome/src/3.2.1/icon/circle-blank/index.html new file mode 100644 index 000000000..bb32df00d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle-blank/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle-blank: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle-blank + + · + Unicode: f10c · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle-blank +
    +
    +
    <i class="icon-circle-blank"></i> icon-circle-blank
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/circle/index.html b/library/font_awesome/src/3.2.1/icon/circle/index.html new file mode 100644 index 000000000..f8b8f320e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/circle/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-circle: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-circle + + · + Unicode: f111 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-circle +
    +
    +
    <i class="icon-circle"></i> icon-circle
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cloud-download/index.html b/library/font_awesome/src/3.2.1/icon/cloud-download/index.html new file mode 100644 index 000000000..911d48df4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cloud-download/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-cloud-download: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cloud-download + + · + Unicode: f0ed · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cloud-download +
    +
    +
    <i class="icon-cloud-download"></i> icon-cloud-download
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html b/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html new file mode 100644 index 000000000..f230dd256 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-cloud-upload: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cloud-upload + + · + Unicode: f0ee · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cloud-upload +
    +
    +
    <i class="icon-cloud-upload"></i> icon-cloud-upload
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cloud/index.html b/library/font_awesome/src/3.2.1/icon/cloud/index.html new file mode 100644 index 000000000..c5a752365 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cloud/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-cloud: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cloud + + · + Unicode: f0c2 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cloud +
    +
    +
    <i class="icon-cloud"></i> icon-cloud
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cny/index.html b/library/font_awesome/src/3.2.1/icon/cny/index.html new file mode 100644 index 000000000..4fb1e0ab0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cny/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-cny: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cny + + · + Unicode: f158 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-renminbi + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cny +
    +
    +
    <i class="icon-cny"></i> icon-cny
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/code-fork/index.html b/library/font_awesome/src/3.2.1/icon/code-fork/index.html new file mode 100644 index 000000000..33ec52194 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/code-fork/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-code-fork: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-code-fork + + · + Unicode: f126 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-code-fork +
    +
    +
    <i class="icon-code-fork"></i> icon-code-fork
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/code/index.html b/library/font_awesome/src/3.2.1/icon/code/index.html new file mode 100644 index 000000000..74d45ef20 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/code/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-code: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-code + + · + Unicode: f121 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-code +
    +
    +
    <i class="icon-code"></i> icon-code
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/coffee/index.html b/library/font_awesome/src/3.2.1/icon/coffee/index.html new file mode 100644 index 000000000..f77950d4a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/coffee/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-coffee: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-coffee + + · + Unicode: f0f4 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-coffee +
    +
    +
    <i class="icon-coffee"></i> icon-coffee
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cog/index.html b/library/font_awesome/src/3.2.1/icon/cog/index.html new file mode 100644 index 000000000..c0a67b27b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cog/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-cog: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cog + + · + Unicode: f013 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-gear + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cog +
    +
    +
    <i class="icon-cog"></i> icon-cog
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cogs/index.html b/library/font_awesome/src/3.2.1/icon/cogs/index.html new file mode 100644 index 000000000..83f009045 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cogs/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-cogs: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cogs + + · + Unicode: f085 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-gears + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cogs +
    +
    +
    <i class="icon-cogs"></i> icon-cogs
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html b/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html new file mode 100644 index 000000000..9d1caefbc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-collapse-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-collapse-alt + + · + Unicode: f117 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-collapse-alt +
    +
    +
    <i class="icon-collapse-alt"></i> icon-collapse-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/collapse-top/index.html b/library/font_awesome/src/3.2.1/icon/collapse-top/index.html new file mode 100644 index 000000000..02b59f726 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/collapse-top/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-collapse-top: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-collapse-top + + · + Unicode: f151 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-collapse-top +
    +
    +
    <i class="icon-collapse-top"></i> icon-collapse-top
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/collapse/index.html b/library/font_awesome/src/3.2.1/icon/collapse/index.html new file mode 100644 index 000000000..433cd5080 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/collapse/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-collapse: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-collapse + + · + Unicode: f150 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-collapse +
    +
    +
    <i class="icon-collapse"></i> icon-collapse
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/columns/index.html b/library/font_awesome/src/3.2.1/icon/columns/index.html new file mode 100644 index 000000000..df91235d6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/columns/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-columns: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-columns + + · + Unicode: f0db · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-columns +
    +
    +
    <i class="icon-columns"></i> icon-columns
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/comment-alt/index.html b/library/font_awesome/src/3.2.1/icon/comment-alt/index.html new file mode 100644 index 000000000..dbfa3acde --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/comment-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-comment-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-comment-alt + + · + Unicode: f0e5 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-comment-alt +
    +
    +
    <i class="icon-comment-alt"></i> icon-comment-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/comment/index.html b/library/font_awesome/src/3.2.1/icon/comment/index.html new file mode 100644 index 000000000..ed6a4b694 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/comment/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-comment: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-comment + + · + Unicode: f075 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-comment +
    +
    +
    <i class="icon-comment"></i> icon-comment
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/comments-alt/index.html b/library/font_awesome/src/3.2.1/icon/comments-alt/index.html new file mode 100644 index 000000000..cab838708 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/comments-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-comments-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-comments-alt + + · + Unicode: f0e6 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-comments-alt +
    +
    +
    <i class="icon-comments-alt"></i> icon-comments-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/comments/index.html b/library/font_awesome/src/3.2.1/icon/comments/index.html new file mode 100644 index 000000000..0eab83a22 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/comments/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-comments: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-comments + + · + Unicode: f086 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-comments +
    +
    +
    <i class="icon-comments"></i> icon-comments
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/compass/index.html b/library/font_awesome/src/3.2.1/icon/compass/index.html new file mode 100644 index 000000000..d8bbab107 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/compass/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-compass: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-compass + + · + Unicode: f14e · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-compass +
    +
    +
    <i class="icon-compass"></i> icon-compass
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/copy/index.html b/library/font_awesome/src/3.2.1/icon/copy/index.html new file mode 100644 index 000000000..5ee8486da --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/copy/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-copy: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-copy + + · + Unicode: f0c5 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-copy +
    +
    +
    <i class="icon-copy"></i> icon-copy
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/credit-card/index.html b/library/font_awesome/src/3.2.1/icon/credit-card/index.html new file mode 100644 index 000000000..7cf6e2e7b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/credit-card/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-credit-card: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-credit-card + + · + Unicode: f09d · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-credit-card +
    +
    +
    <i class="icon-credit-card"></i> icon-credit-card
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/crop/index.html b/library/font_awesome/src/3.2.1/icon/crop/index.html new file mode 100644 index 000000000..5eadec8ca --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/crop/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-crop: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-crop + + · + Unicode: f125 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-crop +
    +
    +
    <i class="icon-crop"></i> icon-crop
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/css3/index.html b/library/font_awesome/src/3.2.1/icon/css3/index.html new file mode 100644 index 000000000..035a28aef --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/css3/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-css3: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-css3 + + · + Unicode: f13c · + Created: v3.1 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-css3 +
    +
    +
    <i class="icon-css3"></i> icon-css3
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/cut/index.html b/library/font_awesome/src/3.2.1/icon/cut/index.html new file mode 100644 index 000000000..fb927f0ca --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/cut/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-cut: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-cut + + · + Unicode: f0c4 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-cut +
    +
    +
    <i class="icon-cut"></i> icon-cut
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/dashboard/index.html b/library/font_awesome/src/3.2.1/icon/dashboard/index.html new file mode 100644 index 000000000..1755eb169 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/dashboard/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-dashboard: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-dashboard + + · + Unicode: f0e4 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-dashboard +
    +
    +
    <i class="icon-dashboard"></i> icon-dashboard
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/desktop/index.html b/library/font_awesome/src/3.2.1/icon/desktop/index.html new file mode 100644 index 000000000..151055e52 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/desktop/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-desktop: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-desktop + + · + Unicode: f108 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-desktop +
    +
    +
    <i class="icon-desktop"></i> icon-desktop
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html new file mode 100644 index 000000000..350dc343f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-double-angle-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-double-angle-down + + · + Unicode: f103 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-double-angle-down +
    +
    +
    <i class="icon-double-angle-down"></i> icon-double-angle-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html new file mode 100644 index 000000000..10d5bc0b7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-double-angle-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-double-angle-left + + · + Unicode: f100 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-double-angle-left +
    +
    +
    <i class="icon-double-angle-left"></i> icon-double-angle-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html new file mode 100644 index 000000000..55dd56ff2 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-double-angle-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-double-angle-right + + · + Unicode: f101 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-double-angle-right +
    +
    +
    <i class="icon-double-angle-right"></i> icon-double-angle-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html new file mode 100644 index 000000000..4e4b9c3f2 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-double-angle-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-double-angle-up + + · + Unicode: f102 · + Created: v3.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-double-angle-up +
    +
    +
    <i class="icon-double-angle-up"></i> icon-double-angle-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/download-alt/index.html b/library/font_awesome/src/3.2.1/icon/download-alt/index.html new file mode 100644 index 000000000..fee31dc01 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/download-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-download-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-download-alt + + · + Unicode: f019 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-download-alt +
    +
    +
    <i class="icon-download-alt"></i> icon-download-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/download/index.html b/library/font_awesome/src/3.2.1/icon/download/index.html new file mode 100644 index 000000000..cbcd62c24 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/download/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-download: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-download + + · + Unicode: f01a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-download +
    +
    +
    <i class="icon-download"></i> icon-download
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/dribbble/index.html b/library/font_awesome/src/3.2.1/icon/dribbble/index.html new file mode 100644 index 000000000..45e123712 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/dribbble/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-dribbble: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-dribbble + + · + Unicode: f17d · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-dribbble +
    +
    +
    <i class="icon-dribbble"></i> icon-dribbble
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/dropbox/index.html b/library/font_awesome/src/3.2.1/icon/dropbox/index.html new file mode 100644 index 000000000..a4e21d350 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/dropbox/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-dropbox: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-dropbox + + · + Unicode: f16b · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-dropbox +
    +
    +
    <i class="icon-dropbox"></i> icon-dropbox
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/edit-sign/index.html b/library/font_awesome/src/3.2.1/icon/edit-sign/index.html new file mode 100644 index 000000000..174916ce3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/edit-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-edit-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-edit-sign + + · + Unicode: f14b · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-edit-sign +
    +
    +
    <i class="icon-edit-sign"></i> icon-edit-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/edit/index.html b/library/font_awesome/src/3.2.1/icon/edit/index.html new file mode 100644 index 000000000..2d0bde6c0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/edit/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-edit: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-edit + + · + Unicode: f044 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-edit +
    +
    +
    <i class="icon-edit"></i> icon-edit
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/eject/index.html b/library/font_awesome/src/3.2.1/icon/eject/index.html new file mode 100644 index 000000000..6141c5b9f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/eject/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-eject: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-eject + + · + Unicode: f052 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-eject +
    +
    +
    <i class="icon-eject"></i> icon-eject
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html b/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html new file mode 100644 index 000000000..6afa2c933 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ellipsis-horizontal: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ellipsis-horizontal + + · + Unicode: f141 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ellipsis-horizontal +
    +
    +
    <i class="icon-ellipsis-horizontal"></i> icon-ellipsis-horizontal
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html b/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html new file mode 100644 index 000000000..f88b29b5c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ellipsis-vertical: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ellipsis-vertical + + · + Unicode: f142 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ellipsis-vertical +
    +
    +
    <i class="icon-ellipsis-vertical"></i> icon-ellipsis-vertical
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html b/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html new file mode 100644 index 000000000..12b46a49d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-envelope-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-envelope-alt + + · + Unicode: f003 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-envelope-alt +
    +
    +
    <i class="icon-envelope-alt"></i> icon-envelope-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/envelope/index.html b/library/font_awesome/src/3.2.1/icon/envelope/index.html new file mode 100644 index 000000000..409ab37b7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/envelope/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-envelope: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-envelope + + · + Unicode: f0e0 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-envelope +
    +
    +
    <i class="icon-envelope"></i> icon-envelope
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/eraser/index.html b/library/font_awesome/src/3.2.1/icon/eraser/index.html new file mode 100644 index 000000000..0850b60c8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/eraser/index.html @@ -0,0 +1,210 @@ + + + + + + + + + + icon-eraser: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-eraser + + · + Unicode: f12d · + Created: v3.1 · + Categories: + + Text Editor Icons, + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-eraser +
    +
    +
    <i class="icon-eraser"></i> icon-eraser
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/eur/index.html b/library/font_awesome/src/3.2.1/icon/eur/index.html new file mode 100644 index 000000000..b3065ca3b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/eur/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-eur: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-eur + + · + Unicode: f153 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-euro + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-eur +
    +
    +
    <i class="icon-eur"></i> icon-eur
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/exchange/index.html b/library/font_awesome/src/3.2.1/icon/exchange/index.html new file mode 100644 index 000000000..aa1ec82be --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/exchange/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-exchange: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-exchange + + · + Unicode: f0ec · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-exchange +
    +
    +
    <i class="icon-exchange"></i> icon-exchange
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html b/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html new file mode 100644 index 000000000..7be7e8352 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-exclamation-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-exclamation-sign + + · + Unicode: f06a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-exclamation-sign +
    +
    +
    <i class="icon-exclamation-sign"></i> icon-exclamation-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/exclamation/index.html b/library/font_awesome/src/3.2.1/icon/exclamation/index.html new file mode 100644 index 000000000..0a0c44077 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/exclamation/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-exclamation: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-exclamation + + · + Unicode: f12a · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-exclamation +
    +
    +
    <i class="icon-exclamation"></i> icon-exclamation
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/expand-alt/index.html b/library/font_awesome/src/3.2.1/icon/expand-alt/index.html new file mode 100644 index 000000000..4ec46254b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/expand-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-expand-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-expand-alt + + · + Unicode: f116 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-expand-alt +
    +
    +
    <i class="icon-expand-alt"></i> icon-expand-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/expand/index.html b/library/font_awesome/src/3.2.1/icon/expand/index.html new file mode 100644 index 000000000..267d332ad --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/expand/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-expand: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-expand + + · + Unicode: f152 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-expand +
    +
    +
    <i class="icon-expand"></i> icon-expand
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html b/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html new file mode 100644 index 000000000..102cb2d0b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-external-link-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-external-link-sign + + · + Unicode: f14c · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-external-link-sign +
    +
    +
    <i class="icon-external-link-sign"></i> icon-external-link-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/external-link/index.html b/library/font_awesome/src/3.2.1/icon/external-link/index.html new file mode 100644 index 000000000..b00cea66e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/external-link/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-external-link: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-external-link + + · + Unicode: f08e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-external-link +
    +
    +
    <i class="icon-external-link"></i> icon-external-link
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/eye-close/index.html b/library/font_awesome/src/3.2.1/icon/eye-close/index.html new file mode 100644 index 000000000..2f09dfd67 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/eye-close/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-eye-close: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-eye-close + + · + Unicode: f070 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-eye-close +
    +
    +
    <i class="icon-eye-close"></i> icon-eye-close
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/eye-open/index.html b/library/font_awesome/src/3.2.1/icon/eye-open/index.html new file mode 100644 index 000000000..cee72d473 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/eye-open/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-eye-open: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-eye-open + + · + Unicode: f06e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-eye-open +
    +
    +
    <i class="icon-eye-open"></i> icon-eye-open
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html b/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html new file mode 100644 index 000000000..ce197d249 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-facebook-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-facebook-sign + + · + Unicode: f082 · + Created: v1.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-facebook-sign +
    +
    +
    <i class="icon-facebook-sign"></i> icon-facebook-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/facebook/index.html b/library/font_awesome/src/3.2.1/icon/facebook/index.html new file mode 100644 index 000000000..8df80427d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/facebook/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-facebook: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-facebook + + · + Unicode: f09a · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-facebook +
    +
    +
    <i class="icon-facebook"></i> icon-facebook
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/facetime-video/index.html b/library/font_awesome/src/3.2.1/icon/facetime-video/index.html new file mode 100644 index 000000000..27a6d4c7e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/facetime-video/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-facetime-video: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-facetime-video + + · + Unicode: f03d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-facetime-video +
    +
    +
    <i class="icon-facetime-video"></i> icon-facetime-video
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fast-backward/index.html b/library/font_awesome/src/3.2.1/icon/fast-backward/index.html new file mode 100644 index 000000000..5def1fdaf --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fast-backward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fast-backward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fast-backward + + · + Unicode: f049 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fast-backward +
    +
    +
    <i class="icon-fast-backward"></i> icon-fast-backward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fast-forward/index.html b/library/font_awesome/src/3.2.1/icon/fast-forward/index.html new file mode 100644 index 000000000..840d1a692 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fast-forward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fast-forward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fast-forward + + · + Unicode: f050 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fast-forward +
    +
    +
    <i class="icon-fast-forward"></i> icon-fast-forward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/female/index.html b/library/font_awesome/src/3.2.1/icon/female/index.html new file mode 100644 index 000000000..d3c12d844 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/female/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-female: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-female + + · + Unicode: f182 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-female +
    +
    +
    <i class="icon-female"></i> icon-female
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html b/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html new file mode 100644 index 000000000..d53371d59 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fighter-jet: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fighter-jet + + · + Unicode: f0fb · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fighter-jet +
    +
    +
    <i class="icon-fighter-jet"></i> icon-fighter-jet
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/file-alt/index.html b/library/font_awesome/src/3.2.1/icon/file-alt/index.html new file mode 100644 index 000000000..f9ce0deb6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/file-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-file-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-file-alt + + · + Unicode: f016 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-file-alt +
    +
    +
    <i class="icon-file-alt"></i> icon-file-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html b/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html new file mode 100644 index 000000000..da1a9850a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-file-text-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-file-text-alt + + · + Unicode: f0f6 · + Created: v3.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-file-text-alt +
    +
    +
    <i class="icon-file-text-alt"></i> icon-file-text-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/file-text/index.html b/library/font_awesome/src/3.2.1/icon/file-text/index.html new file mode 100644 index 000000000..b2dd0fed1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/file-text/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-file-text: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-file-text + + · + Unicode: f15c · + Created: v3.2 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-file-text +
    +
    +
    <i class="icon-file-text"></i> icon-file-text
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/file/index.html b/library/font_awesome/src/3.2.1/icon/file/index.html new file mode 100644 index 000000000..d620d317e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/file/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-file: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-file + + · + Unicode: f15b · + Created: v3.2 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-file +
    +
    +
    <i class="icon-file"></i> icon-file
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/film/index.html b/library/font_awesome/src/3.2.1/icon/film/index.html new file mode 100644 index 000000000..b758a4b7a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/film/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-film: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-film + + · + Unicode: f008 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-film +
    +
    +
    <i class="icon-film"></i> icon-film
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/filter/index.html b/library/font_awesome/src/3.2.1/icon/filter/index.html new file mode 100644 index 000000000..665252ebf --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/filter/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-filter: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-filter + + · + Unicode: f0b0 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-filter +
    +
    +
    <i class="icon-filter"></i> icon-filter
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html b/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html new file mode 100644 index 000000000..45211a6c9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fire-extinguisher: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fire-extinguisher + + · + Unicode: f134 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fire-extinguisher +
    +
    +
    <i class="icon-fire-extinguisher"></i> icon-fire-extinguisher
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fire/index.html b/library/font_awesome/src/3.2.1/icon/fire/index.html new file mode 100644 index 000000000..882a4dee1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fire/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fire: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fire + + · + Unicode: f06d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fire +
    +
    +
    <i class="icon-fire"></i> icon-fire
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/flag-alt/index.html b/library/font_awesome/src/3.2.1/icon/flag-alt/index.html new file mode 100644 index 000000000..839d0c32b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/flag-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-flag-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-flag-alt + + · + Unicode: f11d · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-flag-alt +
    +
    +
    <i class="icon-flag-alt"></i> icon-flag-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html b/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html new file mode 100644 index 000000000..8ec4d2150 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-flag-checkered: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-flag-checkered + + · + Unicode: f11e · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-flag-checkered +
    +
    +
    <i class="icon-flag-checkered"></i> icon-flag-checkered
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/flag/index.html b/library/font_awesome/src/3.2.1/icon/flag/index.html new file mode 100644 index 000000000..f3911091f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/flag/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-flag: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-flag + + · + Unicode: f024 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-flag +
    +
    +
    <i class="icon-flag"></i> icon-flag
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/flickr/index.html b/library/font_awesome/src/3.2.1/icon/flickr/index.html new file mode 100644 index 000000000..87092685d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/flickr/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-flickr: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-flickr + + · + Unicode: f16e · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-flickr +
    +
    +
    <i class="icon-flickr"></i> icon-flickr
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html b/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html new file mode 100644 index 000000000..7856d6583 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-folder-close-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-folder-close-alt + + · + Unicode: f114 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-folder-close-alt +
    +
    +
    <i class="icon-folder-close-alt"></i> icon-folder-close-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/folder-close/index.html b/library/font_awesome/src/3.2.1/icon/folder-close/index.html new file mode 100644 index 000000000..54613825b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/folder-close/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-folder-close: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-folder-close + + · + Unicode: f07b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-folder-close +
    +
    +
    <i class="icon-folder-close"></i> icon-folder-close
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html b/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html new file mode 100644 index 000000000..6af09bb8c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-folder-open-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-folder-open-alt + + · + Unicode: f115 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-folder-open-alt +
    +
    +
    <i class="icon-folder-open-alt"></i> icon-folder-open-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/folder-open/index.html b/library/font_awesome/src/3.2.1/icon/folder-open/index.html new file mode 100644 index 000000000..7c97b1724 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/folder-open/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-folder-open: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-folder-open + + · + Unicode: f07c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-folder-open +
    +
    +
    <i class="icon-folder-open"></i> icon-folder-open
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/font/index.html b/library/font_awesome/src/3.2.1/icon/font/index.html new file mode 100644 index 000000000..9a5f43953 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/font/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-font: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-font + + · + Unicode: f031 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-font +
    +
    +
    <i class="icon-font"></i> icon-font
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/food/index.html b/library/font_awesome/src/3.2.1/icon/food/index.html new file mode 100644 index 000000000..c455da4e2 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/food/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-food: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-food + + · + Unicode: f0f5 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-food +
    +
    +
    <i class="icon-food"></i> icon-food
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/forward/index.html b/library/font_awesome/src/3.2.1/icon/forward/index.html new file mode 100644 index 000000000..cae1db43c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/forward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-forward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-forward + + · + Unicode: f04e · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-forward +
    +
    +
    <i class="icon-forward"></i> icon-forward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/foursquare/index.html b/library/font_awesome/src/3.2.1/icon/foursquare/index.html new file mode 100644 index 000000000..a7c0e2e0d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/foursquare/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-foursquare: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-foursquare + + · + Unicode: f180 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-foursquare +
    +
    +
    <i class="icon-foursquare"></i> icon-foursquare
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/frown/index.html b/library/font_awesome/src/3.2.1/icon/frown/index.html new file mode 100644 index 000000000..9fa1c4032 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/frown/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-frown: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-frown + + · + Unicode: f119 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-frown +
    +
    +
    <i class="icon-frown"></i> icon-frown
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/fullscreen/index.html b/library/font_awesome/src/3.2.1/icon/fullscreen/index.html new file mode 100644 index 000000000..c8dc296d4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/fullscreen/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-fullscreen: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-fullscreen + + · + Unicode: f0b2 · + Created: v2.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-fullscreen +
    +
    +
    <i class="icon-fullscreen"></i> icon-fullscreen
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/gamepad/index.html b/library/font_awesome/src/3.2.1/icon/gamepad/index.html new file mode 100644 index 000000000..b6749231d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/gamepad/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-gamepad: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-gamepad + + · + Unicode: f11b · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-gamepad +
    +
    +
    <i class="icon-gamepad"></i> icon-gamepad
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/gbp/index.html b/library/font_awesome/src/3.2.1/icon/gbp/index.html new file mode 100644 index 000000000..f13fed073 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/gbp/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-gbp: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-gbp + + · + Unicode: f154 · + Created: v3.2 · + Categories: + + Currency Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-gbp +
    +
    +
    <i class="icon-gbp"></i> icon-gbp
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/gift/index.html b/library/font_awesome/src/3.2.1/icon/gift/index.html new file mode 100644 index 000000000..813be301f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/gift/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-gift: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-gift + + · + Unicode: f06b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-gift +
    +
    +
    <i class="icon-gift"></i> icon-gift
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/github-alt/index.html b/library/font_awesome/src/3.2.1/icon/github-alt/index.html new file mode 100644 index 000000000..5efb5c855 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/github-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-github-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-github-alt + + · + Unicode: f113 · + Created: v3.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-github-alt +
    +
    +
    <i class="icon-github-alt"></i> icon-github-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/github-sign/index.html b/library/font_awesome/src/3.2.1/icon/github-sign/index.html new file mode 100644 index 000000000..a56bdb9d8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/github-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-github-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-github-sign + + · + Unicode: f092 · + Created: v1.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-github-sign +
    +
    +
    <i class="icon-github-sign"></i> icon-github-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/github/index.html b/library/font_awesome/src/3.2.1/icon/github/index.html new file mode 100644 index 000000000..99a57e781 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/github/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-github: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-github + + · + Unicode: f09b · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-github +
    +
    +
    <i class="icon-github"></i> icon-github
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/gittip/index.html b/library/font_awesome/src/3.2.1/icon/gittip/index.html new file mode 100644 index 000000000..f60630ea5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/gittip/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-gittip: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-gittip + + · + Unicode: f184 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-gittip +
    +
    +
    <i class="icon-gittip"></i> icon-gittip
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/glass/index.html b/library/font_awesome/src/3.2.1/icon/glass/index.html new file mode 100644 index 000000000..3e07ab7ef --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/glass/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-glass: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-glass + + · + Unicode: f000 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-glass +
    +
    +
    <i class="icon-glass"></i> icon-glass
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/globe/index.html b/library/font_awesome/src/3.2.1/icon/globe/index.html new file mode 100644 index 000000000..d5302b1cf --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/globe/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-globe: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-globe + + · + Unicode: f0ac · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-globe +
    +
    +
    <i class="icon-globe"></i> icon-globe
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html b/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html new file mode 100644 index 000000000..a8629e105 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-google-plus-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-google-plus-sign + + · + Unicode: f0d4 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-google-plus-sign +
    +
    +
    <i class="icon-google-plus-sign"></i> icon-google-plus-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/google-plus/index.html b/library/font_awesome/src/3.2.1/icon/google-plus/index.html new file mode 100644 index 000000000..3370c67bb --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/google-plus/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-google-plus: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-google-plus + + · + Unicode: f0d5 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-google-plus +
    +
    +
    <i class="icon-google-plus"></i> icon-google-plus
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/group/index.html b/library/font_awesome/src/3.2.1/icon/group/index.html new file mode 100644 index 000000000..0e689f76a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/group/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-group: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-group + + · + Unicode: f0c0 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-group +
    +
    +
    <i class="icon-group"></i> icon-group
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/h-sign/index.html b/library/font_awesome/src/3.2.1/icon/h-sign/index.html new file mode 100644 index 000000000..cf445e669 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/h-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-h-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-h-sign + + · + Unicode: f0fd · + Created: v3.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-h-sign +
    +
    +
    <i class="icon-h-sign"></i> icon-h-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hand-down/index.html b/library/font_awesome/src/3.2.1/icon/hand-down/index.html new file mode 100644 index 000000000..4cc230a8d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hand-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hand-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hand-down + + · + Unicode: f0a7 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hand-down +
    +
    +
    <i class="icon-hand-down"></i> icon-hand-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hand-left/index.html b/library/font_awesome/src/3.2.1/icon/hand-left/index.html new file mode 100644 index 000000000..28aa29348 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hand-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hand-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hand-left + + · + Unicode: f0a5 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hand-left +
    +
    +
    <i class="icon-hand-left"></i> icon-hand-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hand-right/index.html b/library/font_awesome/src/3.2.1/icon/hand-right/index.html new file mode 100644 index 000000000..31663d6f1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hand-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hand-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hand-right + + · + Unicode: f0a4 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hand-right +
    +
    +
    <i class="icon-hand-right"></i> icon-hand-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hand-up/index.html b/library/font_awesome/src/3.2.1/icon/hand-up/index.html new file mode 100644 index 000000000..8168f0d3b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hand-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hand-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hand-up + + · + Unicode: f0a6 · + Created: v2.0 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hand-up +
    +
    +
    <i class="icon-hand-up"></i> icon-hand-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hdd/index.html b/library/font_awesome/src/3.2.1/icon/hdd/index.html new file mode 100644 index 000000000..1f58003a0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hdd/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hdd: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hdd + + · + Unicode: f0a0 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hdd +
    +
    +
    <i class="icon-hdd"></i> icon-hdd
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/headphones/index.html b/library/font_awesome/src/3.2.1/icon/headphones/index.html new file mode 100644 index 000000000..b85d941c1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/headphones/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-headphones: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-headphones + + · + Unicode: f025 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-headphones +
    +
    +
    <i class="icon-headphones"></i> icon-headphones
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/heart-empty/index.html b/library/font_awesome/src/3.2.1/icon/heart-empty/index.html new file mode 100644 index 000000000..4d2166a4f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/heart-empty/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-heart-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-heart-empty + + · + Unicode: f08a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-heart-empty +
    +
    +
    <i class="icon-heart-empty"></i> icon-heart-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/heart/index.html b/library/font_awesome/src/3.2.1/icon/heart/index.html new file mode 100644 index 000000000..3da9fbda0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/heart/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-heart: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-heart + + · + Unicode: f004 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-heart +
    +
    +
    <i class="icon-heart"></i> icon-heart
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/home/index.html b/library/font_awesome/src/3.2.1/icon/home/index.html new file mode 100644 index 000000000..04ea6e624 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/home/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-home: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-home + + · + Unicode: f015 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-home +
    +
    +
    <i class="icon-home"></i> icon-home
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/hospital/index.html b/library/font_awesome/src/3.2.1/icon/hospital/index.html new file mode 100644 index 000000000..184e62a30 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/hospital/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-hospital: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-hospital + + · + Unicode: f0f8 · + Created: v3.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-hospital +
    +
    +
    <i class="icon-hospital"></i> icon-hospital
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/html5/index.html b/library/font_awesome/src/3.2.1/icon/html5/index.html new file mode 100644 index 000000000..d61430de9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/html5/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-html5: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-html5 + + · + Unicode: f13b · + Created: v3.1 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-html5 +
    +
    +
    <i class="icon-html5"></i> icon-html5
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/inbox/index.html b/library/font_awesome/src/3.2.1/icon/inbox/index.html new file mode 100644 index 000000000..8913a224e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/inbox/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-inbox: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-inbox + + · + Unicode: f01c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-inbox +
    +
    +
    <i class="icon-inbox"></i> icon-inbox
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/indent-left/index.html b/library/font_awesome/src/3.2.1/icon/indent-left/index.html new file mode 100644 index 000000000..c1b0d133f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/indent-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-indent-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-indent-left + + · + Unicode: f03b · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-indent-left +
    +
    +
    <i class="icon-indent-left"></i> icon-indent-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/indent-right/index.html b/library/font_awesome/src/3.2.1/icon/indent-right/index.html new file mode 100644 index 000000000..93978a7ab --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/indent-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-indent-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-indent-right + + · + Unicode: f03c · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-indent-right +
    +
    +
    <i class="icon-indent-right"></i> icon-indent-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/info-sign/index.html b/library/font_awesome/src/3.2.1/icon/info-sign/index.html new file mode 100644 index 000000000..05069266d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/info-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-info-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-info-sign + + · + Unicode: f05a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-info-sign +
    +
    +
    <i class="icon-info-sign"></i> icon-info-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/info/index.html b/library/font_awesome/src/3.2.1/icon/info/index.html new file mode 100644 index 000000000..cb9096c26 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/info/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-info: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-info + + · + Unicode: f129 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-info +
    +
    +
    <i class="icon-info"></i> icon-info
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/inr/index.html b/library/font_awesome/src/3.2.1/icon/inr/index.html new file mode 100644 index 000000000..7474f9582 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/inr/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-inr: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-inr + + · + Unicode: f156 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-rupee + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-inr +
    +
    +
    <i class="icon-inr"></i> icon-inr
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/instagram/index.html b/library/font_awesome/src/3.2.1/icon/instagram/index.html new file mode 100644 index 000000000..b1db62396 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/instagram/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-instagram: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-instagram + + · + Unicode: f16d · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-instagram +
    +
    +
    <i class="icon-instagram"></i> icon-instagram
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/italic/index.html b/library/font_awesome/src/3.2.1/icon/italic/index.html new file mode 100644 index 000000000..c91237791 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/italic/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-italic: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-italic + + · + Unicode: f033 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-italic +
    +
    +
    <i class="icon-italic"></i> icon-italic
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/jpy/index.html b/library/font_awesome/src/3.2.1/icon/jpy/index.html new file mode 100644 index 000000000..128770129 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/jpy/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-jpy: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-jpy + + · + Unicode: f157 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-yen + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-jpy +
    +
    +
    <i class="icon-jpy"></i> icon-jpy
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/key/index.html b/library/font_awesome/src/3.2.1/icon/key/index.html new file mode 100644 index 000000000..ef3573e3f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/key/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-key: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-key + + · + Unicode: f084 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-key +
    +
    +
    <i class="icon-key"></i> icon-key
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/keyboard/index.html b/library/font_awesome/src/3.2.1/icon/keyboard/index.html new file mode 100644 index 000000000..084f2d173 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/keyboard/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-keyboard: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-keyboard + + · + Unicode: f11c · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-keyboard +
    +
    +
    <i class="icon-keyboard"></i> icon-keyboard
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/krw/index.html b/library/font_awesome/src/3.2.1/icon/krw/index.html new file mode 100644 index 000000000..902411891 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/krw/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-krw: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-krw + + · + Unicode: f159 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-won + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-krw +
    +
    +
    <i class="icon-krw"></i> icon-krw
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/laptop/index.html b/library/font_awesome/src/3.2.1/icon/laptop/index.html new file mode 100644 index 000000000..2be4f34f9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/laptop/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-laptop: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-laptop + + · + Unicode: f109 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-laptop +
    +
    +
    <i class="icon-laptop"></i> icon-laptop
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/leaf/index.html b/library/font_awesome/src/3.2.1/icon/leaf/index.html new file mode 100644 index 000000000..1d9bff360 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/leaf/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-leaf: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-leaf + + · + Unicode: f06c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-leaf +
    +
    +
    <i class="icon-leaf"></i> icon-leaf
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/legal/index.html b/library/font_awesome/src/3.2.1/icon/legal/index.html new file mode 100644 index 000000000..9ac9ca2af --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/legal/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-legal: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-legal + + · + Unicode: f0e3 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-legal +
    +
    +
    <i class="icon-legal"></i> icon-legal
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/lemon/index.html b/library/font_awesome/src/3.2.1/icon/lemon/index.html new file mode 100644 index 000000000..3072c5a20 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/lemon/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-lemon: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-lemon + + · + Unicode: f094 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-lemon +
    +
    +
    <i class="icon-lemon"></i> icon-lemon
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/level-down/index.html b/library/font_awesome/src/3.2.1/icon/level-down/index.html new file mode 100644 index 000000000..32beec6dd --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/level-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-level-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-level-down + + · + Unicode: f149 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-level-down +
    +
    +
    <i class="icon-level-down"></i> icon-level-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/level-up/index.html b/library/font_awesome/src/3.2.1/icon/level-up/index.html new file mode 100644 index 000000000..4a1b1dfea --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/level-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-level-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-level-up + + · + Unicode: f148 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-level-up +
    +
    +
    <i class="icon-level-up"></i> icon-level-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/lightbulb/index.html b/library/font_awesome/src/3.2.1/icon/lightbulb/index.html new file mode 100644 index 000000000..c7eda03e9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/lightbulb/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-lightbulb: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-lightbulb + + · + Unicode: f0eb · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-lightbulb +
    +
    +
    <i class="icon-lightbulb"></i> icon-lightbulb
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/link/index.html b/library/font_awesome/src/3.2.1/icon/link/index.html new file mode 100644 index 000000000..9e056532b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/link/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-link: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-link + + · + Unicode: f0c1 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-link +
    +
    +
    <i class="icon-link"></i> icon-link
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html b/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html new file mode 100644 index 000000000..1fa213997 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-linkedin-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-linkedin-sign + + · + Unicode: f08c · + Created: v1.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-linkedin-sign +
    +
    +
    <i class="icon-linkedin-sign"></i> icon-linkedin-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/linkedin/index.html b/library/font_awesome/src/3.2.1/icon/linkedin/index.html new file mode 100644 index 000000000..bd43ade8a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/linkedin/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-linkedin: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-linkedin + + · + Unicode: f0e1 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-linkedin +
    +
    +
    <i class="icon-linkedin"></i> icon-linkedin
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/linux/index.html b/library/font_awesome/src/3.2.1/icon/linux/index.html new file mode 100644 index 000000000..bfac729d5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/linux/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-linux: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-linux + + · + Unicode: f17c · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-linux +
    +
    +
    <i class="icon-linux"></i> icon-linux
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/list-alt/index.html b/library/font_awesome/src/3.2.1/icon/list-alt/index.html new file mode 100644 index 000000000..2dfcff0de --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/list-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-list-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-list-alt + + · + Unicode: f022 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-list-alt +
    +
    +
    <i class="icon-list-alt"></i> icon-list-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/list-ol/index.html b/library/font_awesome/src/3.2.1/icon/list-ol/index.html new file mode 100644 index 000000000..ad4a78f98 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/list-ol/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-list-ol: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-list-ol + + · + Unicode: f0cb · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-list-ol +
    +
    +
    <i class="icon-list-ol"></i> icon-list-ol
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/list-ul/index.html b/library/font_awesome/src/3.2.1/icon/list-ul/index.html new file mode 100644 index 000000000..18a7e8c5a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/list-ul/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-list-ul: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-list-ul + + · + Unicode: f0ca · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-list-ul +
    +
    +
    <i class="icon-list-ul"></i> icon-list-ul
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/list/index.html b/library/font_awesome/src/3.2.1/icon/list/index.html new file mode 100644 index 000000000..86b46f4f1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/list/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-list: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-list + + · + Unicode: f03a · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-list +
    +
    +
    <i class="icon-list"></i> icon-list
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/location-arrow/index.html b/library/font_awesome/src/3.2.1/icon/location-arrow/index.html new file mode 100644 index 000000000..02a3c43ae --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/location-arrow/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-location-arrow: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-location-arrow + + · + Unicode: f124 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-location-arrow +
    +
    +
    <i class="icon-location-arrow"></i> icon-location-arrow
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/lock/index.html b/library/font_awesome/src/3.2.1/icon/lock/index.html new file mode 100644 index 000000000..c64ffe12f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/lock/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-lock: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-lock + + · + Unicode: f023 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-lock +
    +
    +
    <i class="icon-lock"></i> icon-lock
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html new file mode 100644 index 000000000..84d3e00f9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-long-arrow-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-long-arrow-down + + · + Unicode: f175 · + Created: v3.2 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-long-arrow-down +
    +
    +
    <i class="icon-long-arrow-down"></i> icon-long-arrow-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html new file mode 100644 index 000000000..b49665c0d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-long-arrow-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-long-arrow-left + + · + Unicode: f177 · + Created: v3.2 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-long-arrow-left +
    +
    +
    <i class="icon-long-arrow-left"></i> icon-long-arrow-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html new file mode 100644 index 000000000..a5d5a98e0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-long-arrow-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-long-arrow-right + + · + Unicode: f178 · + Created: v3.2 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-long-arrow-right +
    +
    +
    <i class="icon-long-arrow-right"></i> icon-long-arrow-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html new file mode 100644 index 000000000..fa1985e59 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-long-arrow-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-long-arrow-up + + · + Unicode: f176 · + Created: v3.2 · + Categories: + + Directional Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-long-arrow-up +
    +
    +
    <i class="icon-long-arrow-up"></i> icon-long-arrow-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/magic/index.html b/library/font_awesome/src/3.2.1/icon/magic/index.html new file mode 100644 index 000000000..ffd1995e6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/magic/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-magic: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-magic + + · + Unicode: f0d0 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-magic +
    +
    +
    <i class="icon-magic"></i> icon-magic
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/magnet/index.html b/library/font_awesome/src/3.2.1/icon/magnet/index.html new file mode 100644 index 000000000..669379bc1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/magnet/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-magnet: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-magnet + + · + Unicode: f076 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-magnet +
    +
    +
    <i class="icon-magnet"></i> icon-magnet
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html b/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html new file mode 100644 index 000000000..1a8dc0f15 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-mail-reply-all: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-mail-reply-all + + · + Unicode: f122 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-mail-reply-all +
    +
    +
    <i class="icon-mail-reply-all"></i> icon-mail-reply-all
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/male/index.html b/library/font_awesome/src/3.2.1/icon/male/index.html new file mode 100644 index 000000000..ffc56809c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/male/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-male: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-male + + · + Unicode: f183 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-male +
    +
    +
    <i class="icon-male"></i> icon-male
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/map-marker/index.html b/library/font_awesome/src/3.2.1/icon/map-marker/index.html new file mode 100644 index 000000000..a6a54e4aa --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/map-marker/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-map-marker: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-map-marker + + · + Unicode: f041 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-map-marker +
    +
    +
    <i class="icon-map-marker"></i> icon-map-marker
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/maxcdn/index.html b/library/font_awesome/src/3.2.1/icon/maxcdn/index.html new file mode 100644 index 000000000..ce1490825 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/maxcdn/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-maxcdn: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-maxcdn + + · + Unicode: f136 · + Created: v3.1 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-maxcdn +
    +
    +
    <i class="icon-maxcdn"></i> icon-maxcdn
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/medkit/index.html b/library/font_awesome/src/3.2.1/icon/medkit/index.html new file mode 100644 index 000000000..954ce242e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/medkit/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-medkit: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-medkit + + · + Unicode: f0fa · + Created: v3.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-medkit +
    +
    +
    <i class="icon-medkit"></i> icon-medkit
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/meh/index.html b/library/font_awesome/src/3.2.1/icon/meh/index.html new file mode 100644 index 000000000..e344e19de --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/meh/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-meh: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-meh + + · + Unicode: f11a · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-meh +
    +
    +
    <i class="icon-meh"></i> icon-meh
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/microphone-off/index.html b/library/font_awesome/src/3.2.1/icon/microphone-off/index.html new file mode 100644 index 000000000..2201b4e7c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/microphone-off/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-microphone-off: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-microphone-off + + · + Unicode: f131 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-microphone-off +
    +
    +
    <i class="icon-microphone-off"></i> icon-microphone-off
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/microphone/index.html b/library/font_awesome/src/3.2.1/icon/microphone/index.html new file mode 100644 index 000000000..fe900f56f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/microphone/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-microphone: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-microphone + + · + Unicode: f130 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-microphone +
    +
    +
    <i class="icon-microphone"></i> icon-microphone
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html b/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html new file mode 100644 index 000000000..0b6339059 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-minus-sign-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-minus-sign-alt + + · + Unicode: f146 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-minus-sign-alt +
    +
    +
    <i class="icon-minus-sign-alt"></i> icon-minus-sign-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/minus-sign/index.html b/library/font_awesome/src/3.2.1/icon/minus-sign/index.html new file mode 100644 index 000000000..e02c1d88a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/minus-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-minus-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-minus-sign + + · + Unicode: f056 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-minus-sign +
    +
    +
    <i class="icon-minus-sign"></i> icon-minus-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/minus/index.html b/library/font_awesome/src/3.2.1/icon/minus/index.html new file mode 100644 index 000000000..c5bdf8887 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/minus/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-minus: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-minus + + · + Unicode: f068 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-minus +
    +
    +
    <i class="icon-minus"></i> icon-minus
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html b/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html new file mode 100644 index 000000000..26a6ddf65 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-mobile-phone: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-mobile-phone + + · + Unicode: f10b · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-mobile-phone +
    +
    +
    <i class="icon-mobile-phone"></i> icon-mobile-phone
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/money/index.html b/library/font_awesome/src/3.2.1/icon/money/index.html new file mode 100644 index 000000000..268b62d77 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/money/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-money: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-money + + · + Unicode: f0d6 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-money +
    +
    +
    <i class="icon-money"></i> icon-money
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/moon/index.html b/library/font_awesome/src/3.2.1/icon/moon/index.html new file mode 100644 index 000000000..de8e99b19 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/moon/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-moon: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-moon + + · + Unicode: f186 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-moon +
    +
    +
    <i class="icon-moon"></i> icon-moon
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/move/index.html b/library/font_awesome/src/3.2.1/icon/move/index.html new file mode 100644 index 000000000..6d34735a9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/move/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-move: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-move + + · + Unicode: f047 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-move +
    +
    +
    <i class="icon-move"></i> icon-move
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/music/index.html b/library/font_awesome/src/3.2.1/icon/music/index.html new file mode 100644 index 000000000..79464c5a5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/music/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-music: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-music + + · + Unicode: f001 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-music +
    +
    +
    <i class="icon-music"></i> icon-music
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/off/index.html b/library/font_awesome/src/3.2.1/icon/off/index.html new file mode 100644 index 000000000..7a6b1ff99 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/off/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-off: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-off + + · + Unicode: f011 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-power-off + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-off +
    +
    +
    <i class="icon-off"></i> icon-off
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ok-circle/index.html b/library/font_awesome/src/3.2.1/icon/ok-circle/index.html new file mode 100644 index 000000000..4983c67f6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ok-circle/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ok-circle: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ok-circle + + · + Unicode: f05d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ok-circle +
    +
    +
    <i class="icon-ok-circle"></i> icon-ok-circle
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ok-sign/index.html b/library/font_awesome/src/3.2.1/icon/ok-sign/index.html new file mode 100644 index 000000000..4b256c138 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ok-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ok-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ok-sign + + · + Unicode: f058 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ok-sign +
    +
    +
    <i class="icon-ok-sign"></i> icon-ok-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ok/index.html b/library/font_awesome/src/3.2.1/icon/ok/index.html new file mode 100644 index 000000000..dd095945b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ok/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ok: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ok + + · + Unicode: f00c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ok +
    +
    +
    <i class="icon-ok"></i> icon-ok
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/paper-clip/index.html b/library/font_awesome/src/3.2.1/icon/paper-clip/index.html new file mode 100644 index 000000000..ff213c7a7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/paper-clip/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-paper-clip: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-paper-clip + + · + Unicode: f0c6 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + · Aliases: + + icon-paperclip + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-paper-clip +
    +
    +
    <i class="icon-paper-clip"></i> icon-paper-clip
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/paste/index.html b/library/font_awesome/src/3.2.1/icon/paste/index.html new file mode 100644 index 000000000..9389aa15a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/paste/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-paste: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-paste + + · + Unicode: f0ea · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-paste +
    +
    +
    <i class="icon-paste"></i> icon-paste
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/pause/index.html b/library/font_awesome/src/3.2.1/icon/pause/index.html new file mode 100644 index 000000000..35c7fbfb1 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/pause/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-pause: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-pause + + · + Unicode: f04c · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-pause +
    +
    +
    <i class="icon-pause"></i> icon-pause
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/pencil/index.html b/library/font_awesome/src/3.2.1/icon/pencil/index.html new file mode 100644 index 000000000..4209b1a9d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/pencil/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-pencil: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-pencil + + · + Unicode: f040 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-pencil +
    +
    +
    <i class="icon-pencil"></i> icon-pencil
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/phone-sign/index.html b/library/font_awesome/src/3.2.1/icon/phone-sign/index.html new file mode 100644 index 000000000..3d60922c3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/phone-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-phone-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-phone-sign + + · + Unicode: f098 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-phone-sign +
    +
    +
    <i class="icon-phone-sign"></i> icon-phone-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/phone/index.html b/library/font_awesome/src/3.2.1/icon/phone/index.html new file mode 100644 index 000000000..b37897e44 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/phone/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-phone: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-phone + + · + Unicode: f095 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-phone +
    +
    +
    <i class="icon-phone"></i> icon-phone
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/picture/index.html b/library/font_awesome/src/3.2.1/icon/picture/index.html new file mode 100644 index 000000000..35cd2ea93 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/picture/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-picture: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-picture + + · + Unicode: f03e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-picture +
    +
    +
    <i class="icon-picture"></i> icon-picture
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html b/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html new file mode 100644 index 000000000..0ab362e3d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-pinterest-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-pinterest-sign + + · + Unicode: f0d3 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-pinterest-sign +
    +
    +
    <i class="icon-pinterest-sign"></i> icon-pinterest-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/pinterest/index.html b/library/font_awesome/src/3.2.1/icon/pinterest/index.html new file mode 100644 index 000000000..557e94e8b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/pinterest/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-pinterest: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-pinterest + + · + Unicode: f0d2 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-pinterest +
    +
    +
    <i class="icon-pinterest"></i> icon-pinterest
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/plane/index.html b/library/font_awesome/src/3.2.1/icon/plane/index.html new file mode 100644 index 000000000..1543b9367 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/plane/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-plane: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-plane + + · + Unicode: f072 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-plane +
    +
    +
    <i class="icon-plane"></i> icon-plane
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/play-circle/index.html b/library/font_awesome/src/3.2.1/icon/play-circle/index.html new file mode 100644 index 000000000..78d958d29 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/play-circle/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-play-circle: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-play-circle + + · + Unicode: f01d · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-play-circle +
    +
    +
    <i class="icon-play-circle"></i> icon-play-circle
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/play-sign/index.html b/library/font_awesome/src/3.2.1/icon/play-sign/index.html new file mode 100644 index 000000000..777a8c892 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/play-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-play-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-play-sign + + · + Unicode: f144 · + Created: v3.1 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-play-sign +
    +
    +
    <i class="icon-play-sign"></i> icon-play-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/play/index.html b/library/font_awesome/src/3.2.1/icon/play/index.html new file mode 100644 index 000000000..1af20b77b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/play/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-play: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-play + + · + Unicode: f04b · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-play +
    +
    +
    <i class="icon-play"></i> icon-play
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html b/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html new file mode 100644 index 000000000..6feba6d7e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html @@ -0,0 +1,210 @@ + + + + + + + + + + icon-plus-sign-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-plus-sign-alt + + · + Unicode: f0fe · + Created: v3.0 · + Categories: + + Medical Icons, + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-plus-sign-alt +
    +
    +
    <i class="icon-plus-sign-alt"></i> icon-plus-sign-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/plus-sign/index.html b/library/font_awesome/src/3.2.1/icon/plus-sign/index.html new file mode 100644 index 000000000..dd43bdc85 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/plus-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-plus-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-plus-sign + + · + Unicode: f055 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-plus-sign +
    +
    +
    <i class="icon-plus-sign"></i> icon-plus-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/plus/index.html b/library/font_awesome/src/3.2.1/icon/plus/index.html new file mode 100644 index 000000000..dd2e93167 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/plus/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-plus: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-plus + + · + Unicode: f067 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-plus +
    +
    +
    <i class="icon-plus"></i> icon-plus
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/print/index.html b/library/font_awesome/src/3.2.1/icon/print/index.html new file mode 100644 index 000000000..01423d36a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/print/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-print: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-print + + · + Unicode: f02f · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-print +
    +
    +
    <i class="icon-print"></i> icon-print
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/pushpin/index.html b/library/font_awesome/src/3.2.1/icon/pushpin/index.html new file mode 100644 index 000000000..e7c84fed8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/pushpin/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-pushpin: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-pushpin + + · + Unicode: f08d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-pushpin +
    +
    +
    <i class="icon-pushpin"></i> icon-pushpin
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html b/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html new file mode 100644 index 000000000..aa4aa9e6f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-puzzle-piece: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-puzzle-piece + + · + Unicode: f12e · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-puzzle-piece +
    +
    +
    <i class="icon-puzzle-piece"></i> icon-puzzle-piece
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/qrcode/index.html b/library/font_awesome/src/3.2.1/icon/qrcode/index.html new file mode 100644 index 000000000..edb87cfd6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/qrcode/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-qrcode: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-qrcode + + · + Unicode: f029 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-qrcode +
    +
    +
    <i class="icon-qrcode"></i> icon-qrcode
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/question-sign/index.html b/library/font_awesome/src/3.2.1/icon/question-sign/index.html new file mode 100644 index 000000000..3565fe1ce --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/question-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-question-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-question-sign + + · + Unicode: f059 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-question-sign +
    +
    +
    <i class="icon-question-sign"></i> icon-question-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/question/index.html b/library/font_awesome/src/3.2.1/icon/question/index.html new file mode 100644 index 000000000..4c9642f16 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/question/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-question: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-question + + · + Unicode: f128 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-question +
    +
    +
    <i class="icon-question"></i> icon-question
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/quote-left/index.html b/library/font_awesome/src/3.2.1/icon/quote-left/index.html new file mode 100644 index 000000000..f5801a726 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/quote-left/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-quote-left: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-quote-left + + · + Unicode: f10d · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-quote-left +
    +
    +
    <i class="icon-quote-left"></i> icon-quote-left
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/quote-right/index.html b/library/font_awesome/src/3.2.1/icon/quote-right/index.html new file mode 100644 index 000000000..d86492ddc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/quote-right/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-quote-right: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-quote-right + + · + Unicode: f10e · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-quote-right +
    +
    +
    <i class="icon-quote-right"></i> icon-quote-right
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/random/index.html b/library/font_awesome/src/3.2.1/icon/random/index.html new file mode 100644 index 000000000..ecea8f077 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/random/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-random: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-random + + · + Unicode: f074 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-random +
    +
    +
    <i class="icon-random"></i> icon-random
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/refresh/index.html b/library/font_awesome/src/3.2.1/icon/refresh/index.html new file mode 100644 index 000000000..0ea53e72a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/refresh/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-refresh: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-refresh + + · + Unicode: f021 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-refresh +
    +
    +
    <i class="icon-refresh"></i> icon-refresh
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/remove-circle/index.html b/library/font_awesome/src/3.2.1/icon/remove-circle/index.html new file mode 100644 index 000000000..5ccd832b3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/remove-circle/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-remove-circle: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-remove-circle + + · + Unicode: f05c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-remove-circle +
    +
    +
    <i class="icon-remove-circle"></i> icon-remove-circle
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/remove-sign/index.html b/library/font_awesome/src/3.2.1/icon/remove-sign/index.html new file mode 100644 index 000000000..e20bda87b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/remove-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-remove-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-remove-sign + + · + Unicode: f057 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-remove-sign +
    +
    +
    <i class="icon-remove-sign"></i> icon-remove-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/remove/index.html b/library/font_awesome/src/3.2.1/icon/remove/index.html new file mode 100644 index 000000000..5b70894cd --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/remove/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-remove: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-remove + + · + Unicode: f00d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-remove +
    +
    +
    <i class="icon-remove"></i> icon-remove
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/renren/index.html b/library/font_awesome/src/3.2.1/icon/renren/index.html new file mode 100644 index 000000000..d549c17d0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/renren/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-renren: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-renren + + · + Unicode: f18b · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-renren +
    +
    +
    <i class="icon-renren"></i> icon-renren
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/reorder/index.html b/library/font_awesome/src/3.2.1/icon/reorder/index.html new file mode 100644 index 000000000..6e87cbd72 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/reorder/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-reorder: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-reorder + + · + Unicode: f0c9 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-reorder +
    +
    +
    <i class="icon-reorder"></i> icon-reorder
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/repeat/index.html b/library/font_awesome/src/3.2.1/icon/repeat/index.html new file mode 100644 index 000000000..78b074fa5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/repeat/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-repeat: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-repeat + + · + Unicode: f01e · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + · Aliases: + + icon-rotate-right + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-repeat +
    +
    +
    <i class="icon-repeat"></i> icon-repeat
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/reply-all/index.html b/library/font_awesome/src/3.2.1/icon/reply-all/index.html new file mode 100644 index 000000000..2a9e117a7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/reply-all/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-reply-all: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-reply-all + + · + Unicode: f122 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-reply-all +
    +
    +
    <i class="icon-reply-all"></i> icon-reply-all
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/reply/index.html b/library/font_awesome/src/3.2.1/icon/reply/index.html new file mode 100644 index 000000000..d1da772ee --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/reply/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-reply: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-reply + + · + Unicode: f112 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-mail-reply + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-reply +
    +
    +
    <i class="icon-reply"></i> icon-reply
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/resize-full/index.html b/library/font_awesome/src/3.2.1/icon/resize-full/index.html new file mode 100644 index 000000000..fe78c6d5a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/resize-full/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-resize-full: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-resize-full + + · + Unicode: f065 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-resize-full +
    +
    +
    <i class="icon-resize-full"></i> icon-resize-full
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html b/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html new file mode 100644 index 000000000..2e5518d98 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-resize-horizontal: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-resize-horizontal + + · + Unicode: f07e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-resize-horizontal +
    +
    +
    <i class="icon-resize-horizontal"></i> icon-resize-horizontal
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/resize-small/index.html b/library/font_awesome/src/3.2.1/icon/resize-small/index.html new file mode 100644 index 000000000..53ff95709 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/resize-small/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-resize-small: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-resize-small + + · + Unicode: f066 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-resize-small +
    +
    +
    <i class="icon-resize-small"></i> icon-resize-small
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html b/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html new file mode 100644 index 000000000..d90512929 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-resize-vertical: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-resize-vertical + + · + Unicode: f07d · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-resize-vertical +
    +
    +
    <i class="icon-resize-vertical"></i> icon-resize-vertical
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/retweet/index.html b/library/font_awesome/src/3.2.1/icon/retweet/index.html new file mode 100644 index 000000000..49c0c051d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/retweet/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-retweet: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-retweet + + · + Unicode: f079 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-retweet +
    +
    +
    <i class="icon-retweet"></i> icon-retweet
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/road/index.html b/library/font_awesome/src/3.2.1/icon/road/index.html new file mode 100644 index 000000000..11b722737 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/road/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-road: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-road + + · + Unicode: f018 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-road +
    +
    +
    <i class="icon-road"></i> icon-road
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/rocket/index.html b/library/font_awesome/src/3.2.1/icon/rocket/index.html new file mode 100644 index 000000000..7e8feb6d5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/rocket/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-rocket: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-rocket + + · + Unicode: f135 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-rocket +
    +
    +
    <i class="icon-rocket"></i> icon-rocket
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/rss-sign/index.html b/library/font_awesome/src/3.2.1/icon/rss-sign/index.html new file mode 100644 index 000000000..fb0e23691 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/rss-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-rss-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-rss-sign + + · + Unicode: f143 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-rss-sign +
    +
    +
    <i class="icon-rss-sign"></i> icon-rss-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/rss/index.html b/library/font_awesome/src/3.2.1/icon/rss/index.html new file mode 100644 index 000000000..b461d6712 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/rss/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-rss: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-rss + + · + Unicode: f09e · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-rss +
    +
    +
    <i class="icon-rss"></i> icon-rss
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/save/index.html b/library/font_awesome/src/3.2.1/icon/save/index.html new file mode 100644 index 000000000..eef9f72fc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/save/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-save: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-save + + · + Unicode: f0c7 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-save +
    +
    +
    <i class="icon-save"></i> icon-save
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/screenshot/index.html b/library/font_awesome/src/3.2.1/icon/screenshot/index.html new file mode 100644 index 000000000..7d58b8985 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/screenshot/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-screenshot: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-screenshot + + · + Unicode: f05b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-screenshot +
    +
    +
    <i class="icon-screenshot"></i> icon-screenshot
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/search/index.html b/library/font_awesome/src/3.2.1/icon/search/index.html new file mode 100644 index 000000000..89e4121d4 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/search/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-search: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-search + + · + Unicode: f002 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-search +
    +
    +
    <i class="icon-search"></i> icon-search
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/share-alt/index.html b/library/font_awesome/src/3.2.1/icon/share-alt/index.html new file mode 100644 index 000000000..34487dac7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/share-alt/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-share-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-share-alt + + · + Unicode: f064 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-mail-forward + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-share-alt +
    +
    +
    <i class="icon-share-alt"></i> icon-share-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/share-sign/index.html b/library/font_awesome/src/3.2.1/icon/share-sign/index.html new file mode 100644 index 000000000..bc2fa62ee --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/share-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-share-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-share-sign + + · + Unicode: f14d · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-share-sign +
    +
    +
    <i class="icon-share-sign"></i> icon-share-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/share/index.html b/library/font_awesome/src/3.2.1/icon/share/index.html new file mode 100644 index 000000000..5065e37f6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/share/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-share: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-share + + · + Unicode: f045 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-share +
    +
    +
    <i class="icon-share"></i> icon-share
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/shield/index.html b/library/font_awesome/src/3.2.1/icon/shield/index.html new file mode 100644 index 000000000..1c8cfc738 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/shield/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-shield: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-shield + + · + Unicode: f132 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-shield +
    +
    +
    <i class="icon-shield"></i> icon-shield
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html b/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html new file mode 100644 index 000000000..62eb1b462 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-shopping-cart: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-shopping-cart + + · + Unicode: f07a · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-shopping-cart +
    +
    +
    <i class="icon-shopping-cart"></i> icon-shopping-cart
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sign-blank/index.html b/library/font_awesome/src/3.2.1/icon/sign-blank/index.html new file mode 100644 index 000000000..105a6b760 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sign-blank/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sign-blank: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sign-blank + + · + Unicode: f0c8 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sign-blank +
    +
    +
    <i class="icon-sign-blank"></i> icon-sign-blank
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/signal/index.html b/library/font_awesome/src/3.2.1/icon/signal/index.html new file mode 100644 index 000000000..90a065df3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/signal/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-signal: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-signal + + · + Unicode: f012 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-signal +
    +
    +
    <i class="icon-signal"></i> icon-signal
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/signin/index.html b/library/font_awesome/src/3.2.1/icon/signin/index.html new file mode 100644 index 000000000..dce861178 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/signin/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-signin: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-signin + + · + Unicode: f090 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-signin +
    +
    +
    <i class="icon-signin"></i> icon-signin
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/signout/index.html b/library/font_awesome/src/3.2.1/icon/signout/index.html new file mode 100644 index 000000000..ff4999460 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/signout/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-signout: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-signout + + · + Unicode: f08b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-signout +
    +
    +
    <i class="icon-signout"></i> icon-signout
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sitemap/index.html b/library/font_awesome/src/3.2.1/icon/sitemap/index.html new file mode 100644 index 000000000..4cc279994 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sitemap/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sitemap: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sitemap + + · + Unicode: f0e8 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sitemap +
    +
    +
    <i class="icon-sitemap"></i> icon-sitemap
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/skype/index.html b/library/font_awesome/src/3.2.1/icon/skype/index.html new file mode 100644 index 000000000..68b975feb --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/skype/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-skype: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-skype + + · + Unicode: f17e · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-skype +
    +
    +
    <i class="icon-skype"></i> icon-skype
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/smile/index.html b/library/font_awesome/src/3.2.1/icon/smile/index.html new file mode 100644 index 000000000..935e0be8b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/smile/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-smile: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-smile + + · + Unicode: f118 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-smile +
    +
    +
    <i class="icon-smile"></i> icon-smile
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html new file mode 100644 index 000000000..acb7c86e5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-alphabet-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-alphabet-alt + + · + Unicode: f15e · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-alphabet-alt +
    +
    +
    <i class="icon-sort-by-alphabet-alt"></i> icon-sort-by-alphabet-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html new file mode 100644 index 000000000..293cb18f9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-alphabet: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-alphabet + + · + Unicode: f15d · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-alphabet +
    +
    +
    <i class="icon-sort-by-alphabet"></i> icon-sort-by-alphabet
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html new file mode 100644 index 000000000..680bea787 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-attributes-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-attributes-alt + + · + Unicode: f161 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-attributes-alt +
    +
    +
    <i class="icon-sort-by-attributes-alt"></i> icon-sort-by-attributes-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html new file mode 100644 index 000000000..e91164ccf --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-attributes: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-attributes + + · + Unicode: f160 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-attributes +
    +
    +
    <i class="icon-sort-by-attributes"></i> icon-sort-by-attributes
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html new file mode 100644 index 000000000..ca0029d7e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-order-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-order-alt + + · + Unicode: f163 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-order-alt +
    +
    +
    <i class="icon-sort-by-order-alt"></i> icon-sort-by-order-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html new file mode 100644 index 000000000..cfd4f84ee --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-by-order: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-by-order + + · + Unicode: f162 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-by-order +
    +
    +
    <i class="icon-sort-by-order"></i> icon-sort-by-order
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-down/index.html b/library/font_awesome/src/3.2.1/icon/sort-down/index.html new file mode 100644 index 000000000..4f4271609 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-down + + · + Unicode: f0dd · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-down +
    +
    +
    <i class="icon-sort-down"></i> icon-sort-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort-up/index.html b/library/font_awesome/src/3.2.1/icon/sort-up/index.html new file mode 100644 index 000000000..1d0540f63 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort-up + + · + Unicode: f0de · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort-up +
    +
    +
    <i class="icon-sort-up"></i> icon-sort-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sort/index.html b/library/font_awesome/src/3.2.1/icon/sort/index.html new file mode 100644 index 000000000..67b87cd42 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sort/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sort: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sort + + · + Unicode: f0dc · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sort +
    +
    +
    <i class="icon-sort"></i> icon-sort
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/spinner/index.html b/library/font_awesome/src/3.2.1/icon/spinner/index.html new file mode 100644 index 000000000..8fd7bf836 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/spinner/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-spinner: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-spinner + + · + Unicode: f110 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-spinner +
    +
    +
    <i class="icon-spinner"></i> icon-spinner
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/stackexchange/index.html b/library/font_awesome/src/3.2.1/icon/stackexchange/index.html new file mode 100644 index 000000000..8a569376d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/stackexchange/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-stackexchange: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-stackexchange + + · + Unicode: f16c · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-stackexchange +
    +
    +
    <i class="icon-stackexchange"></i> icon-stackexchange
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/star-empty/index.html b/library/font_awesome/src/3.2.1/icon/star-empty/index.html new file mode 100644 index 000000000..f0de9b04e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/star-empty/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-star-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-star-empty + + · + Unicode: f006 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-star-empty +
    +
    +
    <i class="icon-star-empty"></i> icon-star-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html b/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html new file mode 100644 index 000000000..82b9e61d9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-star-half-empty: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-star-half-empty + + · + Unicode: f123 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + · Aliases: + + icon-star-half-full + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-star-half-empty +
    +
    +
    <i class="icon-star-half-empty"></i> icon-star-half-empty
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/star-half/index.html b/library/font_awesome/src/3.2.1/icon/star-half/index.html new file mode 100644 index 000000000..1411b0075 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/star-half/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-star-half: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-star-half + + · + Unicode: f089 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-star-half +
    +
    +
    <i class="icon-star-half"></i> icon-star-half
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/star/index.html b/library/font_awesome/src/3.2.1/icon/star/index.html new file mode 100644 index 000000000..5defff409 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/star/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-star: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-star + + · + Unicode: f005 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-star +
    +
    +
    <i class="icon-star"></i> icon-star
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/step-backward/index.html b/library/font_awesome/src/3.2.1/icon/step-backward/index.html new file mode 100644 index 000000000..afbfc6572 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/step-backward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-step-backward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-step-backward + + · + Unicode: f048 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-step-backward +
    +
    +
    <i class="icon-step-backward"></i> icon-step-backward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/step-forward/index.html b/library/font_awesome/src/3.2.1/icon/step-forward/index.html new file mode 100644 index 000000000..18ba8dc5e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/step-forward/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-step-forward: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-step-forward + + · + Unicode: f051 · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-step-forward +
    +
    +
    <i class="icon-step-forward"></i> icon-step-forward
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/stethoscope/index.html b/library/font_awesome/src/3.2.1/icon/stethoscope/index.html new file mode 100644 index 000000000..f4bd96121 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/stethoscope/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-stethoscope: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-stethoscope + + · + Unicode: f0f1 · + Created: v3.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-stethoscope +
    +
    +
    <i class="icon-stethoscope"></i> icon-stethoscope
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/stop/index.html b/library/font_awesome/src/3.2.1/icon/stop/index.html new file mode 100644 index 000000000..d470aad76 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/stop/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-stop: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-stop + + · + Unicode: f04d · + Created: v1.0 · + Categories: + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-stop +
    +
    +
    <i class="icon-stop"></i> icon-stop
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/strikethrough/index.html b/library/font_awesome/src/3.2.1/icon/strikethrough/index.html new file mode 100644 index 000000000..290a87e12 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/strikethrough/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-strikethrough: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-strikethrough + + · + Unicode: f0cc · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-strikethrough +
    +
    +
    <i class="icon-strikethrough"></i> icon-strikethrough
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/subscript/index.html b/library/font_awesome/src/3.2.1/icon/subscript/index.html new file mode 100644 index 000000000..6f002b402 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/subscript/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-subscript: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-subscript + + · + Unicode: f12c · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-subscript +
    +
    +
    <i class="icon-subscript"></i> icon-subscript
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/suitcase/index.html b/library/font_awesome/src/3.2.1/icon/suitcase/index.html new file mode 100644 index 000000000..31904aeed --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/suitcase/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-suitcase: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-suitcase + + · + Unicode: f0f2 · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-suitcase +
    +
    +
    <i class="icon-suitcase"></i> icon-suitcase
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/sun/index.html b/library/font_awesome/src/3.2.1/icon/sun/index.html new file mode 100644 index 000000000..b51eb9f82 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/sun/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-sun: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-sun + + · + Unicode: f185 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-sun +
    +
    +
    <i class="icon-sun"></i> icon-sun
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/superscript/index.html b/library/font_awesome/src/3.2.1/icon/superscript/index.html new file mode 100644 index 000000000..26a79f1af --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/superscript/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-superscript: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-superscript + + · + Unicode: f12b · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-superscript +
    +
    +
    <i class="icon-superscript"></i> icon-superscript
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/table/index.html b/library/font_awesome/src/3.2.1/icon/table/index.html new file mode 100644 index 000000000..333ae25d5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/table/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-table: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-table + + · + Unicode: f0ce · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-table +
    +
    +
    <i class="icon-table"></i> icon-table
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tablet/index.html b/library/font_awesome/src/3.2.1/icon/tablet/index.html new file mode 100644 index 000000000..145880116 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tablet/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tablet: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tablet + + · + Unicode: f10a · + Created: v3.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tablet +
    +
    +
    <i class="icon-tablet"></i> icon-tablet
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tag/index.html b/library/font_awesome/src/3.2.1/icon/tag/index.html new file mode 100644 index 000000000..6db72cef8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tag/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tag: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tag + + · + Unicode: f02b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tag +
    +
    +
    <i class="icon-tag"></i> icon-tag
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tags/index.html b/library/font_awesome/src/3.2.1/icon/tags/index.html new file mode 100644 index 000000000..a6bbaf6c0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tags/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tags: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tags + + · + Unicode: f02c · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tags +
    +
    +
    <i class="icon-tags"></i> icon-tags
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tasks/index.html b/library/font_awesome/src/3.2.1/icon/tasks/index.html new file mode 100644 index 000000000..1286518ba --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tasks/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tasks: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tasks + + · + Unicode: f0ae · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tasks +
    +
    +
    <i class="icon-tasks"></i> icon-tasks
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/terminal/index.html b/library/font_awesome/src/3.2.1/icon/terminal/index.html new file mode 100644 index 000000000..3b42e117b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/terminal/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-terminal: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-terminal + + · + Unicode: f120 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-terminal +
    +
    +
    <i class="icon-terminal"></i> icon-terminal
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/text-height/index.html b/library/font_awesome/src/3.2.1/icon/text-height/index.html new file mode 100644 index 000000000..db9fc1c97 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/text-height/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-text-height: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-text-height + + · + Unicode: f034 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-text-height +
    +
    +
    <i class="icon-text-height"></i> icon-text-height
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/text-width/index.html b/library/font_awesome/src/3.2.1/icon/text-width/index.html new file mode 100644 index 000000000..a631f0381 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/text-width/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-text-width: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-text-width + + · + Unicode: f035 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-text-width +
    +
    +
    <i class="icon-text-width"></i> icon-text-width
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/th-large/index.html b/library/font_awesome/src/3.2.1/icon/th-large/index.html new file mode 100644 index 000000000..4bf7f8f64 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/th-large/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-th-large: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-th-large + + · + Unicode: f009 · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-th-large +
    +
    +
    <i class="icon-th-large"></i> icon-th-large
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/th-list/index.html b/library/font_awesome/src/3.2.1/icon/th-list/index.html new file mode 100644 index 000000000..6e2054526 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/th-list/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-th-list: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-th-list + + · + Unicode: f00b · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-th-list +
    +
    +
    <i class="icon-th-list"></i> icon-th-list
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/th/index.html b/library/font_awesome/src/3.2.1/icon/th/index.html new file mode 100644 index 000000000..f5fab7507 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/th/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-th: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-th + + · + Unicode: f00a · + Created: v1.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-th +
    +
    +
    <i class="icon-th"></i> icon-th
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html new file mode 100644 index 000000000..72bfe5631 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-thumbs-down-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-thumbs-down-alt + + · + Unicode: f088 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-thumbs-down-alt +
    +
    +
    <i class="icon-thumbs-down-alt"></i> icon-thumbs-down-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html new file mode 100644 index 000000000..0db7214e9 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-thumbs-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-thumbs-down + + · + Unicode: f165 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-thumbs-down +
    +
    +
    <i class="icon-thumbs-down"></i> icon-thumbs-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html new file mode 100644 index 000000000..950e75270 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-thumbs-up-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-thumbs-up-alt + + · + Unicode: f087 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-thumbs-up-alt +
    +
    +
    <i class="icon-thumbs-up-alt"></i> icon-thumbs-up-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html new file mode 100644 index 000000000..43564afa8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-thumbs-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-thumbs-up + + · + Unicode: f164 · + Created: v3.2 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-thumbs-up +
    +
    +
    <i class="icon-thumbs-up"></i> icon-thumbs-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/ticket/index.html b/library/font_awesome/src/3.2.1/icon/ticket/index.html new file mode 100644 index 000000000..c94a15f08 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/ticket/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-ticket: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-ticket + + · + Unicode: f145 · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-ticket +
    +
    +
    <i class="icon-ticket"></i> icon-ticket
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/time/index.html b/library/font_awesome/src/3.2.1/icon/time/index.html new file mode 100644 index 000000000..bfa505d9d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/time/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-time: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-time + + · + Unicode: f017 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-time +
    +
    +
    <i class="icon-time"></i> icon-time
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tint/index.html b/library/font_awesome/src/3.2.1/icon/tint/index.html new file mode 100644 index 000000000..8e079ce01 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tint/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tint: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tint + + · + Unicode: f043 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tint +
    +
    +
    <i class="icon-tint"></i> icon-tint
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/trash/index.html b/library/font_awesome/src/3.2.1/icon/trash/index.html new file mode 100644 index 000000000..e2d16ab2b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/trash/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-trash: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-trash + + · + Unicode: f014 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-trash +
    +
    +
    <i class="icon-trash"></i> icon-trash
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/trello/index.html b/library/font_awesome/src/3.2.1/icon/trello/index.html new file mode 100644 index 000000000..3ea84577c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/trello/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-trello: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-trello + + · + Unicode: f181 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-trello +
    +
    +
    <i class="icon-trello"></i> icon-trello
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/trophy/index.html b/library/font_awesome/src/3.2.1/icon/trophy/index.html new file mode 100644 index 000000000..afc1542ad --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/trophy/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-trophy: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-trophy + + · + Unicode: f091 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-trophy +
    +
    +
    <i class="icon-trophy"></i> icon-trophy
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/truck/index.html b/library/font_awesome/src/3.2.1/icon/truck/index.html new file mode 100644 index 000000000..fdc00d7df --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/truck/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-truck: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-truck + + · + Unicode: f0d1 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-truck +
    +
    +
    <i class="icon-truck"></i> icon-truck
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html b/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html new file mode 100644 index 000000000..9a613cbcc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tumblr-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tumblr-sign + + · + Unicode: f174 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tumblr-sign +
    +
    +
    <i class="icon-tumblr-sign"></i> icon-tumblr-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/tumblr/index.html b/library/font_awesome/src/3.2.1/icon/tumblr/index.html new file mode 100644 index 000000000..fd7f30615 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/tumblr/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-tumblr: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-tumblr + + · + Unicode: f173 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-tumblr +
    +
    +
    <i class="icon-tumblr"></i> icon-tumblr
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html b/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html new file mode 100644 index 000000000..009efcb2e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-twitter-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-twitter-sign + + · + Unicode: f081 · + Created: v1.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-twitter-sign +
    +
    +
    <i class="icon-twitter-sign"></i> icon-twitter-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/twitter/index.html b/library/font_awesome/src/3.2.1/icon/twitter/index.html new file mode 100644 index 000000000..42854fabc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/twitter/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-twitter: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-twitter + + · + Unicode: f099 · + Created: v2.0 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-twitter +
    +
    +
    <i class="icon-twitter"></i> icon-twitter
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/umbrella/index.html b/library/font_awesome/src/3.2.1/icon/umbrella/index.html new file mode 100644 index 000000000..af2a1a944 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/umbrella/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-umbrella: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-umbrella + + · + Unicode: f0e9 · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-umbrella +
    +
    +
    <i class="icon-umbrella"></i> icon-umbrella
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/underline/index.html b/library/font_awesome/src/3.2.1/icon/underline/index.html new file mode 100644 index 000000000..2e493cd4e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/underline/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-underline: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-underline + + · + Unicode: f0cd · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-underline +
    +
    +
    <i class="icon-underline"></i> icon-underline
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/undo/index.html b/library/font_awesome/src/3.2.1/icon/undo/index.html new file mode 100644 index 000000000..d0f3a4615 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/undo/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-undo: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-undo + + · + Unicode: f0e2 · + Created: v2.0 · + Categories: + + Text Editor Icons + + + + · Aliases: + + icon-rotate-left + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-undo +
    +
    +
    <i class="icon-undo"></i> icon-undo
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/unlink/index.html b/library/font_awesome/src/3.2.1/icon/unlink/index.html new file mode 100644 index 000000000..d427fcca6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/unlink/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-unlink: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-unlink + + · + Unicode: f127 · + Created: v3.1 · + Categories: + + Text Editor Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-unlink +
    +
    +
    <i class="icon-unlink"></i> icon-unlink
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html b/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html new file mode 100644 index 000000000..0bec883a5 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-unlock-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-unlock-alt + + · + Unicode: f13e · + Created: v3.1 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-unlock-alt +
    +
    +
    <i class="icon-unlock-alt"></i> icon-unlock-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/unlock/index.html b/library/font_awesome/src/3.2.1/icon/unlock/index.html new file mode 100644 index 000000000..9adf272fc --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/unlock/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-unlock: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-unlock + + · + Unicode: f09c · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-unlock +
    +
    +
    <i class="icon-unlock"></i> icon-unlock
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/upload-alt/index.html b/library/font_awesome/src/3.2.1/icon/upload-alt/index.html new file mode 100644 index 000000000..f4664081c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/upload-alt/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-upload-alt: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-upload-alt + + · + Unicode: f093 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-upload-alt +
    +
    +
    <i class="icon-upload-alt"></i> icon-upload-alt
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/upload/index.html b/library/font_awesome/src/3.2.1/icon/upload/index.html new file mode 100644 index 000000000..6119f9f4b --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/upload/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-upload: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-upload + + · + Unicode: f01b · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-upload +
    +
    +
    <i class="icon-upload"></i> icon-upload
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/usd/index.html b/library/font_awesome/src/3.2.1/icon/usd/index.html new file mode 100644 index 000000000..0d1d8a403 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/usd/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + icon-usd: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-usd + + · + Unicode: f155 · + Created: v3.2 · + Categories: + + Currency Icons + + + + · Aliases: + + icon-dollar + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-usd +
    +
    +
    <i class="icon-usd"></i> icon-usd
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/user-md/index.html b/library/font_awesome/src/3.2.1/icon/user-md/index.html new file mode 100644 index 000000000..926509da7 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/user-md/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-user-md: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-user-md + + · + Unicode: f0f0 · + Created: v2.0 · + Categories: + + Medical Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-user-md +
    +
    +
    <i class="icon-user-md"></i> icon-user-md
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/user/index.html b/library/font_awesome/src/3.2.1/icon/user/index.html new file mode 100644 index 000000000..ce3e264a0 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/user/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-user: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-user + + · + Unicode: f007 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-user +
    +
    +
    <i class="icon-user"></i> icon-user
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/vk/index.html b/library/font_awesome/src/3.2.1/icon/vk/index.html new file mode 100644 index 000000000..308192606 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/vk/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-vk: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-vk + + · + Unicode: f189 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-vk +
    +
    +
    <i class="icon-vk"></i> icon-vk
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/volume-down/index.html b/library/font_awesome/src/3.2.1/icon/volume-down/index.html new file mode 100644 index 000000000..e9aa24e95 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/volume-down/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-volume-down: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-volume-down + + · + Unicode: f027 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-volume-down +
    +
    +
    <i class="icon-volume-down"></i> icon-volume-down
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/volume-off/index.html b/library/font_awesome/src/3.2.1/icon/volume-off/index.html new file mode 100644 index 000000000..53a1d58e6 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/volume-off/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-volume-off: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-volume-off + + · + Unicode: f026 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-volume-off +
    +
    +
    <i class="icon-volume-off"></i> icon-volume-off
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/volume-up/index.html b/library/font_awesome/src/3.2.1/icon/volume-up/index.html new file mode 100644 index 000000000..c9f82fb6f --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/volume-up/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-volume-up: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-volume-up + + · + Unicode: f028 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-volume-up +
    +
    +
    <i class="icon-volume-up"></i> icon-volume-up
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/warning-sign/index.html b/library/font_awesome/src/3.2.1/icon/warning-sign/index.html new file mode 100644 index 000000000..29a342a7c --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/warning-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-warning-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-warning-sign + + · + Unicode: f071 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-warning-sign +
    +
    +
    <i class="icon-warning-sign"></i> icon-warning-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/weibo/index.html b/library/font_awesome/src/3.2.1/icon/weibo/index.html new file mode 100644 index 000000000..6a1ab7a34 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/weibo/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-weibo: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-weibo + + · + Unicode: f18a · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-weibo +
    +
    +
    <i class="icon-weibo"></i> icon-weibo
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/windows/index.html b/library/font_awesome/src/3.2.1/icon/windows/index.html new file mode 100644 index 000000000..973a33974 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/windows/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-windows: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-windows + + · + Unicode: f17a · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-windows +
    +
    +
    <i class="icon-windows"></i> icon-windows
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/wrench/index.html b/library/font_awesome/src/3.2.1/icon/wrench/index.html new file mode 100644 index 000000000..3a9cac23d --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/wrench/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-wrench: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-wrench + + · + Unicode: f0ad · + Created: v2.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-wrench +
    +
    +
    <i class="icon-wrench"></i> icon-wrench
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/xing-sign/index.html b/library/font_awesome/src/3.2.1/icon/xing-sign/index.html new file mode 100644 index 000000000..e1d173ccf --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/xing-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-xing-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-xing-sign + + · + Unicode: f169 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-xing-sign +
    +
    +
    <i class="icon-xing-sign"></i> icon-xing-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/xing/index.html b/library/font_awesome/src/3.2.1/icon/xing/index.html new file mode 100644 index 000000000..3d378d233 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/xing/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-xing: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-xing + + · + Unicode: f168 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-xing +
    +
    +
    <i class="icon-xing"></i> icon-xing
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/youtube-play/index.html b/library/font_awesome/src/3.2.1/icon/youtube-play/index.html new file mode 100644 index 000000000..f15866955 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/youtube-play/index.html @@ -0,0 +1,210 @@ + + + + + + + + + + icon-youtube-play: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-youtube-play + + · + Unicode: f16a · + Created: v3.2 · + Categories: + + Brand Icons, + + Video Player Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-youtube-play +
    +
    +
    <i class="icon-youtube-play"></i> icon-youtube-play
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html b/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html new file mode 100644 index 000000000..fcec9ccc3 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-youtube-sign: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-youtube-sign + + · + Unicode: f166 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-youtube-sign +
    +
    +
    <i class="icon-youtube-sign"></i> icon-youtube-sign
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/youtube/index.html b/library/font_awesome/src/3.2.1/icon/youtube/index.html new file mode 100644 index 000000000..406a3bc42 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/youtube/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-youtube: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-youtube + + · + Unicode: f167 · + Created: v3.2 · + Categories: + + Brand Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-youtube +
    +
    +
    <i class="icon-youtube"></i> icon-youtube
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/zoom-in/index.html b/library/font_awesome/src/3.2.1/icon/zoom-in/index.html new file mode 100644 index 000000000..7c30b0e9e --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/zoom-in/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-zoom-in: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-zoom-in + + · + Unicode: f00e · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-zoom-in +
    +
    +
    <i class="icon-zoom-in"></i> icon-zoom-in
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icon/zoom-out/index.html b/library/font_awesome/src/3.2.1/icon/zoom-out/index.html new file mode 100644 index 000000000..ddbe58999 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icon/zoom-out/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + icon-zoom-out: Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +    + +    +    +    +   + + +
    +

    + icon-zoom-out + + · + Unicode: f010 · + Created: v1.0 · + Categories: + + Web Application Icons + + + + +

    +
    +
    + + +
    +
    +
    +
    +

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    +
    +
    + icon-zoom-out +
    +
    +
    <i class="icon-zoom-out"></i> icon-zoom-out
    +
    +
    +
    Looking for more? Check out the examples.
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/icons.yml b/library/font_awesome/src/3.2.1/icons.yml new file mode 100644 index 000000000..c3c8f531a --- /dev/null +++ b/library/font_awesome/src/3.2.1/icons.yml @@ -0,0 +1,2590 @@ +icons: + - name: Glass + id: glass + unicode: f000 + created: 1.0 + categories: + - Web Application Icons + + - name: Music + id: music + unicode: f001 + created: 1.0 + categories: + - Web Application Icons + + - name: Search + id: search + unicode: f002 + created: 1.0 + categories: + - Web Application Icons + + - name: Envelope Alt + id: envelope-alt + unicode: f003 + created: 1.0 + categories: + - Web Application Icons + + - name: Heart + id: heart + unicode: f004 + created: 1.0 + categories: + - Web Application Icons + + - name: Star + id: star + unicode: f005 + created: 1.0 + categories: + - Web Application Icons + + - name: Star Empty + id: star-empty + unicode: f006 + created: 1.0 + categories: + - Web Application Icons + + - name: User + id: user + unicode: f007 + created: 1.0 + categories: + - Web Application Icons + + - name: Film + id: film + unicode: f008 + created: 1.0 + categories: + - Web Application Icons + + - name: th-large + id: th-large + unicode: f009 + created: 1.0 + categories: + - Text Editor Icons + + - name: th + id: th + unicode: f00a + created: 1.0 + categories: + - Text Editor Icons + + - name: th-list + id: th-list + unicode: f00b + created: 1.0 + categories: + - Text Editor Icons + + - name: OK + id: ok + unicode: f00c + created: 1.0 + categories: + - Web Application Icons + + - name: Remove + id: remove + unicode: f00d + created: 1.0 + categories: + - Web Application Icons + + - name: Zoom In + id: zoom-in + unicode: f00e + created: 1.0 + categories: + - Web Application Icons + + + - name: Zoom Out + id: zoom-out + unicode: f010 + created: 1.0 + categories: + - Web Application Icons + + - name: Off + id: 'off' + unicode: f011 + created: 1.0 + aliases: + - power-off + categories: + - Web Application Icons + + - name: signal + id: signal + unicode: f012 + created: 1.0 + categories: + - Web Application Icons + + - name: cog + id: cog + unicode: f013 + created: 1.0 + aliases: + - gear + categories: + - Web Application Icons + + - name: trash + id: trash + unicode: f014 + created: 1.0 + categories: + - Web Application Icons + + - name: home + id: home + unicode: f015 + created: 1.0 + categories: + - Web Application Icons + + - name: file-alt + id: file-alt + unicode: f016 + created: 1.0 + categories: + - Text Editor Icons + + - name: time + id: time + unicode: f017 + created: 1.0 + categories: + - Web Application Icons + + - name: road + id: road + unicode: f018 + created: 1.0 + categories: + - Web Application Icons + + - name: download-alt + id: download-alt + unicode: f019 + created: 1.0 + categories: + - Web Application Icons + + - name: download + id: download + unicode: f01a + created: 1.0 + categories: + - Web Application Icons + + - name: upload + id: upload + unicode: f01b + created: 1.0 + categories: + - Web Application Icons + + - name: inbox + id: inbox + unicode: f01c + created: 1.0 + categories: + - Web Application Icons + + - name: play-circle + id: play-circle + unicode: f01d + created: 1.0 + categories: + - Video Player Icons + + - name: repeat + id: repeat + unicode: f01e + created: 1.0 + aliases: + - rotate-right + categories: + - Text Editor Icons + + + - name: refresh + id: refresh + unicode: f021 + created: 1.0 + categories: + - Web Application Icons + + - name: list-alt + id: list-alt + unicode: f022 + created: 1.0 + categories: + - Text Editor Icons + + - name: lock + id: lock + unicode: f023 + created: 1.0 + categories: + - Web Application Icons + + - name: flag + id: flag + unicode: f024 + created: 1.0 + categories: + - Web Application Icons + + - name: headphones + id: headphones + unicode: f025 + created: 1.0 + categories: + - Web Application Icons + + - name: volume-off + id: volume-off + unicode: f026 + created: 1.0 + categories: + - Web Application Icons + + - name: volume-down + id: volume-down + unicode: f027 + created: 1.0 + categories: + - Web Application Icons + + - name: volume-up + id: volume-up + unicode: f028 + created: 1.0 + categories: + - Web Application Icons + + - name: qrcode + id: qrcode + unicode: f029 + created: 1.0 + categories: + - Web Application Icons + + - name: barcode + id: barcode + unicode: f02a + created: 1.0 + categories: + - Web Application Icons + + - name: tag + id: tag + unicode: f02b + created: 1.0 + categories: + - Web Application Icons + + - name: tags + id: tags + unicode: f02c + created: 1.0 + categories: + - Web Application Icons + + - name: book + id: book + unicode: f02d + created: 1.0 + categories: + - Web Application Icons + + - name: bookmark + id: bookmark + unicode: f02e + created: 1.0 + categories: + - Web Application Icons + + - name: print + id: print + unicode: f02f + created: 1.0 + categories: + - Web Application Icons + + + - name: camera + id: camera + unicode: f030 + created: 1.0 + categories: + - Web Application Icons + + - name: font + id: font + unicode: f031 + created: 1.0 + categories: + - Text Editor Icons + + - name: bold + id: bold + unicode: f032 + created: 1.0 + categories: + - Text Editor Icons + + - name: italic + id: italic + unicode: f033 + created: 1.0 + categories: + - Text Editor Icons + + - name: text-height + id: text-height + unicode: f034 + created: 1.0 + categories: + - Text Editor Icons + + - name: text-width + id: text-width + unicode: f035 + created: 1.0 + categories: + - Text Editor Icons + + - name: align-left + id: align-left + unicode: f036 + created: 1.0 + categories: + - Text Editor Icons + + - name: align-center + id: align-center + unicode: f037 + created: 1.0 + categories: + - Text Editor Icons + + - name: align-right + id: align-right + unicode: f038 + created: 1.0 + categories: + - Text Editor Icons + + - name: align-justify + id: align-justify + unicode: f039 + created: 1.0 + categories: + - Text Editor Icons + + - name: list + id: list + unicode: f03a + created: 1.0 + categories: + - Text Editor Icons + + - name: indent-left + id: indent-left + unicode: f03b + created: 1.0 + categories: + - Text Editor Icons + + - name: indent-right + id: indent-right + unicode: f03c + created: 1.0 + categories: + - Text Editor Icons + + - name: facetime-video + id: facetime-video + unicode: f03d + created: 1.0 + categories: + - Web Application Icons + + - name: picture + id: picture + unicode: f03e + created: 1.0 + categories: + - Web Application Icons + + + - name: pencil + id: pencil + unicode: f040 + created: 1.0 + categories: + - Web Application Icons + + - name: map-marker + id: map-marker + unicode: f041 + created: 1.0 + categories: + - Web Application Icons + + - name: adjust + id: adjust + unicode: f042 + created: 1.0 + categories: + - Web Application Icons + + - name: tint + id: tint + unicode: f043 + created: 1.0 + categories: + - Web Application Icons + + - name: edit + id: edit + unicode: f044 + created: 1.0 + categories: + - Web Application Icons + + - name: share + id: share + unicode: f045 + created: 1.0 + categories: + - Web Application Icons + + - name: check + id: check + unicode: f046 + created: 1.0 + categories: + - Web Application Icons + + - name: move + id: move + unicode: f047 + created: 1.0 + categories: + - Web Application Icons + + - name: step-backward + id: step-backward + unicode: f048 + created: 1.0 + categories: + - Video Player Icons + + - name: fast-backward + id: fast-backward + unicode: f049 + created: 1.0 + categories: + - Video Player Icons + + - name: backward + id: backward + unicode: f04a + created: 1.0 + categories: + - Video Player Icons + + - name: play + id: play + unicode: f04b + created: 1.0 + categories: + - Video Player Icons + + - name: pause + id: pause + unicode: f04c + created: 1.0 + categories: + - Video Player Icons + + - name: stop + id: stop + unicode: f04d + created: 1.0 + categories: + - Video Player Icons + + - name: forward + id: forward + unicode: f04e + created: 1.0 + categories: + - Video Player Icons + + + - name: fast-forward + id: fast-forward + unicode: f050 + created: 1.0 + categories: + - Video Player Icons + + - name: step-forward + id: step-forward + unicode: f051 + created: 1.0 + categories: + - Video Player Icons + + - name: eject + id: eject + unicode: f052 + created: 1.0 + categories: + - Video Player Icons + + - name: chevron-left + id: chevron-left + unicode: f053 + created: 1.0 + categories: + - Directional Icons + + - name: chevron-right + id: chevron-right + unicode: f054 + created: 1.0 + categories: + - Directional Icons + + - name: plus-sign + id: plus-sign + unicode: f055 + created: 1.0 + categories: + - Web Application Icons + + - name: minus-sign + id: minus-sign + unicode: f056 + created: 1.0 + categories: + - Web Application Icons + + - name: remove-sign + id: remove-sign + unicode: f057 + created: 1.0 + categories: + - Web Application Icons + + - name: ok-sign + id: ok-sign + unicode: f058 + created: 1.0 + categories: + - Web Application Icons + + - name: question-sign + id: question-sign + unicode: f059 + created: 1.0 + categories: + - Web Application Icons + + - name: info-sign + id: info-sign + unicode: f05a + created: 1.0 + categories: + - Web Application Icons + + - name: screenshot + id: screenshot + unicode: f05b + created: 1.0 + categories: + - Web Application Icons + + - name: remove-circle + id: remove-circle + unicode: f05c + created: 1.0 + categories: + - Web Application Icons + + - name: ok-circle + id: ok-circle + unicode: f05d + created: 1.0 + categories: + - Web Application Icons + + - name: ban-circle + id: ban-circle + unicode: f05e + created: 1.0 + categories: + - Web Application Icons + + + - name: arrow-left + id: arrow-left + unicode: f060 + created: 1.0 + categories: + - Directional Icons + + - name: arrow-right + id: arrow-right + unicode: f061 + created: 1.0 + categories: + - Directional Icons + + - name: arrow-up + id: arrow-up + unicode: f062 + created: 1.0 + categories: + - Directional Icons + + - name: arrow-down + id: arrow-down + unicode: f063 + created: 1.0 + categories: + - Directional Icons + + - name: share-alt + id: share-alt + unicode: f064 + created: 1.0 + aliases: + - mail-forward + categories: + - Web Application Icons + + - name: resize-full + id: resize-full + unicode: f065 + created: 1.0 + categories: + - Video Player Icons + + - name: resize-small + id: resize-small + unicode: f066 + created: 1.0 + categories: + - Video Player Icons + + - name: plus + id: plus + unicode: f067 + created: 1.0 + categories: + - Web Application Icons + + - name: minus + id: minus + unicode: f068 + created: 1.0 + categories: + - Web Application Icons + + - name: asterisk + id: asterisk + unicode: f069 + created: 1.0 + categories: + - Web Application Icons + + - name: exclamation-sign + id: exclamation-sign + unicode: f06a + created: 1.0 + categories: + - Web Application Icons + + - name: gift + id: gift + unicode: f06b + created: 1.0 + categories: + - Web Application Icons + + - name: leaf + id: leaf + unicode: f06c + created: 1.0 + categories: + - Web Application Icons + + - name: fire + id: fire + unicode: f06d + created: 1.0 + categories: + - Web Application Icons + + - name: eye-open + id: eye-open + unicode: f06e + created: 1.0 + categories: + - Web Application Icons + + + - name: eye-close + id: eye-close + unicode: f070 + created: 1.0 + categories: + - Web Application Icons + + - name: warning-sign + id: warning-sign + unicode: f071 + created: 1.0 + categories: + - Web Application Icons + + - name: plane + id: plane + unicode: f072 + created: 1.0 + categories: + - Web Application Icons + + - name: calendar + id: calendar + unicode: f073 + created: 1.0 + categories: + - Web Application Icons + + - name: random + id: random + unicode: f074 + created: 1.0 + categories: + - Web Application Icons + + - name: comment + id: comment + unicode: f075 + created: 1.0 + categories: + - Web Application Icons + + - name: magnet + id: magnet + unicode: f076 + created: 1.0 + categories: + - Web Application Icons + + - name: chevron-up + id: chevron-up + unicode: f077 + created: 1.0 + categories: + - Directional Icons + + - name: chevron-down + id: chevron-down + unicode: f078 + created: 1.0 + categories: + - Directional Icons + + - name: retweet + id: retweet + unicode: f079 + created: 1.0 + categories: + - Web Application Icons + + - name: shopping-cart + id: shopping-cart + unicode: f07a + created: 1.0 + categories: + - Web Application Icons + + - name: folder-close + id: folder-close + unicode: f07b + created: 1.0 + categories: + - Web Application Icons + + - name: folder-open + id: folder-open + unicode: f07c + created: 1.0 + categories: + - Web Application Icons + + - name: resize-vertical + id: resize-vertical + unicode: f07d + created: 1.0 + categories: + - Web Application Icons + + - name: resize-horizontal + id: resize-horizontal + unicode: f07e + created: 1.0 + categories: + - Web Application Icons + + + - name: bar-chart + id: bar-chart + unicode: f080 + created: 1.0 + categories: + - Web Application Icons + + - name: twitter-sign + id: twitter-sign + unicode: f081 + created: 1.0 + categories: + - Brand Icons + + - name: facebook-sign + id: facebook-sign + unicode: f082 + created: 1.0 + categories: + - Brand Icons + + - name: camera-retro + id: camera-retro + unicode: f083 + created: 1.0 + categories: + - Web Application Icons + + - name: key + id: key + unicode: f084 + created: 1.0 + categories: + - Web Application Icons + + - name: cogs + id: cogs + unicode: f085 + created: 1.0 + aliases: + - gears + categories: + - Web Application Icons + + - name: comments + id: comments + unicode: f086 + created: 1.0 + categories: + - Web Application Icons + + - name: thumbs-up-alt + id: thumbs-up-alt + unicode: f087 + created: 1.0 + categories: + - Web Application Icons + + - name: thumbs-down-alt + id: thumbs-down-alt + unicode: f088 + created: 1.0 + categories: + - Web Application Icons + + - name: star-half + id: star-half + unicode: f089 + created: 1.0 + categories: + - Web Application Icons + + - name: heart-empty + id: heart-empty + unicode: f08a + created: 1.0 + categories: + - Web Application Icons + + - name: signout + id: signout + unicode: f08b + created: 1.0 + categories: + - Web Application Icons + + - name: linkedin-sign + id: linkedin-sign + unicode: f08c + created: 1.0 + categories: + - Brand Icons + + - name: pushpin + id: pushpin + unicode: f08d + created: 1.0 + categories: + - Web Application Icons + + - name: external-link + id: external-link + unicode: f08e + created: 1.0 + categories: + - Web Application Icons + + + - name: signin + id: signin + unicode: f090 + created: 1.0 + categories: + - Web Application Icons + + - name: trophy + id: trophy + unicode: f091 + created: 1.0 + categories: + - Web Application Icons + + - name: github-sign + id: github-sign + unicode: f092 + created: 1.0 + categories: + - Brand Icons + + - name: upload-alt + id: upload-alt + unicode: f093 + created: 1.0 + categories: + - Web Application Icons + + - name: lemon + id: lemon + unicode: f094 + created: 1.0 + categories: + - Web Application Icons + + - name: phone + id: phone + unicode: f095 + created: 2.0 + categories: + - Web Application Icons + + - name: check-empty + id: check-empty + unicode: f096 + created: 2.0 + aliases: + - unchecked + categories: + - Web Application Icons + + - name: bookmark-empty + id: bookmark-empty + unicode: f097 + created: 2.0 + categories: + - Web Application Icons + + - name: phone-sign + id: phone-sign + unicode: f098 + created: 2.0 + categories: + - Web Application Icons + + - name: twitter + id: twitter + unicode: f099 + created: 2.0 + categories: + - Brand Icons + + - name: facebook + id: facebook + unicode: f09a + created: 2.0 + categories: + - Brand Icons + + - name: github + id: github + unicode: f09b + created: 2.0 + categories: + - Brand Icons + + - name: unlock + id: unlock + unicode: f09c + created: 2.0 + categories: + - Web Application Icons + + - name: credit-card + id: credit-card + unicode: f09d + created: 2.0 + categories: + - Web Application Icons + + - name: rss + id: rss + unicode: f09e + created: 2.0 + categories: + - Web Application Icons + + + - name: hdd + id: hdd + unicode: f0a0 + created: 2.0 + categories: + - Web Application Icons + + - name: bullhorn + id: bullhorn + unicode: f0a1 + created: 2.0 + categories: + - Web Application Icons + + - name: bell + id: bell + unicode: f0a2 + created: 2.0 + categories: + - Web Application Icons + + - name: certificate + id: certificate + unicode: f0a3 + created: 2.0 + categories: + - Web Application Icons + + - name: hand-right + id: hand-right + unicode: f0a4 + created: 2.0 + categories: + - Directional Icons + + - name: hand-left + id: hand-left + unicode: f0a5 + created: 2.0 + categories: + - Directional Icons + + - name: hand-up + id: hand-up + unicode: f0a6 + created: 2.0 + categories: + - Directional Icons + + - name: hand-down + id: hand-down + unicode: f0a7 + created: 2.0 + categories: + - Directional Icons + + - name: circle-arrow-left + id: circle-arrow-left + unicode: f0a8 + created: 2.0 + categories: + - Directional Icons + + - name: circle-arrow-right + id: circle-arrow-right + unicode: f0a9 + created: 2.0 + categories: + - Directional Icons + + - name: circle-arrow-up + id: circle-arrow-up + unicode: f0aa + created: 2.0 + categories: + - Directional Icons + + - name: circle-arrow-down + id: circle-arrow-down + unicode: f0ab + created: 2.0 + categories: + - Directional Icons + + - name: globe + id: globe + unicode: f0ac + created: 2.0 + categories: + - Web Application Icons + + - name: wrench + id: wrench + unicode: f0ad + created: 2.0 + categories: + - Web Application Icons + + - name: tasks + id: tasks + unicode: f0ae + created: 2.0 + categories: + - Web Application Icons + + + - name: filter + id: filter + unicode: f0b0 + created: 2.0 + categories: + - Web Application Icons + + - name: briefcase + id: briefcase + unicode: f0b1 + created: 2.0 + categories: + - Web Application Icons + + - name: fullscreen + id: fullscreen + unicode: f0b2 + created: 2.0 + categories: + - Video Player Icons + + + - name: group + id: group + unicode: f0c0 + created: 2.0 + categories: + - Web Application Icons + + - name: link + id: link + unicode: f0c1 + created: 2.0 + categories: + - Text Editor Icons + + - name: cloud + id: cloud + unicode: f0c2 + created: 2.0 + categories: + - Web Application Icons + + - name: beaker + id: beaker + unicode: f0c3 + created: 2.0 + categories: + - Web Application Icons + + - name: cut + id: cut + unicode: f0c4 + created: 2.0 + categories: + - Text Editor Icons + + - name: copy + id: copy + unicode: f0c5 + created: 2.0 + categories: + - Text Editor Icons + + - name: paper-clip + id: paper-clip + unicode: f0c6 + created: 2.0 + aliases: + - paperclip + categories: + - Text Editor Icons + + - name: save + id: save + unicode: f0c7 + created: 2.0 + categories: + - Text Editor Icons + + - name: sign-blank + id: sign-blank + unicode: f0c8 + created: 2.0 + categories: + - Web Application Icons + + - name: reorder + id: reorder + unicode: f0c9 + created: 2.0 + categories: + - Web Application Icons + + - name: list-ul + id: list-ul + unicode: f0ca + created: 2.0 + categories: + - Text Editor Icons + + - name: list-ol + id: list-ol + unicode: f0cb + created: 2.0 + categories: + - Text Editor Icons + + - name: strikethrough + id: strikethrough + unicode: f0cc + created: 2.0 + categories: + - Text Editor Icons + + - name: underline + id: underline + unicode: f0cd + created: 2.0 + categories: + - Text Editor Icons + + - name: table + id: table + unicode: f0ce + created: 2.0 + categories: + - Text Editor Icons + + + - name: magic + id: magic + unicode: f0d0 + created: 2.0 + categories: + - Web Application Icons + + - name: truck + id: truck + unicode: f0d1 + created: 2.0 + categories: + - Web Application Icons + + - name: pinterest + id: pinterest + unicode: f0d2 + created: 2.0 + categories: + - Brand Icons + + - name: pinterest-sign + id: pinterest-sign + unicode: f0d3 + created: 2.0 + categories: + - Brand Icons + + - name: google-plus-sign + id: google-plus-sign + unicode: f0d4 + created: 2.0 + categories: + - Brand Icons + + - name: google-plus + id: google-plus + unicode: f0d5 + created: 2.0 + categories: + - Brand Icons + + - name: money + id: money + unicode: f0d6 + created: 2.0 + categories: + - Web Application Icons + + - name: caret-down + id: caret-down + unicode: f0d7 + created: 2.0 + categories: + - Directional Icons + + - name: caret-up + id: caret-up + unicode: f0d8 + created: 2.0 + categories: + - Directional Icons + + - name: caret-left + id: caret-left + unicode: f0d9 + created: 2.0 + categories: + - Directional Icons + + - name: caret-right + id: caret-right + unicode: f0da + created: 2.0 + categories: + - Directional Icons + + - name: columns + id: columns + unicode: f0db + created: 2.0 + categories: + - Text Editor Icons + + - name: sort + id: sort + unicode: f0dc + created: 2.0 + categories: + - Web Application Icons + + - name: sort-down + id: sort-down + unicode: f0dd + created: 2.0 + categories: + - Web Application Icons + + - name: sort-up + id: sort-up + unicode: f0de + created: 2.0 + categories: + - Web Application Icons + + + - name: Envelope + id: envelope + unicode: f0e0 + created: 2.0 + categories: + - Web Application Icons + + - name: linkedin + id: linkedin + unicode: f0e1 + created: 2.0 + categories: + - Brand Icons + + + - name: undo + id: undo + unicode: f0e2 + created: 2.0 + aliases: + - rotate-left + categories: + - Text Editor Icons + + - name: legal + id: legal + unicode: f0e3 + created: 2.0 + categories: + - Web Application Icons + + - name: dashboard + id: dashboard + unicode: f0e4 + created: 2.0 + categories: + - Web Application Icons + + - name: comment-alt + id: comment-alt + unicode: f0e5 + created: 2.0 + categories: + - Web Application Icons + + - name: comments-alt + id: comments-alt + unicode: f0e6 + created: 2.0 + categories: + - Web Application Icons + + - name: bolt + id: bolt + unicode: f0e7 + created: 2.0 + categories: + - Web Application Icons + + - name: sitemap + id: sitemap + unicode: f0e8 + created: 2.0 + categories: + - Web Application Icons + + - name: umbrella + id: umbrella + unicode: f0e9 + created: 2.0 + categories: + - Web Application Icons + + - name: paste + id: paste + unicode: f0ea + created: 2.0 + categories: + - Text Editor Icons + + - name: lightbulb + id: lightbulb + unicode: f0eb + created: 3.0 + categories: + - Web Application Icons + + - name: exchange + id: exchange + unicode: f0ec + created: 3.0 + categories: + - Web Application Icons + + - name: cloud-download + id: cloud-download + unicode: f0ed + created: 3.0 + categories: + - Web Application Icons + + - name: cloud-upload + id: cloud-upload + unicode: f0ee + created: 3.0 + categories: + - Web Application Icons + + + - name: user-md + id: user-md + unicode: f0f0 + created: 2.0 + categories: + - Medical Icons + + - name: stethoscope + id: stethoscope + unicode: f0f1 + created: 3.0 + categories: + - Medical Icons + + - name: suitcase + id: suitcase + unicode: f0f2 + created: 3.0 + categories: + - Web Application Icons + + - name: bell-alt + id: bell-alt + unicode: f0f3 + created: 3.0 + categories: + - Web Application Icons + + - name: coffee + id: coffee + unicode: f0f4 + created: 3.0 + categories: + - Web Application Icons + + - name: food + id: food + unicode: f0f5 + created: 3.0 + categories: + - Web Application Icons + + - name: file-text-alt + id: file-text-alt + unicode: f0f6 + created: 3.0 + categories: + - Text Editor Icons + + - name: building + id: building + unicode: f0f7 + created: 3.0 + categories: + - Web Application Icons + + - name: hospital + id: hospital + unicode: f0f8 + created: 3.0 + categories: + - Medical Icons + + - name: ambulance + id: ambulance + unicode: f0f9 + created: 3.0 + categories: + - Medical Icons + + - name: medkit + id: medkit + unicode: f0fa + created: 3.0 + categories: + - Medical Icons + + - name: fighter-jet + id: fighter-jet + unicode: f0fb + created: 3.0 + categories: + - Web Application Icons + + - name: beer + id: beer + unicode: f0fc + created: 3.0 + categories: + - Web Application Icons + + - name: h-sign + id: h-sign + unicode: f0fd + created: 3.0 + categories: + - Medical Icons + + - name: plus-sign-alt + id: plus-sign-alt + unicode: f0fe + created: 3.0 + categories: + - Medical Icons + - Web Application Icons + + + - name: double-angle-left + id: double-angle-left + unicode: f100 + created: 3.0 + categories: + - Directional Icons + + - name: double-angle-right + id: double-angle-right + unicode: f101 + created: 3.0 + categories: + - Directional Icons + + - name: double-angle-up + id: double-angle-up + unicode: f102 + created: 3.0 + categories: + - Directional Icons + + - name: double-angle-down + id: double-angle-down + unicode: f103 + created: 3.0 + categories: + - Directional Icons + + - name: angle-left + id: angle-left + unicode: f104 + created: 3.0 + categories: + - Directional Icons + + - name: angle-right + id: angle-right + unicode: f105 + created: 3.0 + categories: + - Directional Icons + + - name: angle-up + id: angle-up + unicode: f106 + created: 3.0 + categories: + - Directional Icons + + - name: angle-down + id: angle-down + unicode: f107 + created: 3.0 + categories: + - Directional Icons + + - name: desktop + id: desktop + unicode: f108 + created: 3.0 + categories: + - Web Application Icons + + - name: laptop + id: laptop + unicode: f109 + created: 3.0 + categories: + - Web Application Icons + + - name: tablet + id: tablet + unicode: f10a + created: 3.0 + categories: + - Web Application Icons + + - name: mobile-phone + id: mobile-phone + unicode: f10b + created: 3.0 + categories: + - Web Application Icons + + - name: circle-blank + id: circle-blank + unicode: f10c + created: 3.0 + categories: + - Web Application Icons + + - name: quote-left + id: quote-left + unicode: f10d + created: 3.0 + categories: + - Web Application Icons + + - name: quote-right + id: quote-right + unicode: f10e + created: 3.0 + categories: + - Web Application Icons + + + - name: spinner + id: spinner + unicode: f110 + created: 3.0 + categories: + - Web Application Icons + + - name: circle + id: circle + unicode: f111 + created: 3.0 + categories: + - Web Application Icons + + - name: reply + id: reply + unicode: f112 + created: 3.0 + aliases: + - mail-reply + categories: + - Web Application Icons + + - name: github-alt + id: github-alt + unicode: f113 + created: 3.0 + categories: + - Brand Icons + + - name: folder-close-alt + id: folder-close-alt + unicode: f114 + created: 3.0 + categories: + - Web Application Icons + + - name: folder-open-alt + id: folder-open-alt + unicode: f115 + created: 3.0 + categories: + - Web Application Icons + + - name: expand-alt + id: expand-alt + unicode: f116 + created: 3.1 + categories: + - Web Application Icons + + - name: collapse-alt + id: collapse-alt + unicode: f117 + created: 3.1 + categories: + - Web Application Icons + + - name: smile + id: smile + unicode: f118 + created: 3.1 + categories: + - Web Application Icons + + - name: frown + id: frown + unicode: f119 + created: 3.1 + categories: + - Web Application Icons + + - name: meh + id: meh + unicode: f11a + created: 3.1 + categories: + - Web Application Icons + + - name: gamepad + id: gamepad + unicode: f11b + created: 3.1 + categories: + - Web Application Icons + + - name: keyboard + id: keyboard + unicode: f11c + created: 3.1 + categories: + - Web Application Icons + + - name: flag-alt + id: flag-alt + unicode: f11d + created: 3.1 + categories: + - Web Application Icons + + - name: flag-checkered + id: flag-checkered + unicode: f11e + created: 3.1 + categories: + - Web Application Icons + + + - name: terminal + id: terminal + unicode: f120 + created: 3.1 + categories: + - Web Application Icons + + - name: code + id: code + unicode: f121 + created: 3.1 + categories: + - Web Application Icons + + - name: reply-all + id: reply-all + unicode: f122 + created: 3.1 + categories: + - Web Application Icons + + - name: mail-reply-all + id: mail-reply-all + unicode: f122 + created: 3.1 + categories: + - Web Application Icons + + - name: star-half-empty + id: star-half-empty + unicode: f123 + created: 3.1 + aliases: + - star-half-full + categories: + - Web Application Icons + + - name: location-arrow + id: location-arrow + unicode: f124 + created: 3.1 + categories: + - Web Application Icons + + - name: crop + id: crop + unicode: f125 + created: 3.1 + categories: + - Web Application Icons + + - name: code-fork + id: code-fork + unicode: f126 + created: 3.1 + categories: + - Web Application Icons + + - name: unlink + id: unlink + unicode: f127 + created: 3.1 + categories: + - Text Editor Icons + + - name: question + id: question + unicode: f128 + created: 3.1 + categories: + - Web Application Icons + + - name: info + id: info + unicode: f129 + created: 3.1 + categories: + - Web Application Icons + + - name: exclamation + id: exclamation + unicode: f12a + created: 3.1 + categories: + - Web Application Icons + + - name: superscript + id: superscript + unicode: f12b + created: 3.1 + categories: + - Web Application Icons + + - name: subscript + id: subscript + unicode: f12c + created: 3.1 + categories: + - Web Application Icons + + - name: eraser + id: eraser + unicode: f12d + created: 3.1 + categories: + - Text Editor Icons + - Web Application Icons + + - name: puzzle-piece + id: puzzle-piece + unicode: f12e + created: 3.1 + categories: + - Web Application Icons + + + - name: microphone + id: microphone + unicode: f130 + created: 3.1 + categories: + - Web Application Icons + + - name: microphone-off + id: microphone-off + unicode: f131 + created: 3.1 + categories: + - Web Application Icons + + - name: shield + id: shield + unicode: f132 + created: 3.1 + categories: + - Web Application Icons + + - name: calendar-empty + id: calendar-empty + unicode: f133 + created: 3.1 + categories: + - Web Application Icons + + - name: fire-extinguisher + id: fire-extinguisher + unicode: f134 + created: 3.1 + categories: + - Web Application Icons + + - name: rocket + id: rocket + unicode: f135 + created: 3.1 + categories: + - Web Application Icons + + - name: MaxCDN + id: maxcdn + unicode: f136 + created: 3.1 + categories: + - Brand Icons + + - name: Chevron Sign Left + id: chevron-sign-left + unicode: f137 + created: 3.1 + categories: + - Directional Icons + + - name: Chevron Sign Right + id: chevron-sign-right + unicode: f138 + created: 3.1 + categories: + - Directional Icons + + - name: Chevron Sign Up + id: chevron-sign-up + unicode: f139 + created: 3.1 + categories: + - Directional Icons + + - name: Chevron Sign Down + id: chevron-sign-down + unicode: f13a + created: 3.1 + categories: + - Directional Icons + + - name: HTML 5 Logo + id: html5 + unicode: f13b + created: 3.1 + categories: + - Brand Icons + + - name: CSS 3 Logo + id: css3 + unicode: f13c + created: 3.1 + categories: + - Brand Icons + + - name: Anchor + id: anchor + unicode: f13d + created: 3.1 + categories: + - Web Application Icons + + - name: Unlock Alt + id: unlock-alt + unicode: f13e + created: 3.1 + categories: + - Web Application Icons + + + - name: Bullseye + id: bullseye + unicode: f140 + created: 3.1 + categories: + - Web Application Icons + + - name: Horizontal Ellipsis + id: ellipsis-horizontal + unicode: f141 + created: 3.1 + categories: + - Web Application Icons + + - name: Vertical Ellipsis + id: ellipsis-vertical + unicode: f142 + created: 3.1 + categories: + - Web Application Icons + + - name: RSS Sign + id: rss-sign + unicode: f143 + created: 3.1 + categories: + - Web Application Icons + + - name: Play Sign + id: play-sign + unicode: f144 + created: 3.1 + categories: + - Video Player Icons + + - name: Ticket + id: ticket + unicode: f145 + created: 3.1 + categories: + - Web Application Icons + + - name: Minus Sign Alt + id: minus-sign-alt + unicode: f146 + created: 3.1 + categories: + - Web Application Icons + + - name: Check Minus + id: check-minus + unicode: f147 + created: 3.1 + categories: + - Web Application Icons + + - name: Level Up + id: level-up + unicode: f148 + created: 3.1 + categories: + - Web Application Icons + + - name: Level Down + id: level-down + unicode: f149 + created: 3.1 + categories: + - Web Application Icons + + - name: Check Sign + id: check-sign + unicode: f14a + created: 3.1 + categories: + - Web Application Icons + + - name: Edit Sign + id: edit-sign + unicode: f14b + created: 3.1 + categories: + - Web Application Icons + + - name: Exteral Link Sign + id: external-link-sign + unicode: f14c + created: 3.1 + categories: + - Web Application Icons + + - name: Share Sign + id: share-sign + unicode: f14d + created: 3.1 + categories: + - Web Application Icons + + - name: Compass + id: compass + unicode: f14e + created: 3.2 + categories: + - Web Application Icons + + + - name: Collapse + id: collapse + unicode: f150 + created: 3.2 + categories: + - Web Application Icons + + - name: Collapse Top + id: collapse-top + unicode: f151 + created: 3.2 + categories: + - Web Application Icons + + - name: Expand + id: expand + unicode: f152 + created: 3.2 + categories: + - Web Application Icons + + - name: Euro (EUR) + id: eur + unicode: f153 + created: 3.2 + aliases: + - euro + categories: + - Currency Icons + + - name: GBP + id: gbp + unicode: f154 + created: 3.2 + categories: + - Currency Icons + + - name: US Dollar + id: usd + unicode: f155 + created: 3.2 + aliases: + - dollar + categories: + - Currency Icons + + - name: Indian Rupee (INR) + id: inr + unicode: f156 + created: 3.2 + aliases: + - rupee + categories: + - Currency Icons + + - name: Japanese Yen (JPY) + id: jpy + unicode: f157 + created: 3.2 + aliases: + - yen + categories: + - Currency Icons + + - name: Renminbi (CNY) + id: cny + unicode: f158 + created: 3.2 + aliases: + - renminbi + categories: + - Currency Icons + + - name: Korean Won (KRW) + id: krw + unicode: f159 + created: 3.2 + aliases: + - won + categories: + - Currency Icons + + - name: Bitcoin (BTC) + id: btc + unicode: f15a + created: 3.2 + aliases: + - bitcoin + categories: + - Currency Icons + - Brand Icons + + - name: File + id: file + unicode: f15b + created: 3.2 + categories: + - Text Editor Icons + + - name: File Text + id: file-text + unicode: f15c + created: 3.2 + categories: + - Text Editor Icons + + - name: Sort By Alphabet + id: sort-by-alphabet + unicode: f15d + created: 3.2 + categories: + - Web Application Icons + + - name: Sort By Alphabet Alt + id: sort-by-alphabet-alt + unicode: f15e + created: 3.2 + categories: + - Web Application Icons + + + - name: Sort By Attributes + id: sort-by-attributes + unicode: f160 + created: 3.2 + categories: + - Web Application Icons + + - name: Sort By Attributes Alt + id: sort-by-attributes-alt + unicode: f161 + created: 3.2 + categories: + - Web Application Icons + + - name: Sort By Order + id: sort-by-order + unicode: f162 + created: 3.2 + categories: + - Web Application Icons + + - name: Sort By Order Alt + id: sort-by-order-alt + unicode: f163 + created: 3.2 + categories: + - Web Application Icons + + + - name: thumbs-up + id: thumbs-up + unicode: f164 + created: 3.2 + categories: + - Web Application Icons + + - name: thumbs-down + id: thumbs-down + unicode: f165 + created: 3.2 + categories: + - Web Application Icons + + - name: YouTube Sign + id: youtube-sign + unicode: f166 + created: 3.2 + categories: + - Brand Icons + + - name: YouTube + id: youtube + unicode: f167 + created: 3.2 + categories: + - Brand Icons + + - name: Xing + id: xing + unicode: f168 + created: 3.2 + categories: + - Brand Icons + + - name: Xing Sign + id: xing-sign + unicode: f169 + created: 3.2 + categories: + - Brand Icons + + - name: YouTube Play + id: youtube-play + unicode: f16a + created: 3.2 + categories: + - Brand Icons + - Video Player Icons + + - name: Dropbox + id: dropbox + unicode: f16b + created: 3.2 + categories: + - Brand Icons + + - name: Stack Exchange + id: stackexchange + unicode: f16c + created: 3.2 + categories: + - Brand Icons + + - name: Instagram + id: instagram + unicode: f16d + created: 3.2 + categories: + - Brand Icons + + - name: Flickr + id: flickr + unicode: f16e + created: 3.2 + categories: + - Brand Icons + + - name: App.net + id: adn + unicode: f170 + created: 3.2 + categories: + - Brand Icons + + - name: Bitbucket + id: bitbucket + unicode: f171 + created: 3.2 + categories: + - Brand Icons + + - name: Bitbucket Sign + id: bitbucket-sign + unicode: f172 + created: 3.2 + categories: + - Brand Icons + + - name: Tumblr + id: tumblr + unicode: f173 + created: 3.2 + categories: + - Brand Icons + + - name: Tumblr Sign + id: tumblr-sign + unicode: f174 + created: 3.2 + categories: + - Brand Icons + + - name: Long Arrow Down + id: long-arrow-down + unicode: f175 + created: 3.2 + categories: + - Directional Icons + + - name: Long Arrow Up + id: long-arrow-up + unicode: f176 + created: 3.2 + categories: + - Directional Icons + + - name: Long Arrow Left + id: long-arrow-left + unicode: f177 + created: 3.2 + categories: + - Directional Icons + + - name: Long Arrow Right + id: long-arrow-right + unicode: f178 + created: 3.2 + categories: + - Directional Icons + + - name: Apple + id: apple + unicode: f179 + created: 3.2 + categories: + - Brand Icons + + - name: Windows + id: windows + unicode: f17a + created: 3.2 + categories: + - Brand Icons + + - name: Android + id: android + unicode: f17b + created: 3.2 + categories: + - Brand Icons + + - name: Linux + id: linux + unicode: f17c + created: 3.2 + categories: + - Brand Icons + + - name: Dribbble + id: dribbble + unicode: f17d + created: 3.2 + categories: + - Brand Icons + + - name: Skype + id: skype + unicode: f17e + created: 3.2 + categories: + - Brand Icons + + + - name: Foursquare + id: foursquare + unicode: f180 + created: 3.2 + categories: + - Brand Icons + + - name: Trello + id: trello + unicode: f181 + created: 3.2 + categories: + - Brand Icons + + - name: Female + id: female + unicode: f182 + created: 3.2 + categories: + - Web Application Icons + + - name: Male + id: male + unicode: f183 + created: 3.2 + categories: + - Web Application Icons + + - name: Gittip + id: gittip + unicode: f184 + created: 3.2 + categories: + - Brand Icons + + - name: Sun + id: sun + unicode: f185 + created: 3.2 + categories: + - Web Application Icons + + - name: Moon + id: moon + unicode: f186 + created: 3.2 + categories: + - Web Application Icons + + - name: Archive + id: archive + unicode: f187 + created: 3.2 + categories: + - Web Application Icons + + - name: Bug + id: bug + unicode: f188 + created: 3.2 + categories: + - Web Application Icons + + - name: VK + id: vk + unicode: f189 + created: 3.2 + categories: + - Brand Icons + + - name: Weibo + id: weibo + unicode: f18a + created: 3.2 + categories: + - Brand Icons + + - name: Renren + id: renren + unicode: f18b + created: 3.2 + categories: + - Brand Icons diff --git a/library/font_awesome/src/3.2.1/icons/index.html b/library/font_awesome/src/3.2.1/icons/index.html new file mode 100644 index 000000000..c28cd9480 --- /dev/null +++ b/library/font_awesome/src/3.2.1/icons/index.html @@ -0,0 +1,1211 @@ + + + + + + + + + + Font Awesome Icons + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      The Icons

    +

    The complete set of 361 icons in Font Awesome 3.2.1

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + You asked, Font Awesome delivers with 58 shiny new icons in version 3.2. + Want to request new icons? Here's how. + + Need vectors or want to use on the desktop? Check the cheatsheet. +

    + +
    +
    +
    + +
    +
    +
    + + + + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    + + + + +
    + +
    + + + + +
    + +
    + + + + +
    + +
    + + + + +
    + +
    + + +
    +
      +
    • All brand icons are trademarks of their respective owners.
    • +
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • +
    + +
    + + +
    + +
    + + + + +
    + + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/index.html b/library/font_awesome/src/3.2.1/index.html new file mode 100644 index 000000000..751adca98 --- /dev/null +++ b/library/font_awesome/src/3.2.1/index.html @@ -0,0 +1,329 @@ + + + + + + + + + + Font Awesome, the iconic font designed for Bootstrap + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +
    +
    +
    +

    Font Awesome

    +

    The iconic font designed for Bootstrap

    + +
    + + GitHub Project   ·   + Version 3.2.1   ·   + Created & Maintained by Dave Gandy +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, + and anything that can be done with the power of CSS. +

    + +
    +
    +
    + +
    +
    +
    + + +
    +
    +
    +

    One Font, 361 Icons

    + In a single collection, Font Awesome is a pictographic language of web-related actions. +
    +
    +

    CSS Control

    + Easily style icon color, size, shadow, and anything that's possible with CSS. +
    +
    +

    Infinite Scalability

    + Scalable vector graphics means every icon looks awesome at any size. +
    +
    +

    Free, as in Speech

    + Font Awesome is completely free for commercial use. Check out the license. +
    +
    +

    IE7 Support

    + Font Awesome supports IE7. If you need it, you have my condolences. +
    +
    +

    Perfect on Retina Displays

    + Font Awesome icons are vectors, which mean they're gorgeous on high-resolution displays. +
    +
    +

    Made for Bootstrap

    + Designed from scratch to be fully compatible with Bootstrap 2.3.2. +
    +
    +

    Desktop Friendly

    + To use on the desktop or for a complete set of vectors, + check out the cheatsheet. +
    +
    +

    Screen Reader Compatible

    + Font Awesome won't trip up screen readers, unlike other icon fonts. +
    +
    +
    + +
    + +
    +
    +

    + Thanks to @robmadole and + @supercodepoet for icon design + review, advice, some Jekyll help, and being all around badass coders. +

    +
    +
    +

    + Thanks to @grantgordon and + @johnsmclay for developing and hosting + icnfnt, the best way to subset Font Awesome. +

    +
    +
    +

    + Thanks to MaxCDN for providing the excellent + BootstrapCDN, the fastest and easiest way to + get started with Font Awesome. +

    +
    +
    +
    + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/license/index.html b/library/font_awesome/src/3.2.1/license/index.html new file mode 100644 index 000000000..e37dea886 --- /dev/null +++ b/library/font_awesome/src/3.2.1/license/index.html @@ -0,0 +1,270 @@ + + + + + + + + + + Font Awesome License + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      License

    +

    The full details of how Font Awesome is licensed

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Font Awesome is fully open source and is GPL compatible. You can use it for commercial projects, open source + projects, or really just about whatever you want. +

    + +
    +
    +
    + +
    +
    +
    + + +
    +
    +
      +
    • + Attribution is no longer required as of Font Awesome 3.0 but is much appreciated: + "Font Awesome by Dave Gandy - http://fontawesome.io". +
    • +
    +
    +
    + +
    + +
      +
    • + Applies to all desktop and webfont files in the following directory: + font-awesome/font/. +
    • +
    • License: SIL OFL 1.1
    • +
    • URL: http://scripts.sil.org/OFL
    • +
    +
    + +
    + + +
    + +
    + + +
    + +
    + +
      +
    • All brand icons are trademarks of their respective owners.
    • +
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • +
    + +
    + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/test/index.html b/library/font_awesome/src/3.2.1/test/index.html new file mode 100644 index 000000000..42557221c --- /dev/null +++ b/library/font_awesome/src/3.2.1/test/index.html @@ -0,0 +1,1056 @@ + + + + + + + + + + Font Awesome Visual Test Cases + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +

    Visual Test Cases

    + +

    Icons Icons should have proper alignment and not be clipped

    +
    +
    +
    + Building +
    +
    +
    +
    + Building Large +
    +
    +
    + Building +
    +
    + Building Large +
    +
    +
    +
    +
    + Building +
    +
    +
    +
    + Building Large +
    +
    +
    + Building Large +
    +
    +
    +
    +
    + Circle +
    +
    +
    +
    + Circle Large +
    +
    +
    + Circle +
    +
    + Circle Large +
    +
    +
    +
    +
    + Circle +
    +
    +
    +
    + Circle Large +
    +
    +
    + Circle Large +
    +
    + + +

    Links with Icons icon should activate link & underline

    + + + + +

    Navbar should stay same height

    + + + +

    Plain buttons next to buttons w/icons should be same height, icons not clipped

    +

    Buttons

    +
    +
    +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    +
    +
    +
    +
    +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    + + + +
    +
    +
    +
    + + +

    Anchors

    +
    +
    +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    +
    +
    +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    +
    +
    +
    +
    +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    +
    +
    +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    + Button + Button + +
    +
    +
    +
    + + +

    Buttons with pulled 2x, 3x, 4x should be same height, have correct line height

    + + + +

    Nav pills & nav tabs should be same height and properly vertically aligned

    + + + + +

    2x, 3x, 4x icons in text should have margins next to and below text

    +
    +
    +

    + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. +

    +
    +
    +

    + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. +

    +
    +
    +
    +
    + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. +
    +
    + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. +
    +
    + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. +
    +
    + + +

    Bullets should wrap appropriately, have proper spacing

    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. + + foo + foo +
    • +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. + + foo + foo +
    • +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. + + foo + foo +
    • +
    +
    +
    +
    + + +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    +
    +
      +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • +
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • +
    +
    +
    +
    + + +

    Spinning icons icons should be aligned well and on center, buttons should be same height, won't work in ie7

    +
    + Loading... + + + Loading... + + Loading... +
    +
    + Loading... + + + Loading... + +
    +
    + Loading... + + + Loading... + +
    +

    icon-large

    +
    + Loading... + + + Loading... + +
    +
    + Loading... + + + Loading... + +
    +
    + Loading... + + + Loading... + +
    +

    Bootstrap Prepend and Append

    +
    +
    +
    + + +
    +
    +
    +
    + + +
    +
    +
    + +

    Stacked icons

    +
    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +
    +
    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +

    + + + + + Twitter Icon + + + + + Facebook Icon + + + + + GitHub Icon +

    +
    +

    Stacked icons inside anchor

    + + + +

    Mirrored and rotated icons

    +
    +
    +
    +   normal
    +  icon-rotate-90
    +  icon-rotate-180
    +  icon-rotate-270
    +  icon-flip-horizontal
    +  icon-flip-vertical + +
    +
    +
    +
    +   normal
    +  icon-rotate-90
    +  icon-rotate-180
    +  icon-rotate-270
    +  icon-flip-horizontal
    +  icon-flip-vertical + +
    +
    +
    +

    Mirrored and rotated icons inside anchors and buttons

    + + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/3.2.1/whats-new/index.html b/library/font_awesome/src/3.2.1/whats-new/index.html new file mode 100644 index 000000000..4effebab8 --- /dev/null +++ b/library/font_awesome/src/3.2.1/whats-new/index.html @@ -0,0 +1,442 @@ + + + + + + + + + + What's New + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + +
    +
    +

      What's New

    +

    What's New in the latest version — Font Awesome 3.2

    +
    +
    + +
    +
    + +
    +
    + + +
    + +
    +
    +
    +
    + Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! +
    +
    +
    +
    +
    +
    +
    + +

    + Font Awesome is always getting a little awesome-er. So here's what's new in the latest version, Font Awesome + 3.2. Have some ideas for new features? + Help contribute. +

    + +
    +
    +
    + +
    +
    +
    + + +
    +
    +
    +

    58 New Icons in 3.2

    + Requested by the active community on the Font Awesome GitHub project. +
    +
    +

    SCSS Support

    + A long term solution is now in place for SCSS support. Need SASS? Try sass-convert. +
    +
    +

    Better & Simpler License

    + SIL OFL 1.1 for font, MIT license for code. No more attribution required, but much appreciated. +
    +
    +

    Pixel Perfection at 14px

    + Version 3 was re-created from the ground up to be razor sharp at Bootstrap's default 14px. +
    +
    +

    Font Subsetting

    + Thanks to @grantgordon and @johnsmclay, you can subset to get just the icons you need. +
    +
    +

    Want More Details?

    + Check out the CHANGELOG on the GitHub project to see + what's new and changed. +
    +
    +
    + +
    + +
    +
    +

    Rotated and Flipped Icons

    +
    +   normal
    +   icon-rotate-90
    +   icon-rotate-180
    +   icon-rotate-270
    +   icon-flip-horizontal
    +   icon-flip-vertical +
    +
    +
    +

    Stacked Icons

    +
    + + + + + icon-twitter on icon-check-empty
    + + + + + icon-flag on icon-circle
    + + + + + icon-terminal on icon-sign-blank +
    +
    +
    +

    Better Bulleted Lists

    +
    +
      +
    • New bulleted lists
    • +
    • Fix some old bugs
    • +
    • And deal with arbitrary
    • +
    • Font sizes better
    • +
    +
    +
    +
    +
    + +
    + + +
    + You asked, Font Awesome delivers with 58 shiny new icons in version 3.2. + Want to request new icons? Here's how. +
    + + + + +
    + +
    + +
    +
    + + + + + + + + + + + diff --git a/library/font_awesome/src/README.md-nobuild b/library/font_awesome/src/README.md-nobuild index 3071c00f9..e155b7b67 100644 --- a/library/font_awesome/src/README.md-nobuild +++ b/library/font_awesome/src/README.md-nobuild @@ -22,6 +22,10 @@ Get started at {{ site.fontawesome.url }}! - Full details: http://fontawesome.io/license/ ## Changelog +- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) +- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117) - [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962) - [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed) - [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed) @@ -57,7 +61,7 @@ And constructed with the following guidelines: * Breaking backward compatibility bumps the major (and resets the minor and patch) * New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) -* Bug fixes and misc changes bumps the patch +* Bug fixes, changes to brand logos, and misc changes bumps the patch For more information on SemVer, please visit http://semver.org. diff --git a/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html b/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html new file mode 100644 index 000000000..624e0fcec --- /dev/null +++ b/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html @@ -0,0 +1,21 @@ +
    +
    +
    +

    + + Use Font Awesome CDN's auto accessibility +

    + +

    Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. You only need turn on a setting, use our simple syntax, and any icons you use will have all of the best practices and manual techniques below applied automatically.

    +
    + + +
    + +
    diff --git a/library/font_awesome/src/_includes/accessibility/accessibility-manual.html b/library/font_awesome/src/_includes/accessibility/accessibility-manual.html new file mode 100644 index 000000000..c886ba85b --- /dev/null +++ b/library/font_awesome/src/_includes/accessibility/accessibility-manual.html @@ -0,0 +1,121 @@ +
    + +

    + + Manually make your icons accessible +

    + +

    When using icons in your UI, there are manual techniques and ways to help assistive technology either ignore or better understand Font Awesome.

    + +

    Icons used for pure decoration or visual styling

    +

    If you're using an icon to add some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Additionally, if you're using an icon to visually re-emphasize or add styling to content already present in your HTML, it does not need to be repeated to an assistive technology-using user. You can make sure this is not read by adding the aria-hidden="true" to your Font Awesome markup.

    + +
    +{% highlight html %} + +{% endhighlight %} +an icon being used as pure decoration +
    + +
    +{% highlight html %} +

    + + Pied Piper, A Middle-Out Compression Solution Making Data Storage Problems Smaller +

    +{% endhighlight %} +an icon being used as a logo +
    + +
    +{% highlight html %} + View this project's code on Github +{% endhighlight %} +an icon being used in front of link text +
    + +

    Icons with semantic or interactive purpose

    +

    + If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies. This goes for content you're abbreviating via icons as well as interactive controls (buttons, form elements, toggles, etc.). There are a few techniques to accomplish this: +

    + +

    If an icon is not an interactive element

    +

    + The simplest way to provide a text alternative is to use the aria-hidden="true" attribute on the icon and to include the text with an additional element, such as a <span>, with appropriate CSS to visually hide the element while keeping it accessible to assistive technologies. In addition, you can add a title attribute on the icon to provide a tooltip for sighted mouse users. +

    + +
    +{% highlight html %} +
    +
    + + Time to destination by car: +
    +
    4 minutes
    + +
    + + Time to destination by bike: +
    +
    12 minutes
    +
    +{% endhighlight %} + an icon being used to communicate travel methods +
    + +
    +{% highlight html %} + +60 minutes remain in your exam + + +30 minutes remain in your exam + + +0 minutes remain in your exam +{% endhighlight %} + an icon being used to denote time remaining +
    + +

    If an icon represents an interactive element

    +

    + In the case of focusable interactive elements, there are various options to include an alternative text or label to the element, without the need for any visually hidden <span> or similar. For instance, simply adding the aria-label attribute with a text description to the interactive element itself will be sufficient to provide an accessible alternative name for the element. If you need to provide a visual tooltip on mouseover/focus, we recommend additionally using the title attribute or a custom tooltip solution. +

    + +
    +{% highlight html %} + + + +{% endhighlight %} + an icon being used to communicate shopping cart state +
    + +
    +{% highlight html %} + + + +{% endhighlight %} + an icon being used as a link to a navigation menu +
    + +
    +{% highlight html %} + + + +{% endhighlight %} + an icon being used as a delete button's symbol with a title attribute to provide a native mouse tooltip +
    + + + +
    diff --git a/library/font_awesome/src/_includes/accessibility/background.html b/library/font_awesome/src/_includes/accessibility/background.html index 5ca864826..da97e4762 100644 --- a/library/font_awesome/src/_includes/accessibility/background.html +++ b/library/font_awesome/src/_includes/accessibility/background.html @@ -1,7 +1,7 @@ -
    - +
    +

    About Icon Fonts & Accessibility

    - Modern versions of assistive technology, like screen readers, will read CSS generated content (how Font Awesome icons are rendered), as well as specific Unicode characters. When trying our default markup for rendering icons, assisistive technology may have the following problems. + Modern versions of assistive technology, like screen readers, will read CSS generated content (how Font Awesome icons are rendered), as well as specific Unicode characters. When reading our default markup for rendering icons, assisistive technology may have the following problems.

      diff --git a/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html b/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html new file mode 100644 index 000000000..61d4fe3a6 --- /dev/null +++ b/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html @@ -0,0 +1,11 @@ +
      +
      + + + +
      +

      Automate your icons' accessibility

      +

      Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. You only need turn on a setting and any icons you use will have all of the best practices we recommend applied automatically.

      + + Get Automated Accessibility +
      diff --git a/library/font_awesome/src/_includes/accessibility/other.html b/library/font_awesome/src/_includes/accessibility/other.html index 8a1078383..d3054ba8c 100644 --- a/library/font_awesome/src/_includes/accessibility/other.html +++ b/library/font_awesome/src/_includes/accessibility/other.html @@ -1,7 +1,7 @@ -
      +

      - While the scenarios and techniques above help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision who need a high color contrast ratio to see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend. + While the scenarios and techniques here help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision who need a high color contrast ratio to see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend.

      + diff --git a/library/font_awesome/src/_includes/accessibility/using-with-accessibility.html b/library/font_awesome/src/_includes/accessibility/using-with-accessibility.html deleted file mode 100644 index 86e6d609c..000000000 --- a/library/font_awesome/src/_includes/accessibility/using-with-accessibility.html +++ /dev/null @@ -1,127 +0,0 @@ -
      - -

      - When using icons in your UI, there are ways to help assistive technology either ignore or better understand Font Awesome. -

      - -

      Icons used for pure decoration or visual styling

      -

      - If you're using an icon to add some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Additionally, if you're using an icon to visually re-emphasize or add styling to content already present in your HTML, it does not need to be repeated to an assistive technology-using user. You can make sure this is not read by adding the aria-hidden="true" to your Font Awesome markup. -

      - -
      -{% highlight html %} - -{% endhighlight %} -an icon being used as pure decoration -
      - -
      -{% highlight html %} -

      - - Pied Piper, A Middle-Out Compression Solution Making Data Storage Problems Smaller -

      -{% endhighlight %} -an icon being used as a logo -
      - -
      -{% highlight html %} - View this project's code on Github -{% endhighlight %} -an icon being used in front of link text -
      - -

      Icons with semantic or interactive purpose

      -

      - If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies. This goes for content you're abbreviating via icons as well as interactive controls (buttons, form elements, toggles, etc.). There are a few techniques to accomplish this: -

      - -

      If an icon is not an interactive element

      -

      - The simplest way to provide a text alternative is to use the aria-hidden="true" attribute on the icon and to include the text with an additional element, such as a <span>, with appropriate CSS to visually hide the element while keeping it accessible to assistive technologies. In addition, you can add a title attribute on the icon to provide a tooltip for sighted mouse users. -

      - -
      -{% highlight html %} -
      -
      - - Time to destination by car: -
      -
      4 minutes
      - -
      - - Time to destination by bike: -
      -
      12 minutes
      -
      -{% endhighlight %} - an icon being used to communicate travel methods -
      - -
      -{% highlight html %} - -60 minutes remain in your exam - - -30 minutes remain in your exam - - -0 minutes remain in your exam -{% endhighlight %} - an icon being used to denote time remaining -
      - -

      If an icon represents an interactive element

      -

      - In the case of focusable interactive elements, there are various options to include an alternative text or label to the element, without the need for any visually hidden <span> or similar. For instance, simply adding the title attribute to the interactive element itself will be sufficient to provide an accessible alternative name for the element, as well as providing the mouse tooltip. -

      - -
      -{% highlight html %} - - - -{% endhighlight %} - an icon being used to communicate shopping cart state -
      - -
      -{% highlight html %} - - - -{% endhighlight %} - an icon being used as a link to a navigation menu - -{% highlight html %} - - - -{% endhighlight %} - an icon being used as a delete button's symbol - -
      -
      - -
      - -
      - - diff --git a/library/font_awesome/src/_includes/brand-license.html b/library/font_awesome/src/_includes/brand-license.html index 79696801e..731aa354a 100644 --- a/library/font_awesome/src/_includes/brand-license.html +++ b/library/font_awesome/src/_includes/brand-license.html @@ -2,4 +2,5 @@
    • All brand icons are trademarks of their respective owners.
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • Brand icons should only be used to represent the company or product to which they refer.
    • +
    • Please do not use brand logos for any purpose except to represent that particular brand or service.
    diff --git a/library/font_awesome/src/_includes/community/requesting-new-icons.html b/library/font_awesome/src/_includes/community/requesting-new-icons.html index e73f41c35..d08aa16ff 100644 --- a/library/font_awesome/src/_includes/community/requesting-new-icons.html +++ b/library/font_awesome/src/_includes/community/requesting-new-icons.html @@ -7,7 +7,7 @@

    1. Please be nice. Font Awesome is a happy place.
    2. -
    3. Please search to see if your icon request already exists. If a request is found, please +1 that one.
    4. +
    5. Please search to see if your icon request already exists. If a request is found, please add a 👍 reaction to that one.
    6. Please make requests for single icons, unless you are requesting a couple of strictly related icons (e.g., thumbs-up/thumbs-down).
    7. diff --git a/library/font_awesome/src/_includes/examples/accessible.html b/library/font_awesome/src/_includes/examples/accessible.html index 2f51aed9c..0360a4621 100644 --- a/library/font_awesome/src/_includes/examples/accessible.html +++ b/library/font_awesome/src/_includes/examples/accessible.html @@ -5,19 +5,16 @@

      - - - Settings + + - - - Delete + + - - - Skip to main navigation + +

      @@ -41,9 +38,8 @@

      - - - View 3 items in your shopping cart + +

      @@ -58,19 +54,16 @@

      {% highlight html %} - - - Settings + + - - - Delete + + - - - Skip to main navigation + + {% endhighlight %} @@ -94,9 +87,8 @@ {% endhighlight %} {% highlight html %} - - - View 3 items in your shopping cart + + {% endhighlight %} diff --git a/library/font_awesome/src/_includes/examples/animated.html b/library/font_awesome/src/_includes/examples/animated.html index 960ebd182..927e98bbd 100644 --- a/library/font_awesome/src/_includes/examples/animated.html +++ b/library/font_awesome/src/_includes/examples/animated.html @@ -31,19 +31,19 @@ with 8 steps. Works well with fa-spinner, fa-refresh, and fa-cog.

      {% highlight html %} - + Loading... - + Loading... - + Loading... - + Loading... - + Loading... {% endhighlight %}

      diff --git a/library/font_awesome/src/_includes/examples/basic.html b/library/font_awesome/src/_includes/examples/basic.html index 2b691a0b5..c00fb4787 100644 --- a/library/font_awesome/src/_includes/examples/basic.html +++ b/library/font_awesome/src/_includes/examples/basic.html @@ -10,7 +10,7 @@

      - + Example: basic icon fa-camera-retro

      @@ -22,7 +22,7 @@ brevity, but using a <span> is more semantically correct).

      {% highlight html %} - fa-camera-retro + fa-camera-retro {% endhighlight %}
        diff --git a/library/font_awesome/src/_includes/examples/bootstrap.html b/library/font_awesome/src/_includes/examples/bootstrap.html index 0d6c03b8f..bcc6c0171 100644 --- a/library/font_awesome/src/_includes/examples/bootstrap.html +++ b/library/font_awesome/src/_includes/examples/bootstrap.html @@ -4,13 +4,13 @@

        - Delete + Delete - Settings + Settings

        - Font Awesome
        Version {{ site.fontawesome.version }}
        + Font Awesome
        Version {{ site.fontawesome.version }}

        @@ -30,26 +30,26 @@
        - +
        - +
        @@ -61,12 +61,12 @@

        {% highlight html %} - Delete + Delete - Settings + Settings - Font Awesome
        Version {{ site.fontawesome.version }}
        + Font Awesome
        Version {{ site.fontawesome.version }} {% endhighlight %} diff --git a/library/font_awesome/src/_includes/examples/bordered-pulled.html b/library/font_awesome/src/_includes/examples/bordered-pulled.html index 33f9922ed..b7841f0c2 100644 --- a/library/font_awesome/src/_includes/examples/bordered-pulled.html +++ b/library/font_awesome/src/_includes/examples/bordered-pulled.html @@ -10,7 +10,7 @@

        - …tomorrow we will run faster, stretch out our arms farther… And then one fine morning— + …tomorrow we will run faster, stretch out our arms farther… And then one fine morning— So we beat on, boats against the current, borne back ceaselessly into the past.

        @@ -22,7 +22,7 @@ {% highlight html %} ...tomorrow we will run faster, stretch out our arms farther... -And then one fine morning— So we beat on, boats against the +And then one fine morning— So we beat on, boats against the current, borne back ceaselessly into the past. {% endhighlight %}
        diff --git a/library/font_awesome/src/_includes/examples/list.html b/library/font_awesome/src/_includes/examples/list.html index a708902be..1c7f3008f 100644 --- a/library/font_awesome/src/_includes/examples/list.html +++ b/library/font_awesome/src/_includes/examples/list.html @@ -9,20 +9,20 @@
          -
        • List icons
        • -
        • can be used
        • -
        • as bullets
        • -
        • in lists
        • +
        • List icons
        • +
        • can be used
        • +
        • as bullets
        • +
        • in lists

        Use fa-ul and fa-li to easily replace default bullets in unordered lists.

        {% highlight html %}
          -
        • List icons
        • -
        • can be used
        • -
        • as bullets
        • -
        • in lists
        • +
        • List icons
        • +
        • can be used
        • +
        • as bullets
        • +
        • in lists
        {% endhighlight %}
        diff --git a/library/font_awesome/src/_includes/footer.html b/library/font_awesome/src/_includes/footer.html index e299adf2e..d15a65524 100644 --- a/library/font_awesome/src/_includes/footer.html +++ b/library/font_awesome/src/_includes/footer.html @@ -1,17 +1,12 @@
        diff --git a/library/font_awesome/src/_includes/thanks-to.html b/library/font_awesome/src/_includes/thanks-to.html index e48a65f06..8aebf591c 100644 --- a/library/font_awesome/src/_includes/thanks-to.html +++ b/library/font_awesome/src/_includes/thanks-to.html @@ -18,7 +18,7 @@

        Thanks to MaxCDN for providing the excellent - BootstrapCDN, the fastest and easiest way to + BootstrapCDN, the fastest and easiest way to get started with Font Awesome.

        diff --git a/library/font_awesome/src/_layouts/base.html b/library/font_awesome/src/_layouts/base.html index 546120a1c..2e0cf9ded 100644 --- a/library/font_awesome/src/_layouts/base.html +++ b/library/font_awesome/src/_layouts/base.html @@ -39,22 +39,13 @@ -
        {% include navbar.html %} {{ content }} -
        {% include footer.html %} - + {% include modals/kickstarter.html %} @@ -66,5 +57,32 @@ + + + + + + + + diff --git a/library/font_awesome/src/accessibility.html b/library/font_awesome/src/accessibility.html index 3968e99df..f201921ab 100644 --- a/library/font_awesome/src/accessibility.html +++ b/library/font_awesome/src/accessibility.html @@ -2,27 +2,38 @@ layout: base title: Font Awesome & Accessibility navbar_active: accessibility +view_class: v-accessibility relative_path: ../ --- {% capture jumbotron_h1 %}  Accessibility{% endcapture %} {% capture jumbotron_p %}Make your icons awesome for all of your users{% endcapture %} {% include jumbotron.html %} -{% include stripe-social.html %}
        - {% capture stripe_ad_content %} -

        - Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. Its important that we create and use them so that they can reach the largest amount of people possible. -

        +
        +
        +
        +

        + Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. It's important that we create and use them so that they can reach the largest amount of people possible. +

        +
        +
        + {% include accessibility/background.html %} +
        +
        +
        -

        - When creating web sites and apps, that means making sure our icons play well with assistive tech when users are navigating apps and sites. -

        - {% endcapture %} - {% include stripe-ad.html %} + - {% include accessibility/background.html %} - {% include accessibility/using-with-accessibility.html %} + {% include accessibility/accessibility-facdn.html %} + +
        + or +
        + + {% include accessibility/accessibility-manual.html %} {% include accessibility/other.html %}
        diff --git a/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf b/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf index 59853bcda..401ec0f36 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf and b/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot index 96f92f9b8..e9f60ca95 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot and b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg index 5a5f0ecd4..855c845e5 100644 --- a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg +++ b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg @@ -1,685 +1,2671 @@ - - + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf index 86784df96..35acda2fa 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf and b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff index c7faa19c4..400014a4b 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff and b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 index cab8571d5..4d13fc604 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 and b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/library/font_awesome/src/assets/img/logo-approveme.png b/library/font_awesome/src/assets/img/logo-approveme.png deleted file mode 100644 index 3d9a0a476..000000000 Binary files a/library/font_awesome/src/assets/img/logo-approveme.png and /dev/null differ diff --git a/library/font_awesome/src/assets/img/logo-themeisle.png b/library/font_awesome/src/assets/img/logo-themeisle.png index 6fa5fb0c3..c0f432867 100644 Binary files a/library/font_awesome/src/assets/img/logo-themeisle.png and b/library/font_awesome/src/assets/img/logo-themeisle.png differ diff --git a/library/font_awesome/src/assets/img/logo-wpbeginner.png b/library/font_awesome/src/assets/img/logo-wpbeginner.png index 7a2523f86..c0711153f 100644 Binary files a/library/font_awesome/src/assets/img/logo-wpbeginner.png and b/library/font_awesome/src/assets/img/logo-wpbeginner.png differ diff --git a/library/font_awesome/src/assets/js/monetization.js b/library/font_awesome/src/assets/js/monetization.js new file mode 100644 index 000000000..0e3c2a730 --- /dev/null +++ b/library/font_awesome/src/assets/js/monetization.js @@ -0,0 +1 @@ +var _bsa={init:function(format,zoneKey,segment,options){var options=typeof options!=='undefined'?options:false;var srv=document.createElement('script');srv.id='_bsa_srv-'+zoneKey;srv.type='text/javascript';srv.src=(options&&options.path)?options.path:'//srv.buysellads.com/ads/'+zoneKey+'.json';srv.src=this.appendQueryString(srv.src,'callback','_bsa_go');if(segment)srv.src=this.appendQueryString(srv.src,'segment',segment);if(options&&this.isset(options.ip))srv.src=this.appendQueryString(srv.src,'forwardedip',options.ip);if(!this.isset(window['_bsa_queue']))window['_bsa_queue']=[];if(options&&!this.isset(options.platforms)||!this.isset(options))options.platforms=['desktop','mobile'];if(_bsa[format].readyToInit!=false||(options&&options.testMode)||!_bsa.objExists(zoneKey))window['_bsa_queue'].push([format,zoneKey,segment,options]);if(_bsa[format].readyToInit!=false&&!options.testMode){srv.src+=this.frequencyCap();if(_bsa.objExists(zoneKey))document.getElementsByTagName('head')[0].appendChild(srv)}else if((options&&options.testMode)||!_bsa.objExists(zoneKey))_bsa_go(_bsa[format].testData);else _bsa[format](zoneKey,segment,options)},frequencyCap:function(){var day=_bsa.getCookie('_bsap_daycap'),life=_bsa.getCookie('_bsap_lifecap'),day=this.isset(day)?day.split(';')[0].split(','):[],life=this.isset(life)?life.split(';')[0].split(','):[];if(day.length||life.length){var freqcap=[];for(var i=0;i0)fulllink=l[0]+'?segment='+window['_bsa_queue'][2]+';';else fulllink=l[0];fulllink=fulllink.replace('[publisher]',window['_bsa_queue'][2]);fulllink=fulllink.replace('[timestamp]',time);return fulllink},drop:function(output,target,elType,idName){var div=document.createElement(elType);div.id=idName;div.innerHTML=output;if(!this.isset(target))where='body';for(i=0;i0)return true;if(obj.length===0)return false;for(var key in obj)if(hasOwnProperty.call(obj,key))return true;return false},getAttr:function(v,id){return document.getElementById(id).getAttribute('data-'+v)},getUrlVar:function(el,name){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)",regex=new RegExp(regexS),results=regex.exec(el.src);if(results==null)return'';else return results[1]}};var _bsa_go=function(json){if(window['_bsa_queue'][0])if((window['_bsa_queue'][0][3]&&window['_bsa_queue'][0][3].platforms.indexOf('mobile')>-1&&_bsa.isMobile())||(window['_bsa_queue'][0][3]&&window['_bsa_queue'][0][3].platforms.indexOf('desktop')>-1&&!_bsa.isMobile()))for(i=json['ads'].length-1;i>=0;i--)if(json['ads'][i].statlink==null)json['ads'].splice(i,1);if(_bsa.isset(json['ads'][0].statlink)){for(var i=0;i=0?c.substring(i+w.length+1).split(';')[0]+',':'',d=new Date();d.setTime(days*3600000+d);data=existing+data;data=data.substring(0,2048);document.cookie=w+'='+data+'; expires='+d.toGMTString()+'; path=\/'};if(freqcap){append('_bsap_daycap',banner,1);append('_bsap_lifecap',banner,365)}};_bsa.default=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.default.elID=function(options){return(options&&options.id)?options.id:'_default_'};_bsa.default.align=function(options){return(options&&options.align)?options.align:'vertical'};function css(colors){var c='';return c}function template(ads){var c='ad';for(var i=0;i'+ads[i].title+''+ads[i].description+''+(_bsa.isset(ads[i].pixel)?'':'')+'';return c}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),options.target,'div',_bsa.default.elID(options));_bsa.clearQueue()}};_bsa.default.readyToInit=true;_bsa.default.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/80x80/000/1a1b1c',title:'This is a title',description:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAAFVBMVEUAAAAaGxwJCgoDAwMNDQ4GBgcQEBGUR2suAAAAb0lEQVR4Ae3RMYoGMQxDYeEnz/2PvIGw05gpXP6grwoPVATrJ0VERERERBWSur/7jsHogee7b1BSH/cldDD7grut0mFJWDKjb1SV5XeIzegbhYSLd2jPvnEn1P89DR59xVXmfvBoJJh9ioiIiIiIPyBgActqvt8OAAAAAElFTkSuQmCC'}]};_bsa.imageonly=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.default.elID=function(options){return(options&&options.id)?options.id:zoneKey};_bsa.default.align=function(options){return(options&&options.align)?options.align:'vertical'};function css(colors){var c='';return c}function template(ads){var c='';for(var i=0;i'+ads[i].alt+''+(_bsa.isset(ads[i].pixel)?'':'')+'';return c}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),options.target,'div',_bsa.default.elID(options));_bsa.clearQueue()}};_bsa.imageonly.readyToInit=true;_bsa.imageonly.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/80x80/000/1a1b1c',title:'This is a title',description:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAAFVBMVEUAAAAaGxwJCgoDAwMNDQ4GBgcQEBGUR2suAAAAb0lEQVR4Ae3RMYoGMQxDYeEnz/2PvIGw05gpXP6grwoPVATrJ0VERERERBWSur/7jsHogee7b1BSH/cldDD7grut0mFJWDKjb1SV5XeIzegbhYSLd2jPvnEn1P89DR59xVXmfvBoJJh9ioiIiIiIPyBgActqvt8OAAAAAElFTkSuQmCC'}]};_bsa.fancybar=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.fancybar.elID=function(options){return(options&&options.id)?options.id:'_fbn_'};function css(colors){var c=colors[0],barcolor=_bsa.isset(c)&&_bsa.isHex(c.barcolor)?c.barcolor:_bsa.fancybar.testData.ads[0].barcolor,barcolorHover=_bsa.isset(c)&&_bsa.isHex(c.barcolorHover)?c.barcolorHover:_bsa.fancybar.testData.ads[0].barcolorHover,callToActionTextColor=_bsa.isset(c)&&_bsa.isHex(c.callToActionTextColor)?c.callToActionTextColor:_bsa.fancybar.testData.ads[0].callToActionTextColor,callToActionColor=_bsa.isset(c)&&_bsa.isHex(c.callToActionColor)?c.callToActionColor:_bsa.fancybar.testData.ads[0].callToActionColor,callToActionColorHover=_bsa.isset(c)&&_bsa.isHex(c.callToActionColorHover)?c.callToActionColorHover:_bsa.fancybar.testData.ads[0].callToActionColorHover,callToActionTextColorHover=_bsa.isset(c)&&_bsa.isHex(c.callToActionTextColorHover)?c.callToActionTextColorHover:_bsa.fancybar.testData.ads[0].callToActionTextColorHover,textcolor=_bsa.isset(c)&&_bsa.isHex(c.textcolor)?c.textcolor:_bsa.fancybar.testData.ads[0].textcolor,textcolorHover=_bsa.isset(c)&&_bsa.isHex(c.textcolorHover)?c.textcolorHover:_bsa.fancybar.testData.ads[0].textcolorHover,barcolorHover=_bsa.isset(c)&&_bsa.isHex(c.barcolorHover)?c.barcolorHover:_bsa.fancybar.testData.ads[0].barcolorHover;return''}function template(ads){var a=ads[0],link=_bsa.isset(a)&&_bsa.isset(a.statlink)?_bsa.link(a.statlink):_bsa.fancybar.testData.ads[0].statlink,image=_bsa.isset(a)&&_bsa.isset(a.image)?a.image:_bsa.fancybar.testData.ads[0].image,base64=_bsa.isset(a)&&_bsa.isset(a.base64)?a.base64:_bsa.fancybar.testData.ads[0].base64,text=_bsa.isset(a)&&_bsa.isset(a.text)?a.text:_bsa.fancybar.testData.ads[0].text,calltoaction=_bsa.isset(a)&&_bsa.isset(a.calltoaction)?a.calltoaction:_bsa.fancybar.testData.ads[0].calltoaction,pixel=_bsa.isset(a)&&_bsa.isset(a.pixel)?a.pixel:null,time=Date.now()/1000|0;return'
        x'+calltoaction+''+text+''+(_bsa.isset(pixel)?'':'')+'
        '}if(!_bsa.getCookie(_bsa.fancybar.elID(options))){var _fancybar_didScroll;var _fancybar_didDrop=false;window.onscroll=function(){_fancybar_didScroll=true};var _fancybar_scrollInterval=setInterval(function(){if(_fancybar_didScroll&&!_bsa.getCookie(_bsa.fancybar.elID(options))){_fancybar_didScroll=false;var scrollTop=(window.pageYOffset!==undefined)?window.pageYOffset:(document.documentElement||document.body.parentNode||document.body).scrollTop;if(scrollTop>=100&&!document.getElementById(_bsa.fancybar.elID(options))){_bsa.fancybar.readyToInit=true;_bsa.init('fancybar',zoneKey,segment,options)}else if(scrollTop>=100){_bsa.show(_bsa.fancybar.elID(options))}if(scrollTop<100){_bsa.hide(_bsa.fancybar.elID(options))}}},500)}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),'body','div',_bsa.fancybar.elID(options));_bsa.clearQueue()}};_bsa.fancybar.readyToInit=false;_bsa.fancybar.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/125x50/000/1a1b1c',text:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH0AAAAyBAMAAACDoMmvAAAAG1BMVEUAAAAaGxwGBgcNDQ4QEBEWFxgJCgoDAwMTFBUu0R9eAAABlElEQVRIie2TsVLCQBCGjyQkluIIUh6jqKWoKGVmEGqQMVIeM2AsAQdtkQjDY7ubDclxSbSwsLl/JrfH7X67e5vAmJaWltZfdYqLM9520d6ArpQAEw8xpvUl0rhZwrURvDSfwR5n8IU28aPu+Xqa4jsjXH14tlDiJKPBGUHGEWNWT3Uu3JoU5xxm8WSK2NdA8TkDFvNFwYwsviaZieKzxT4f92cKzO7itk4nLekuGelhTpzZy90PowLLIhzlK520wxo8n4fe7FVneB8dC7xcyJ89BVB2g/sDkc970HXVf+/wXQNUnjU2H+PH0A28+nIT3oS7O5xseO5Hw57D0/ydr+1G45ExSlIszHbzM4+fB+mBjNMXSZDlsiDKk8PXY88tmcV1JQkyXUpb4Dm84cUHVB+/rKQY1J9IxdK8FEuZYPhG0gD0PeNx7jRvx7dndi8qLyeF4tZSHpLCN3m4N33mNMKtiYM2lri9m7I35IZTNkmPn/gSCjr+HPZXasBleV3FnFa576m+lObpPwhzLvatlpbW/+obifk8WyshfY8AAAAASUVORK5CYII='}]}; \ No newline at end of file diff --git a/library/font_awesome/src/assets/js/site.js b/library/font_awesome/src/assets/js/site.js index f64dde81d..f92d2fa50 100644 --- a/library/font_awesome/src/assets/js/site.js +++ b/library/font_awesome/src/assets/js/site.js @@ -2,56 +2,48 @@ $(function () { $("#newsletter").validate(); var ads = [ + // { + // quote: "Looking for the best icon sets? Check out Symbolset, now from the maker of Font Awesome.", + // class: "symbolset", + // url: "https://symbolset.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_best_icons&utm_campaign=promo_4.7_update", + // btn_text: "Gimme Some!" + // }, + // { + // quote: "Need a different look for your icons? Check out Symbolset, now from the maker of Font Awesome.", + // class: "symbolset", + // url: "https://symbolset.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_2_different_look&utm_campaign=promo_4.7_update", + // btn_text: "Gimme Some!" + // }, + // { + // quote: "Take your icon game to the next level. Check out Fort Awesome, from the maker of Font Awesome.", + // class: "fort-awesome", + // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_next_level&utm_campaign=promo_4.7_update", + // btn_text: "Gimme Some!" + // }, + // { + // quote: "Make your icons load 10x faster! Check out Fort Awesome, from the maker of Font Awesome.", + // class: "fort-awesome", + // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_3_faster_loading&utm_campaign=promo_4.7_update", + // btn_text: "Gimme Some!" + // }, + // { + // quote: "Want to add your own icon? Check out Fort Awesome, from the maker of Font Awesome.", + // class: "fort-awesome", + // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_6_your_own_icon&utm_campaign=promo_4.7_update", + // btn_text: "Gimme Some!" + // } { - quote: "Take your icon game to the next level. Check out Fort Awesome, from the maker of Font Awesome.", - class: "fort-awesome", - url: "https://fonticons.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_next_level&utm_campaign=promo_4.5_update", - btn_text: "Gimme Some!" + quote: "Font Awesome 5. The most awesome-est Font Awesome ever!", + class: "kickstarter", + url: "http://five.fontawesome.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_most_awesome-est&utm_campaign=promo_4.7_update", + btn_text: "Check out the Kickstarter", }, { - quote: "Make your icons load 10x faster! Check out Fort Awesome, from the maker of Font Awesome.", - class: "fort-awesome", - url: "https://fonticons.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_3_faster_loading&utm_campaign=promo_4.5_update", - btn_text: "Gimme Some!" + quote: "Get 1,000+ more icons and SVG in Font Awesome 5 Pro!", + class: "kickstarter", + url: "http://five.fontawesome.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_2_svg_and_1000_more&utm_campaign=promo_4.7_update", + btn_text: "Check out the Kickstarter", }, - { - quote: "Looking for other great icon sets? Check out Fort Awesome, from the maker of Font Awesome.", - class: "fort-awesome", - url: "https://fonticons.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_4_more_icons&utm_campaign=promo_4.5_update", - btn_text: "Gimme Some!" - }, - { - quote: "Want to add your own icon? Check out Fort Awesome, from the maker of Font Awesome.", - class: "fort-awesome", - url: "https://fonticons.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_6_your_own_icon&utm_campaign=promo_4.5_update", - btn_text: "Gimme Some!" - }, - - - { - quote: "Black Tie, from the creator of Font Awesome. On sale at the Kickstarter price for a limited time.", - class: "black-tie", - url: "http://blacktie.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_2_kickstarter&utm_campaign=promo_4.5_update", - btn_text: "Check it Out!" - }, - { - quote: "Want clean, minimalist icons? Check out Black Tie, the new multi-weight icon font from the maker of Font Awesome.", - class: "black-tie", - url: "http://blacktie.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_5_clean_minimalist&utm_campaign=promo_4.5_update", - btn_text: "Check it Out!" - }, - { - quote: "Want a different icon look? Check out Black Tie, our new multi-weight icon set.", - class: "black-tie", - url: "http://blacktie.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_6_different_look&utm_campaign=promo_4.5_update", - btn_text: "Check it Out!" - }, - { - quote: "Check out Black Tie, our new multi-weight icon set!", - class: "black-tie", - url: "http://blacktie.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_7_our_new_multi_weight&utm_campaign=promo_4.5_update", - btn_text: "Check it Out!" - } ]; selectAd(); @@ -63,7 +55,27 @@ $(function () { $('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="popover"]').popover(); + if (storageAvailable('localStorage') && !localStorage.seenKickstarterModal) { + $('#modal-kickstarter').modal('toggle'); + } + + if (storageAvailable('localStorage')) { + localStorage.seenKickstarterModal = true; + // Yippee! We can use localStorage awesomeness + } + function storageAvailable(type) { + try { + var storage = window[type], + x = '__storage_test__'; + storage.setItem(x, x); + storage.removeItem(x); + return true; + } + catch(e) { + return false; + } + } function selectAd() { random_number = Math.floor(Math.random() * ads.length); random_ad = ads[random_number]; diff --git a/library/font_awesome/src/assets/less/site.less b/library/font_awesome/src/assets/less/site.less index 1c5d1a300..a9e13f6ee 100644 --- a/library/font_awesome/src/assets/less/site.less +++ b/library/font_awesome/src/assets/less/site.less @@ -33,6 +33,7 @@ @import "site/bsap-ad"; @import "site/sumome"; @import "site/algolia"; +@import "site/kickstarter"; @import "site/views"; @import "site/store"; diff --git a/library/font_awesome/src/assets/less/site/banner-ad.less b/library/font_awesome/src/assets/less/site/banner-ad.less index 0ce85dea8..e544ed0be 100644 --- a/library/font_awesome/src/assets/less/site/banner-ad.less +++ b/library/font_awesome/src/assets/less/site/banner-ad.less @@ -13,7 +13,7 @@ .tagline { font-weight: 200; font-size: 16px; - padding-right: 20px; + padding-right: 30px; } &.font-awesome-survey { @@ -115,13 +115,13 @@ &.fort-awesome { @fort-awesome-color: #1C1E29; @fort-awesome-color-accent: #525879; - @fort-awesome-bg: mix(@fort-awesome-color-accent, @fort-awesome-color, 15%); + @fort-awesome-bg: #2d2f39; background-color: @fort-awesome-bg; border-bottom: solid 1px mix(@fort-awesome-bg, #000, 15%); .btn-primary { @color: #fff; - @background: mix(#fff,@fort-awesome-bg,15%); - @border: darken(@fort-awesome-bg, 5%); + @background: #ff8c52; + @border: rgba(0,0,0,0.2); font-weight: bold; color: @color; background-color: @background; @@ -136,9 +136,116 @@ &.active, .open > &.dropdown-toggle { color: #fff; - background-color: mix(@fort-awesome-color, @fort-awesome-color-accent, 30%); - border-color: darken(@border, 12%); - border-bottom-color: darken(@border, 18%); + background-color: #e67e4a; + border-color: rgba(0,0,0,0.296); + border-bottom-color: rgba(0,0,0,0.296); + } + &:active, + &.active, + .open > &.dropdown-toggle { + background-image: none; + } + &.disabled, + &[disabled], + fieldset[disabled] & { + &, + &:hover, + &:focus, + &:active, + &.active { + background-color: @background; + border-color: @border; + } + } + } + } + + &.symbolset { + @symbolset-bg: desaturate(#866cba,5%); + background-color: @symbolset-bg; + border-bottom: rgba(0,0,0,0.2); + a:not(.btn) { + text-decoration: underline; + color: #fff; + &:hover { color: rgba(255,255,255,.8); } + } + .btn-primary { + @color: @symbolset-bg; + @background: #fff; + @border: mix(#000,@symbolset-bg,10%); + font-weight: bold; + color: @color; + background-color: @background; + border-color: @border; + border-bottom-width: 2px; + text-shadow: none; + border-radius: 4px; + + &:hover, + &:focus, + &:active, + &.active, + .open > &.dropdown-toggle { + color: #fff; + background-color: rgba(0,0,0,0.2); + border-color: rgba(0,0,0,0.2); + border-bottom-color: rgba(0,0,0,0.2); + } + &:active, + &.active, + .open > &.dropdown-toggle { + background-image: none; + } + &.disabled, + &[disabled], + fieldset[disabled] & { + &, + &:hover, + &:focus, + &:active, + &.active { + background-color: @background; + border-color: @border; + } + } + } + } + + &.kickstarter { + @kickstarter-bg: #489fdf; + background-color: @kickstarter-bg; + border-bottom: rgba(0,0,0,0.2); + .message-container { padding: 40px 0; } + .tagline { font-size: 24px; } + a:not(.btn) { + text-decoration: underline; + color: #fff; + &:hover { color: rgba(255,255,255,.8); } + } + .btn-primary { + @color: @kickstarter-bg; + @background: #fff; + @border: mix(#000,@kickstarter-bg,10%); + font-weight: 600; + font-size: 22px; + padding: 14px 28px; + border-radius: 30px; + + color: @color; + background-color: @background; + border-color: @border; + border-bottom-width: 2px; + text-shadow: none; + + &:hover, + &:focus, + &:active, + &.active, + .open > &.dropdown-toggle { + color: #fff; + background-color: rgba(0,0,0,0.2); + border-color: rgba(0,0,0,0.2); + border-bottom-color: rgba(0,0,0,0.2); } &:active, &.active, @@ -159,4 +266,5 @@ } } } + } diff --git a/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less b/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less index 981d3d60c..a04420b72 100644 --- a/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less +++ b/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less @@ -29,17 +29,6 @@ .text-muted { color: mix(@jumbotron-color, @fa-green, 45%); } - - a { - color: mix(@jumbotron-color, @fa-green, 70%); - - // STATE: hover, focus, active - &:hover, &:focus, &:active { - border-color: @fa-green-dark; - background: @fa-green-dark; - color: @jumbotron-color; - } - } } .jumbotron-ad, .jumbotron-carousel { diff --git a/library/font_awesome/src/assets/less/site/bootstrap/navbar.less b/library/font_awesome/src/assets/less/site/bootstrap/navbar.less index 6c98885b8..32167270f 100644 --- a/library/font_awesome/src/assets/less/site/bootstrap/navbar.less +++ b/library/font_awesome/src/assets/less/site/bootstrap/navbar.less @@ -6,9 +6,10 @@ font-family: @font-family-serif; font-weight: 300; font-size: 20px; - .fas-flag-logo { + i { + font-size: 23px; padding-right: 3px; - vertical-align: baseline; + line-height: .75; } } .navbar-nav > li > a { padding: 11px 10px 9px; } diff --git a/library/font_awesome/src/assets/less/site/footer.less b/library/font_awesome/src/assets/less/site/footer.less index 92c12b2a8..bf895b338 100644 --- a/library/font_awesome/src/assets/less/site/footer.less +++ b/library/font_awesome/src/assets/less/site/footer.less @@ -18,6 +18,18 @@ padding-bottom: 55px; } .project { margin-top: 10px; } + + #inventory { + a { + width: 220px; + overflow: hidden; + display: inline-block; + border-bottom: inherit; + margin: 0 15px 20px; + + } + #CVADP2Y { display: inline; } + } } diff --git a/library/font_awesome/src/assets/less/site/jumbotron-carousel.less b/library/font_awesome/src/assets/less/site/jumbotron-carousel.less index 014b0af8c..880f4c5a6 100644 --- a/library/font_awesome/src/assets/less/site/jumbotron-carousel.less +++ b/library/font_awesome/src/assets/less/site/jumbotron-carousel.less @@ -58,4 +58,14 @@ } } } + a { + color: mix(@jumbotron-color, @fa-green, 70%); + + // STATE: hover, focus, active + &:hover, &:focus, &:active { + border-color: @fa-green-dark; + background: @fa-green-dark; + color: @jumbotron-color; + } + } } diff --git a/library/font_awesome/src/assets/less/site/kickstarter.less b/library/font_awesome/src/assets/less/site/kickstarter.less new file mode 100644 index 000000000..689a8c04a --- /dev/null +++ b/library/font_awesome/src/assets/less/site/kickstarter.less @@ -0,0 +1,3 @@ +.btn-kickstarter { + .button-variant(#fff, #489fdf, mix(#000,#489fdf,10%)); +} diff --git a/library/font_awesome/src/assets/less/site/lazy.less b/library/font_awesome/src/assets/less/site/lazy.less index 540f9a57b..5f6461d8f 100644 --- a/library/font_awesome/src/assets/less/site/lazy.less +++ b/library/font_awesome/src/assets/less/site/lazy.less @@ -76,7 +76,7 @@ .display-block { display: block; } // use to swap an anchor tag to span a whole row to make click target larger -.no-underline:hover { text-decoration: none; } +.no-underline { text-decoration: none !important; } .clickable { cursor: pointer; } .strong { font-weight: bold; } .em { font-style: italic; } @@ -110,3 +110,4 @@ } .valign-baseline { vertical-align: baseline !important; } +.valign-middle { vertical-align: middle !important; } diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-xs.less b/library/font_awesome/src/assets/less/site/responsive/screen-xs.less index 7943e2feb..156e5bc38 100644 --- a/library/font_awesome/src/assets/less/site/responsive/screen-xs.less +++ b/library/font_awesome/src/assets/less/site/responsive/screen-xs.less @@ -81,20 +81,14 @@ } - .navbar-org { + .navbar-org { display: none; } + #banner { text-align: center; - .container { padding: 0; } - .navbar-nav { - margin: 0; - > li + li { - margin-left: 0; - } - } - .nav > li { - float: left; - width: 50%; - } + .message-container, .tagline, .action { display: block; } + .tagline { padding-right: 0; } + .btn-primary { margin-top: 10px; } } + .signup-button .btn { white-space: normal; } .v-get-started .get-started-cdn { padding: 5px 22px 22px 22px; } diff --git a/library/font_awesome/src/assets/less/site/views.less b/library/font_awesome/src/assets/less/site/views.less index ae5d8f31d..f0cd3c993 100644 --- a/library/font_awesome/src/assets/less/site/views.less +++ b/library/font_awesome/src/assets/less/site/views.less @@ -1,6 +1,14 @@ // view-specific -.v-get-started, .v-store { + +// reset background +.v-get-started, +.v-store, +.v-accessibility { background: @alert-well-bg; // resetting for depth +} + +// get started +.v-get-started { .get-started-cdn { background: @section-emphasized-bg; @@ -24,3 +32,19 @@ font-size: (@font-size-large*1.5); } } + +// accessibility +.v-accessibility { + + .accessibility-cdn { + background: @section-emphasized-bg; + border-radius: @border-radius-base; + padding: @buffer-lg; + } + + .hr .hr-text { + background: @alert-well-bg; + font-family: @font-family-serif; + font-size: (@font-size-large*1.5); + } +} diff --git a/library/font_awesome/src/cdn/error.html b/library/font_awesome/src/cdn/error.html index f08eaa67a..c1c577b01 100644 --- a/library/font_awesome/src/cdn/error.html +++ b/library/font_awesome/src/cdn/error.html @@ -5,20 +5,60 @@ relative_path: ../../ ---
        -
        -
        -
        -

        Oh noes!

        +
        + +
        +
        +

        + + Oh Noes! +

        +

        - Something bad happened on our end when sending your embed code. - We've already been notified and are looking into it. + Something bad happened on our end when sending your embed code.

        -

        - Hang tight for just a bit and we should have things fixed up shortly. +

        + We've already been notified and are looking into it. Hang tight for just a bit and we should have things fixed up shortly.

        +
        + +
        + +
          +
        1. +
          + +
          +
          +

          If at first you don't succeed…

          + +

          + We'll be taking a look into things. But in the meantime, it may not hurt to try to request an embed code again. +

          + +
          +
          +
        2. + +
        3. +
          + +
          +
          +

          Been a while?

          + +

          + Still stuck and haven't heard from us? Let us know something is up. +

          + + Contact us! + +
          +
        4. +
        diff --git a/library/font_awesome/src/cdn/new.html b/library/font_awesome/src/cdn/new.html deleted file mode 100644 index 83f5e1bbd..000000000 --- a/library/font_awesome/src/cdn/new.html +++ /dev/null @@ -1,265 +0,0 @@ ---- -layout: base -title: Get Started with Font Awesome -navbar_active: get-started -view_class: v-get-started -relative_path: ../../ ---- -{% capture jumbotron_h1 %}  Get Started{% endcapture %} -{% capture jumbotron_p %}Easy ways to get Font Awesome {{ site.fontawesome.version }} onto your website{% endcapture %} - -{% include jumbotron.html %} - -
        - -
        -
        - - -

        Font Awesome CDN is the easiest way to get Font Awesome on your website or app, all with just a single line of code. No downloading or installing!

        - -
        - - - -
        - - - - -

        - -
        -
        - We create new embed codes for each website so you can quickly upgrade and change your preferences all without ever writing code. To do this, we need an email - address so we know which embed codes are yours and you can come back and manage them. -
        -
        - -
        -
        -

        Icons on your site. Fast.

        -

        Don't mess with files locally or in production. You'll get all of Font Awesome's {{ icons| size }} icons plus CSS toolkit - all optimized for speed and no hassle.

        -
        - -
        -

        Super-simple upgrades

        -

        Since each site gets a unique embed code, you can easily upgrade to the latest version of Font Awesome, all without pushing any code. Easy peasy.

        -
        - -
        -

        Auto accessibility support

        -

        Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. Read up on our accessibility best practices.

        -
        - -
        -

        Async your icons

        -

        Want to speed up your page loads? So do we. Have your icons load in the background so your site loads faster.

        -
        -
        -
        - -
        - or -
        - -
        - - -
        -
        -

        - Want to manage and host Font Awesome assets yourself? You can - download, - customize, and use the icons and default styling manually. Both CSS and CSS Preprocessor (Sass and Less) formats are included.

        -
        - - -
        - -
        -

        Using CSS

        - -
          -
        1. Copy the entire font-awesome directory into your project.
        2. -
        3. - In the <head> of your html, reference the location to your font-awesome.min.css. -{% highlight html %} - -{% endhighlight %} -
        4. -
        5. Check out the examples to start using Font Awesome!
        6. -
        -
        - -
        -

        Using Sass or Less

        - -

        Use this method to customize Font Awesome {{ site.fontawesome.version }} using LESS or SASS.

        -
          -
        1. Copy the font-awesome/ directory into your project.
        2. -
        3. - Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path - variable to point to your font directory. -{% highlight scss %} -@fa-font-path: "../font"; -{% endhighlight %} -

          The font path is relative from your compiled CSS directory.

          -
        4. -
        5. Re-compile your LESS or SASS if using a static compiler. Otherwise, you should be good to go.
        6. -
        7. Check out the examples to start using Font Awesome!
        8. -
        -
        -
        - -
        - or -
        - -
        - - -

        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

        - -
        -

        LESS Ruby Gem

        -

        - Use the Official Font Awesome LESS Ruby Gem to easily get Font - Awesome LESS into a Rails project. Generously maintained by @supercodepoet. -

        -
          -
        1. - Add this line to your application's Gemfile: - {% highlight bash %} - gem 'font-awesome-less' - {% endhighlight %} -
        2. -
        3. - And then execute: - {% highlight bash %} - $ bundle - {% endhighlight %} -
        4. -
        5. Or install it yourself as: - {% highlight bash %} - $ gem install font-awesome-less - {% endhighlight %} -
        6. -
        -

        - If you use Rails, add this to your e.g. application.less: -

        - {% highlight css %} - @import "font-awesome-sprockets"; - @import "font-awesome"; - {% endhighlight %} -
        - -
        -

        SASS Ruby Gem

        -

        - Use the Official Font Awesome SASS Ruby Gem to easily get Font - Awesome SASS into a Rails or Compass project. Generously maintained by @supercodepoet. -

        -
          -
        1. - Add this line to your application's Gemfile: -{% highlight bash %} -gem 'font-awesome-sass' -{% endhighlight %} -
        2. -
        3. - And then execute: -{% highlight bash %} -$ bundle -{% endhighlight %} -
        4. -
        5. Or install it yourself as: -{% highlight bash %} -$ gem install font-awesome-sass -{% endhighlight %} -
        6. -
        -

        - If you use Rails, add this to your e.g. application.scss: -

        -{% highlight css %} - @import "font-awesome-sprockets"; - @import "font-awesome"; -{% endhighlight %} -
        -
        - -
        - -
        - -
        -
        -

        Validators

        -

        In order to provide the best possible experience to old and buggy browsers, Font Awesome uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

        -

        These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

        -

        Getting started - Validators by Bootstrap Team is licensed under CC BY 3.0

        -
        - -
        -

        Internet Explorer 8 and @font-face

        -

        IE8 has some issues with @font-face when combined with :before. - Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window - (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. - Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. - See issue #954 for details.

        -

        Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

        -
        -
        - -
        -
        -

        Need IE7 Support?

        -

        IE8 has some issues with @font-face when combined with :before. - Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window - (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. - Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. - See issue #954 for details.

        -

        Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

        -
        - -
        -

        Troubleshooting

        -

        If you're having trouble with Font Awesome, make sure to check out the - troubleshooting wiki page. - Generously maintained by @gtagliala.

        -
        -
        - -{% include modals/download.html %} diff --git a/library/font_awesome/src/cdn/success.html b/library/font_awesome/src/cdn/success.html index 6199f0b02..585729248 100644 --- a/library/font_awesome/src/cdn/success.html +++ b/library/font_awesome/src/cdn/success.html @@ -5,20 +5,61 @@ relative_path: ../../ ---
        -
        -
        -
        -

        On the way!

        +
        +
        +
        +

        + + Great Success! +

        +

        - We just sent you an email with your new Font Awesome CDN embed code and instructions - for what to do next! + Your embed code is on its way. +

        + +

        + We just sent you an email with your new Font Awesome CDN embed code and instructions for what to do next!

        -

        - If you don't see the email, maybe check your spam. +

        + If you don't see the email (sent by "Font Awesome") in your inbox, maybe check your spam folder first. Also, make sure you haven't previously unsubscribed. Still nothing? Try again or get some help.

        +
        + +
        + +

        Next Steps

        + +
          +
        1. +
          + +
          +
          +

          Check your email

          + +

          + Your embed code should be waiting there for you. From there you can also register a Font Awesome CDN account to help you manage your icons even more easily. +

          + +
          +
          +
        2. + +
        3. +
          + +
          +
          +

          Get ready to use Font Awesome

          +

          + While you're waiting, dive into how to use Font Awesome. You'll want to add your embed code within the <head> of each template or page that you want to use Font Awesome on. Then, check out the Font Awesome icons and examples to learn how drop icons right into your UI. +

          +
          +
        4. +
        diff --git a/library/font_awesome/src/examples.html b/library/font_awesome/src/examples.html index 3e23ac147..9f14ef11b 100644 --- a/library/font_awesome/src/examples.html +++ b/library/font_awesome/src/examples.html @@ -20,15 +20,24 @@ relative_path: ../ {% endcapture %} {% include stripe-ad.html %} +
        +
        + +
        +
        +

        The following examples are kept simple and assume use of Font Awesome CDN, which provides auto-accessibility support. If you are not using the Font Awesome CDN, please see the manual accessibility examples and read more about making your icons more awesome for all users

        +
        +
        + {% include examples/basic.html %} {% include examples/larger.html %} {% include examples/fixed-width.html %} {% include examples/list.html %} {% include examples/bordered-pulled.html %} {% include examples/animated.html %} - {% include examples/accessible.html %} {% include examples/rotated-flipped.html %} {% include examples/stacked.html %} {% include examples/bootstrap.html %} {% include examples/custom.html %} + {% include examples/accessible.html %}
        diff --git a/library/font_awesome/src/get-started.html b/library/font_awesome/src/get-started.html index 6ca5d082b..e8fb70650 100644 --- a/library/font_awesome/src/get-started.html +++ b/library/font_awesome/src/get-started.html @@ -2,181 +2,262 @@ layout: base title: Get Started with Font Awesome navbar_active: get-started +view_class: v-get-started relative_path: ../ --- {% capture jumbotron_h1 %}  Get Started{% endcapture %} {% capture jumbotron_p %}Easy ways to get Font Awesome {{ site.fontawesome.version }} onto your website{% endcapture %} {% include jumbotron.html %} -{% include stripe-social.html %} + +
        - {% capture stripe_ad_content %} -

        - Setting up Font Awesome can be as simple as adding two lines of code to your website, or you can be a pro and - customize the LESS yourself! Font Awesome even plays nicely with - Bootstrap 3! -

        - {% endcapture %} - {% include stripe-ad.html %} - -
        - -

        Thanks to the generous folks at MaxCDN, you can use Bootstrap CDN to add Font Awesome into your website with a single line of code. You don't even have to download or install anything!

        -
          -
        1. - Paste the following code into the <head> section of your site's HTML. -{% highlight html %} - -{% endhighlight %} -

          Immediately after release, it takes a bit of time for BootstrapCDN to catch up and get the newest version live on their CDN.

          -
        2. -
        3. - Pat yourself on the back for your scalable-vector-icons-on-the-website - judo solution in a single line of code. -
        4. -
        5. - Check out the examples to start using Font Awesome! -
        6. -
        +
        + + +

        Font Awesome CDN is the easiest way to get Font Awesome on your website or app, all with just a single line of code. No downloading or installing!

        + +
        + + + +
        + + + + +

        + +
        +
        + We create new embed codes for each website so you can quickly upgrade and change your preferences all without ever pushing code. To do this, we need an email + address so we know which embed codes are yours and so you can come back and manage them. +
        +
        + +
        +
        +

        Icons on your site. Fast.

        +

        Don't mess with files locally or in production. You'll get all of Font Awesome's {{ icons| size }} icons plus CSS toolkit - all optimized for speed and no hassle.

        +
        + +
        +

        Super-simple upgrades

        +

        Since each site gets a unique embed code, you can easily upgrade to the latest version of Font Awesome, all without pushing any code. Easy peasy.

        +
        + +
        +

        Auto accessibility support

        +

        Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. Read up on our accessibility best practices.

        +
        + +
        +

        Async your icons

        +

        Want to speed up your page loads? So do we. Have your icons load in the background so your site loads faster.

        +
        +
        +
        + +
        + or
        -
        - -

        Use this method to get the default Font Awesome CSS.

        -
          -
        1. Copy the entire font-awesome directory into your project.
        2. -
        3. - In the <head> of your html, reference the location to your font-awesome.min.css. +
          + + +
          +
          +

          + Want to manage and host Font Awesome assets yourself? You can + download, + customize, and use the icons and default styling manually. Both CSS and CSS Preprocessor (Sass and Less) formats are included.

          +
          + + +
          + +
          +

          Using CSS

          + +
            +
          1. Copy the entire font-awesome directory into your project.
          2. +
          3. + In the <head> of your html, reference the location to your font-awesome.min.css. {% highlight html %} {% endhighlight %} -
          4. -
          5. Check out the examples to start using Font Awesome!
          6. -
          +
        4. +
        5. Check out the examples to start using Font Awesome!
        6. +
        +
        + +
        +

        Using Sass or Less

        + +

        Use this method to customize Font Awesome {{ site.fontawesome.version }} using LESS or SASS.

        +
          +
        1. Copy the font-awesome/ directory into your project.
        2. +
        3. + Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path + variable to point to your font directory. +{% highlight scss %} +@fa-font-path: "../font"; +{% endhighlight %} +

          The font path is relative from your compiled CSS directory.

          +
        4. +
        5. Re-compile your LESS or SASS if using a static compiler. Otherwise, you should be good to go.
        6. +
        7. Check out the examples to start using Font Awesome!
        8. +
        +
        -
        - -

        - Use the Official Font Awesome LESS Ruby Gem to easily get Font - Awesome LESS into a Rails project. Generously maintained by @supercodepoet. -

        -
          -
        1. - Add this line to your application's Gemfile: +
          + or +
          + +
          + + +
          +

          LESS Ruby Gem

          +

          + Use the Official Font Awesome LESS Ruby Gem to easily get Font + Awesome LESS into a Rails project. Generously maintained by @supercodepoet. +

          +
            +
          1. + Add this line to your application's Gemfile: {% highlight bash %} gem 'font-awesome-less' {% endhighlight %} -
          2. -
          3. - And then execute: +
          4. +
          5. + And then execute: {% highlight bash %} $ bundle {% endhighlight %} -
          6. -
          7. Or install it yourself as: +
          8. +
          9. Or install it yourself as: {% highlight bash %} $ gem install font-awesome-less {% endhighlight %} -
          10. -
          -

          - If you use Rails, add this to your e.g. application.less: -

          +
        2. +
        +

        + If you use Rails, add this to your e.g. application.less: +

        {% highlight css %} - @import "font-awesome-sprockets"; - @import "font-awesome"; +@import "font-awesome-sprockets"; +@import "font-awesome"; {% endhighlight %} -
        +
        -
        - -

        - Use the Official Font Awesome SASS Ruby Gem to easily get Font - Awesome SASS into a Rails or Compass project. Generously maintained by @supercodepoet. -

        -
          -
        1. - Add this line to your application's Gemfile: +
          +

          SASS Ruby Gem

          +

          + Use the Official Font Awesome SASS Ruby Gem to easily get Font + Awesome SASS into a Rails or Compass project. Generously maintained by @supercodepoet. +

          +
            +
          1. + Add this line to your application's Gemfile: {% highlight bash %} gem 'font-awesome-sass' {% endhighlight %} -
          2. -
          3. - And then execute: +
          4. +
          5. + And then execute: {% highlight bash %} $ bundle {% endhighlight %} -
          6. -
          7. Or install it yourself as: +
          8. +
          9. Or install it yourself as: {% highlight bash %} $ gem install font-awesome-sass {% endhighlight %} -
          10. -
          -

          - If you use Rails, add this to your e.g. application.scss: -

          +
        2. +
        +

        + If you use Rails, add this to your e.g. application.scss: +

        {% highlight css %} - @import "font-awesome-sprockets"; - @import "font-awesome"; +@import "font-awesome-sprockets"; +@import "font-awesome"; {% endhighlight %} +
        -
        - -

        Use this method to customize Font Awesome {{ site.fontawesome.version }} using LESS or SASS.

        -
          -
        1. Copy the font-awesome/ directory into your project.
        2. -
        3. - Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path - variable to point to your font directory. -{% highlight scss %} -@fa-font-path: "../font"; -{% endhighlight %} -

          The font path is relative from your compiled CSS directory.

          -
        4. -
        5. Re-compile your LESS or SASS if using a static compiler. Otherwise, you should be good to go.
        6. -
        7. Check out the examples to start using Font Awesome!
        8. -
        +
        +
        -
        - -

        In order to provide the best possible experience to old and buggy browsers, Font Awesome uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

        -

        These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

        -

        Getting started - Validators by Bootstrap Team is licensed under CC BY 3.0

        -
        +
        +
        +

        Validators

        +

        In order to provide the best possible experience to old and buggy browsers, Font Awesome uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

        +

        These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

        +

        Getting started - Validators by Bootstrap Team is licensed under CC BY 3.0

        +
        -
        - -

        - IE8 has some issues with @font-face when combined with :before. - Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window - (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. - Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. - See issue #954 for details. -

        -

        Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

        -
        +
        +

        Internet Explorer 8 and @font-face

        +

        IE8 has some issues with @font-face when combined with :before. + Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window + (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. + Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. + See issue #954 for details.

        +

        Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

        +
        +
        -
        - -

        - If you need IE7 support, you have my condolences. Really. Font Awesome {{ site.fontawesome.version }} - doesn't support IE7, but an older version does. You'll need to check out the - 3.2.1 instructions for using IE7. Then go complain to - whomever decided your project needs IE7 support. -

        -
        +
        +
        +

        Need IE7 Support?

        +

        + If you need IE7 support, you have my condolences. Really. Font Awesome {{ site.fontawesome.version }} + doesn't support IE7, but an older version does. You'll need to check out the + 3.2.1 instructions for using IE7. Then go complain to + whomever decided your project needs IE7 support. +

        +
        -
        - -

        - If you're having trouble with Font Awesome, make sure to check out the - troubleshooting wiki page. - Generously maintained by @gtagliala. -

        -
        -
        +
        +

        Troubleshooting

        +

        If you're having trouble with Font Awesome, make sure to check out the + troubleshooting wiki page. + Generously maintained by @gtagliala.

        +
        +
        + +{% include modals/download.html %} diff --git a/library/font_awesome/src/icons.yml b/library/font_awesome/src/icons.yml index 0722c6684..bd1b5506f 100644 --- a/library/font_awesome/src/icons.yml +++ b/library/font_awesome/src/icons.yml @@ -306,7 +306,7 @@ icons: unicode: f01a created: 1.0 filter: - - download + - download categories: - Directional Icons @@ -377,6 +377,7 @@ icons: filter: - protect - admin + - security categories: - Web Application Icons @@ -1030,7 +1031,7 @@ icons: unicode: f063 created: 1.0 filter: - - download + - download categories: - Directional Icons @@ -1241,6 +1242,7 @@ icons: - message - texting - sms + - conversation categories: - Web Application Icons @@ -1307,7 +1309,7 @@ icons: unicode: f07d created: 1.0 filter: - - resize + - resize categories: - Web Application Icons - Directional Icons @@ -1317,7 +1319,7 @@ icons: unicode: f07e created: 1.0 filter: - - resize + - resize categories: - Web Application Icons - Directional Icons @@ -1392,13 +1394,16 @@ icons: unicode: f086 created: 1.0 filter: - - conversation + - speech - notification - - notes + - note + - chat + - bubble + - feedback - message - texting - sms - - chat + - conversation categories: - Web Application Icons @@ -1520,6 +1525,7 @@ icons: filter: - award - achievement + - cup - winner - game categories: @@ -1558,11 +1564,12 @@ icons: unicode: f095 created: 2.0 filter: - - call - - voice - - number - - support - - earphone + - call + - voice + - number + - support + - earphone + - telephone categories: - Web Application Icons @@ -1593,10 +1600,11 @@ icons: unicode: f098 created: 2.0 filter: - - call - - voice - - number - - support + - call + - voice + - number + - support + - telephone categories: - Web Application Icons @@ -1691,6 +1699,7 @@ icons: - share - broadcast - louder + - megaphone categories: - Web Application Icons @@ -1797,7 +1806,7 @@ icons: unicode: f0ab created: 2.0 filter: - - download + - download categories: - Directional Icons @@ -1831,6 +1840,7 @@ icons: - settings - fix - update + - spanner categories: - Web Application Icons @@ -1839,11 +1849,11 @@ icons: unicode: f0ae created: 2.0 filter: - - progress - - loading - - downloading - - downloads - - settings + - progress + - loading + - downloading + - downloads + - settings categories: - Web Application Icons @@ -2295,6 +2305,7 @@ icons: - message - texting - sms + - conversation categories: - Web Application Icons @@ -2303,13 +2314,16 @@ icons: unicode: f0e6 created: 2.0 filter: - - conversation + - speech - notification - - notes + - note + - chat + - bubble + - feedback - message - texting - sms - - chat + - conversation categories: - Web Application Icons @@ -2457,12 +2471,12 @@ icons: unicode: f0f5 created: 3.0 filter: - - food - - restaurant - - spoon - - knife - - dinner - - eat + - food + - restaurant + - spoon + - knife + - dinner + - eat categories: - Web Application Icons @@ -2710,6 +2724,7 @@ icons: - call - iphone - number + - telephone aliases: - mobile-phone categories: @@ -3073,6 +3088,7 @@ icons: filter: - award - achievement + - security - winner categories: - Web Application Icons @@ -3640,7 +3656,7 @@ icons: - name: Instagram id: instagram unicode: f16d - created: 3.2 + created: 4.6 categories: - Brand Icons @@ -3663,7 +3679,7 @@ icons: unicode: f171 created: 3.2 filter: - - git + - git categories: - Brand Icons @@ -3672,7 +3688,7 @@ icons: unicode: f172 created: 3.2 filter: - - git + - git categories: - Brand Icons @@ -3843,9 +3859,9 @@ icons: unicode: f186 created: 3.2 filter: - - night - - darker - - contrast + - night + - darker + - contrast categories: - Web Application Icons @@ -3965,8 +3981,6 @@ icons: filter: - handicap - person - - accessibility - - accessibile categories: - Web Application Icons - Medical Icons @@ -4123,8 +4137,8 @@ icons: categories: - Brand Icons - - name: Pied Piper Logo - id: pied-piper + - name: Pied Piper PP Logo (Old) + id: pied-piper-pp unicode: f1a7 created: 4.1 categories: @@ -4439,6 +4453,7 @@ icons: created: 4.1 aliases: - ra + - resistance categories: - Brand Icons @@ -4504,7 +4519,6 @@ icons: created: 4.1 aliases: - send - filter: categories: - Web Application Icons @@ -4790,35 +4804,34 @@ icons: id: area-chart unicode: f1fe created: 4.2 - categories: - - Web Application Icons - - Chart Icons filter: - graph - analytics - + categories: + - Web Application Icons + - Chart Icons - name: Pie Chart id: pie-chart unicode: f200 created: 4.2 - categories: - - Web Application Icons - - Chart Icons filter: - graph - analytics + categories: + - Web Application Icons + - Chart Icons - name: Line Chart id: line-chart unicode: f201 created: 4.2 - categories: - - Web Application Icons - - Chart Icons filter: - graph - analytics + categories: + - Web Application Icons + - Chart Icons - name: last.fm id: lastfm @@ -5290,6 +5303,7 @@ icons: created: 4.4 aliases: - battery-4 + - battery filter: - power categories: @@ -5722,7 +5736,7 @@ icons: categories: - Web Application Icons - - name: Map Outline + - name: Map Outlined id: map-o unicode: f278 created: 4.4 @@ -5741,7 +5755,16 @@ icons: unicode: f27a created: 4.4 filter: + - speech + - notification + - note + - chat + - bubble + - feedback - message + - texting + - sms + - conversation categories: - Web Application Icons @@ -5750,7 +5773,16 @@ icons: unicode: f27b created: 4.4 filter: + - speech + - notification + - note + - chat + - bubble + - feedback - message + - texting + - sms + - conversation categories: - Web Application Icons @@ -5837,6 +5869,7 @@ icons: id: fort-awesome unicode: f286 created: 4.5 + url: fortawesome.com categories: - Brand Icons @@ -5988,8 +6021,13 @@ icons: id: wheelchair-alt unicode: f29b created: 4.6 + filter: + - handicap + - person categories: - Web Application Icons + - Medical Icons + - Transportation Icons - Accessibility Icons - name: Question Circle Outlined @@ -6021,6 +6059,8 @@ icons: id: volume-control-phone unicode: f2a0 created: 4.6 + filter: + - telephone categories: - Web Application Icons - Accessibility Icons @@ -6129,3 +6169,372 @@ icons: created: 4.6 categories: - Brand Icons + + - name: Pied Piper Logo + id: pied-piper + unicode: f2ae + created: 4.6 + categories: + - Brand Icons + + + - name: First Order + id: first-order + unicode: f2b0 + created: 4.6 + categories: + - Brand Icons + + - name: Yoast + id: yoast + unicode: f2b1 + created: 4.6 + url: yoast.com + categories: + - Brand Icons + + - name: ThemeIsle + id: themeisle + unicode: f2b2 + created: 4.6 + url: themeisle.com + categories: + - Brand Icons + + - name: Google Plus Official + id: google-plus-official + unicode: f2b3 + created: 4.6 + aliases: + - google-plus-circle + categories: + - Brand Icons + + - name: Font Awesome + id: font-awesome + unicode: f2b4 + created: 4.6 + aliases: + - fa + categories: + - Brand Icons + + - name: Handshake Outlined + id: handshake-o + unicode: f2b5 + created: 4.7 + categories: + - Web Application Icons + + - name: Envelope Open + id: envelope-open + unicode: f2b6 + created: 4.7 + categories: + - Web Application Icons + + - name: Envelope Open Outlined + id: envelope-open-o + unicode: f2b7 + created: 4.7 + categories: + - Web Application Icons + + - name: Linode + id: linode + unicode: f2b8 + created: 4.7 + url: linode.com + categories: + - Brand Icons + + - name: Address Book + id: address-book + unicode: f2b9 + created: 4.7 + categories: + - Web Application Icons + + - name: Address Book Outlined + id: address-book-o + unicode: f2ba + created: 4.7 + categories: + - Web Application Icons + + - name: Address Card + id: address-card + unicode: f2bb + created: 4.7 + aliases: + - vcard + categories: + - Web Application Icons + + - name: Address Card Outlined + id: address-card-o + unicode: f2bc + created: 4.7 + aliases: + - vcard-o + categories: + - Web Application Icons + + - name: User Circle + id: user-circle + unicode: f2bd + created: 4.7 + categories: + - Web Application Icons + + - name: User Circle Outlined + id: user-circle-o + unicode: f2be + created: 4.7 + categories: + - Web Application Icons + + + - name: User Outlined + id: user-o + unicode: f2c0 + created: 4.7 + categories: + - Web Application Icons + + - name: Identification Badge + id: id-badge + unicode: f2c1 + created: 4.7 + categories: + - Web Application Icons + + - name: Identification Card + id: id-card + unicode: f2c2 + created: 4.7 + aliases: + - drivers-license + categories: + - Web Application Icons + + - name: Identification Card Outlined + id: id-card-o + unicode: f2c3 + created: 4.7 + aliases: + - drivers-license-o + categories: + - Web Application Icons + + - name: Quora + id: quora + unicode: f2c4 + created: 4.7 + categories: + - Brand Icons + + - name: Free Code Camp + id: free-code-camp + unicode: f2c5 + created: 4.7 + categories: + - Brand Icons + + - name: Telegram + id: telegram + unicode: f2c6 + created: 4.7 + categories: + - Brand Icons + + - name: Thermometer Full + id: thermometer-full + unicode: f2c7 + created: 4.7 + aliases: + - thermometer-4 + - thermometer + categories: + - Web Application Icons + + - name: Thermometer 3/4 Full + id: thermometer-three-quarters + unicode: f2c8 + created: 4.7 + aliases: + - thermometer-3 + categories: + - Web Application Icons + + - name: Thermometer 1/2 Full + id: thermometer-half + unicode: f2c9 + created: 4.7 + aliases: + - thermometer-2 + categories: + - Web Application Icons + + - name: Thermometer 1/4 Full + id: thermometer-quarter + unicode: f2ca + created: 4.7 + aliases: + - thermometer-1 + categories: + - Web Application Icons + + - name: Thermometer Empty + id: thermometer-empty + unicode: f2cb + created: 4.7 + aliases: + - thermometer-0 + categories: + - Web Application Icons + + - name: Shower + id: shower + unicode: f2cc + created: 4.7 + categories: + - Web Application Icons + + - name: Bath + id: bath + unicode: f2cd + created: 4.7 + aliases: + - bathtub + - s15 + categories: + - Web Application Icons + + - name: Podcast + id: podcast + unicode: f2ce + created: 4.7 + categories: + - Web Application Icons + + + - name: Window Maximize + id: window-maximize + unicode: f2d0 + created: 4.7 + categories: + - Web Application Icons + + - name: Window Minimize + id: window-minimize + unicode: f2d1 + created: 4.7 + categories: + - Web Application Icons + + - name: Window Restore + id: window-restore + unicode: f2d2 + created: 4.7 + categories: + - Web Application Icons + + - name: Window Close + id: window-close + unicode: f2d3 + created: 4.7 + aliases: + - times-rectangle + categories: + - Web Application Icons + + - name: Window Close Outline + id: window-close-o + unicode: f2d4 + created: 4.7 + aliases: + - times-rectangle-o + categories: + - Web Application Icons + + - name: Bandcamp + id: bandcamp + unicode: f2d5 + created: 4.7 + categories: + - Brand Icons + + - name: Grav + id: grav + unicode: f2d6 + created: 4.7 + categories: + - Brand Icons + + - name: Etsy + id: etsy + unicode: f2d7 + created: 4.7 + categories: + - Brand Icons + + - name: IMDB + id: imdb + unicode: f2d8 + created: 4.7 + categories: + - Brand Icons + + - name: Ravelry + id: ravelry + unicode: f2d9 + created: 4.7 + categories: + - Brand Icons + + - name: Eercast + id: eercast + unicode: f2da + created: 4.7 + url: eercast.com + categories: + - Brand Icons + + - name: Microchip + id: microchip + unicode: f2db + created: 4.7 + categories: + - Web Application Icons + + - name: Snowflake Outlined + id: snowflake-o + unicode: f2dc + created: 4.7 + categories: + - Web Application Icons + + - name: Superpowers + id: superpowers + unicode: f2dd + created: 4.7 + url: superpowers.io + categories: + - Brand Icons + + - name: WPExplorer + id: wpexplorer + unicode: f2de + created: 4.7 + url: wpexplorer.com + categories: + - Brand Icons + + + - name: Meetup + id: meetup + unicode: f2e0 + created: 4.7 + categories: + - Brand Icons diff --git a/library/font_awesome/src/test/all.html b/library/font_awesome/src/test/all.html index bfb9f2870..076d19698 100644 --- a/library/font_awesome/src/test/all.html +++ b/library/font_awesome/src/test/all.html @@ -14,13 +14,22 @@ relative_path: ../../

        All

        +
        + {% for icon in icons %} + {% endfor %} +
        +
        + + +
        +

        All (Unicode)

        {% for icon in icons %} &#x{{ icon.unicode }} {% endfor %}
        -

        Non-Brand

        +

        Non-Brand (Unicode)

        {% for icon in icons %} {% unless icon.categories contains "Brand Icons" %} @@ -30,7 +39,7 @@ relative_path: ../../
        -

        Brand

        +

        Brand (Unicode)

        {% for icon in icons %} {% if icon.categories contains "Brand Icons" %} diff --git a/library/font_awesome/src/thanks.html b/library/font_awesome/src/thanks.html index 2b8ad85eb..b22a4eec5 100644 --- a/library/font_awesome/src/thanks.html +++ b/library/font_awesome/src/thanks.html @@ -21,7 +21,7 @@ relative_path: ../ on your website. Pick from gorgeous, comprehensive icon sets or copy and paste your own vector icons.

        - Check out Fort Awesome! + Check out Fort Awesome!
        diff --git a/library/font_awesome/src/whats-new.html b/library/font_awesome/src/whats-new.html index 309eca36b..fd3a3cf63 100644 --- a/library/font_awesome/src/whats-new.html +++ b/library/font_awesome/src/whats-new.html @@ -23,7 +23,7 @@ relative_path: ../

        Accessibility Docs

        - Details on how to mark up your icons depending on how you’re using them. + Details on how to mark up your icons depending on how you're using them. Make your site icons usable by the most people, and start here.
        -- cgit v1.2.3 From 88caa14030f29c59424beb0237ea10526565b4e6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 21 Jan 2017 21:04:36 +0100 Subject: fix text highlighter for PHP version 7.1 --- library/Text_Highlighter/Text/Highlighter/Renderer/Array.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'library') diff --git a/library/Text_Highlighter/Text/Highlighter/Renderer/Array.php b/library/Text_Highlighter/Text/Highlighter/Renderer/Array.php index fd238a4d1..edf6290f8 100644 --- a/library/Text_Highlighter/Text/Highlighter/Renderer/Array.php +++ b/library/Text_Highlighter/Text/Highlighter/Renderer/Array.php @@ -143,7 +143,9 @@ class Text_Highlighter_Renderer_Array extends Text_Highlighter_Renderer function acceptToken($class, $content) { - + if(! is_array($this->_output)) { + $this->_output = array(); + } $theClass = $this->_getFullClassName($class); if ($this->_htmlspecialchars) { $content = htmlspecialchars($content); @@ -197,4 +199,4 @@ class Text_Highlighter_Renderer_Array extends Text_Highlighter_Renderer * End: */ -?> \ No newline at end of file +?> -- cgit v1.2.3