New UI design

This commit is contained in:
benweet 2013-12-01 15:43:46 +00:00
parent 0f18fbcb3f
commit 9be6156890
29 changed files with 2294 additions and 2176 deletions

View File

@ -3,7 +3,7 @@
"version": "2.3.3",
"description": "StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.",
"dependencies": {
"bootstrap": "~3.0.2",
"bootstrap": "v3.0.0",
"jquery": "2.0.3",
"underscore": "1.5.1",
"requirejs": "~2.1.8",
@ -17,10 +17,10 @@
"FileSaver": "*",
"stacktrace": "~0.5.3",
"requirejs-text": "~2.0.10",
"bootstrap-tour": "~0.6.0",
"bootstrap-tour": "~0.7.1",
"ace": "4bbe5346f2ae5ad35c0c47defa244ab27aedd451",
"pagedown-ace": "https://github.com/benweet/pagedown-ace.git#72a27932f6f4f78e93a186aa2947d1f15c1cd7d5",
"pagedown-extra": "https://github.com/jmcmanus/pagedown-extra.git#c7f99ad0b8abfa0b9c9b8d406253b6d6695c4fb3",
"pagedown-extra": "https://github.com/jmcmanus/pagedown-extra.git#bb1d4ec19edd01e4364e98dd4ec149a31f2f5c9a",
"crel": "git@github.com:KoryNunn/crel.git#8dbda04b129fc0aec01a2a080d1cab26816e11c1",
"waitForImages": "git@github.com:alexanderdickson/waitForImages.git#~1.4.2",
"to-markdown": "git@github.com:benweet/to-markdown.git#jquery",
@ -31,6 +31,6 @@
},
"resolutions": {
"jquery": "2.0.3",
"bootstrap": "~3.0.2"
"bootstrap": "v3.0.0"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -304,6 +304,7 @@ define([
livePaneResizing: true,
enableCursorHotkey: false,
resizerDblClickToggle: false,
resizeWithWindow: false,
north__spacing_open: 1,
north__spacing_closed: 1,
spacing_open: 35,
@ -311,8 +312,9 @@ define([
togglerLength_open: 60,
togglerLength_closed: 60,
stateManagement__enabled: false,
center__minWidth: 200,
center__minHeight: 200,
north__minSize: 49,
center__minWidth: 300,
center__minHeight: 300,
fxSettings: {
easing: "easeInOutQuad",
duration: 350
@ -356,7 +358,7 @@ define([
layout = $('body').layout($.extend(layoutGlobalConfig, {
east__resizable: true,
east__size: 0.5,
east__minSize: 260
east__minSize: 300
}));
}
else if(settings.layoutOrientation == "vertical") {
@ -399,6 +401,38 @@ define([
eventMgr.onLayoutCreated(layout);
}
var $navbarElt;
var $leftBtnElts;
var $rightBtnElts;
var $leftBtnDropdown;
var $rightBtnDropdown;
var marginWidth = 40 + 25 + 25;
var titleWidth = 20 + 353;
var leftButtonsWidth = window.lightMode ? 0 : 80 + 87 + 174 + 175 + 87;
var rightButtonsWidth = 40 + 88 + 87;
var rightButtonsDropdown = 44;
function adjustWindow() {
var maxWidth = $navbarElt.width() - 10;
if(marginWidth + titleWidth + leftButtonsWidth + rightButtonsWidth > maxWidth) {
$rightBtnDropdown.show().find('.dropdown-menu').append($rightBtnElts);
if(marginWidth + titleWidth + leftButtonsWidth + rightButtonsDropdown > maxWidth) {
$leftBtnDropdown.show().find('.dropdown-menu').append($leftBtnElts);
}
else {
$leftBtnDropdown.hide().after($leftBtnElts);
}
}
else {
$leftBtnDropdown.hide().after($leftBtnElts);
$rightBtnDropdown.hide().after($rightBtnElts);
}
if(window.lightMode) {
$leftBtnElts.hide();
$leftBtnDropdown.hide();
}
layout.resizeAll();
}
// Create the PageDown editor
var editor;
var $editorElt;
@ -609,6 +643,12 @@ define([
else {
document.body.innerHTML = bodyIndexHTML;
}
$navbarElt = $('.navbar');
$leftBtnElts = $navbarElt.find('.left-buttons');
$rightBtnElts = $navbarElt.find('.right-buttons');
$leftBtnDropdown = $navbarElt.find('.left-buttons-dropdown');
$rightBtnDropdown = $navbarElt.find('.right-buttons-dropdown');
$(window).bind("resize", adjustWindow);
// Populate shortcuts in settings
shortcutMgr.addSettingEntries();
@ -723,6 +763,8 @@ define([
}, 1000);
eventMgr.onReady();
// Adjust the layout after the dom has changed
adjustWindow();
};
// Other initialization that are not prioritary
@ -740,10 +782,14 @@ define([
$documentPanelElt.collapse('hide');
isModalShown = true;
}).on('shown.bs.modal', function() {
// Focus on the first input when modal opens
var elt = $(this);
var $elt = $(this);
setTimeout(function() {
elt.find("input:enabled:visible:first").focus();
// When modal opens focus on the first button
$elt.find('.btn:first').focus();
// Or on the first link if any
$elt.find('button:first').focus();
// Or on the first input if any
$elt.find("input:enabled:visible:first").focus();
}, 50);
}).on('hidden.bs.modal', function() {
// Focus on the editor when modal is gone
@ -891,6 +937,19 @@ define([
});
// Tooltips
var openedTooltip;
function openTooltip(e) {
var elt = this;
if(openedTooltip && openedTooltip[0] === elt) return;
_.defer(function() {
$(document).on("click.close-tooltip", function() {
openedTooltip && openedTooltip.tooltip('hide');
openedTooltip = undefined;
$(document).off("click.close-tooltip");
});
openedTooltip = $(elt).tooltip('show');
});
}
$(".tooltip-lazy-rendering").tooltip({
container: '.modal-settings',
placement: 'right',
@ -907,23 +966,13 @@ define([
'<b class="text-danger">NOTE: Backlinks in Stack Exchange Q/A are not welcome.</b>'
].join('')
});
var tooltipOpen = false;
$(".tooltip-usercustom-extension").tooltip({
html: true,
container: '.modal-settings',
placement: 'right',
trigger: 'manual',
title: settingsUserCustomExtensionTooltipHTML
}).click(function(e) {
$(this).tooltip('show');
$(document).on("click.tooltip-usercustom-extension", function() {
tooltipOpen = false;
$(".tooltip-usercustom-extension").tooltip('hide');
$(document).off("click.tooltip-usercustom-extension");
});
!tooltipOpen && e.stopPropagation();
tooltipOpen = true;
});
}).click(openTooltip);
_.each(document.querySelectorAll(".tooltip-template"), function(tooltipElt) {
var $tooltipElt = $(tooltipElt);
$tooltipElt.tooltip({
@ -932,16 +981,7 @@ define([
placement: 'right',
trigger: 'manual',
title: settingsTemplateTooltipHTML
}).click(function(e) {
$tooltipElt.tooltip('show');
$(document).on("click.tooltip-template", function() {
tooltipOpen = false;
$(".tooltip-template").tooltip('hide');
$(document).off("click.tooltip-template");
});
!tooltipOpen && e.stopPropagation();
tooltipOpen = true;
});
}).click(openTooltip);
});
// Avoid dropdown panels to close on click

View File

@ -15,6 +15,7 @@ define([
"extensions/dialogAbout",
"extensions/dialogManagePublication",
"extensions/dialogManageSynchronization",
"extensions/dialogManageSharing",
"extensions/dialogOpenHarddrive",
"extensions/documentTitle",
"extensions/documentSelector",
@ -30,7 +31,6 @@ define([
"extensions/buttonFocusMode",
"extensions/buttonSync",
"extensions/buttonPublish",
"extensions/buttonShare",
"extensions/buttonStat",
"extensions/buttonHtmlCode",
"extensions/buttonViewer",
@ -257,7 +257,7 @@ define([
_.each(onCreateButtonListenerList, function(listener) {
extensionButtonsFragment.appendChild(createBtn(listener));
});
document.getElementById('extension-buttons').appendChild(extensionButtonsFragment);
document.querySelector('.extension-buttons').appendChild(extensionButtonsFragment);
// Create extension editor buttons
logger.log("onCreateEditorButton");

View File

@ -1,52 +0,0 @@
define([
"jquery",
"underscore",
"classes/Extension",
"text!html/buttonShare.html",
"text!html/buttonShareLocation.html",
], function($, _, Extension, buttonShareHTML, buttonShareLocationHTML) {
var buttonShare = new Extension("buttonShare", 'Button "Share"', true, true);
buttonShare.settingsBlock = '<p>Adds a "Share document" button in the navigation bar.</p>';
buttonShare.onCreateButton = function() {
return buttonShareHTML;
};
var fileDesc;
var linkListElt;
var $noLinkElt;
var refreshDocumentSharing = function(fileDescParameter) {
if(fileDescParameter !== undefined && fileDescParameter !== fileDesc) {
return;
}
var linkListHtml = _.reduce(fileDesc.publishLocations, function(result, attributes) {
if(attributes.sharingLink) {
result += _.template(buttonShareLocationHTML, {
link: attributes.sharingLink
});
}
return result;
}, '');
linkListElt.innerHTML = linkListHtml;
$noLinkElt.toggleClass('hide', linkListHtml.length !== 0);
};
buttonShare.onFileSelected = function(fileDescParameter) {
fileDesc = fileDescParameter;
refreshDocumentSharing(fileDescParameter);
};
buttonShare.onNewPublishSuccess = refreshDocumentSharing;
buttonShare.onPublishRemoved = refreshDocumentSharing;
buttonShare.onReady = function() {
var linkContainerElt = document.querySelector('.link-container');
linkListElt = linkContainerElt.querySelector('.link-list');
$noLinkElt = $(linkContainerElt.querySelector('.no-link'));
};
return buttonShare;
});

View File

@ -32,9 +32,7 @@ define([
var publishListHtml = _.reduce(fileDesc.publishLocations, function(result, publishAttributes) {
var formattedAttributes = _.omit(publishAttributes, "provider", "publishIndex", "sharingLink");
if(formattedAttributes.password) {
formattedAttributes.password = "********";
}
formattedAttributes.password && (formattedAttributes.password = "********");
formattedAttributes = JSON.stringify(formattedAttributes).replace(/{|}|"/g, "").replace(/,/g, ", ");
return result + _.template(dialogManagePublicationLocationHTML, {
publishAttributes: publishAttributes,

View File

@ -0,0 +1,50 @@
define([
"jquery",
"underscore",
"classes/Extension",
"text!html/dialogManageSharingLocation.html",
], function($, _, Extension, dialogManageSharingLocationHTML) {
var dialogManageSharing = new Extension("dialogManageSharing", 'Button "Share"', false, true);
var fileDesc;
var shareListElt;
var $msgShareListElt;
var $msgNoShareElt;
var refreshDocumentSharing = function(fileDescParameter) {
if(fileDescParameter !== undefined && fileDescParameter !== fileDesc) {
return;
}
var linkListHtml = _.reduce(fileDesc.publishLocations, function(result, attributes) {
if(attributes.sharingLink) {
result += _.template(dialogManageSharingLocationHTML, {
link: attributes.sharingLink
});
}
return result;
}, '');
shareListElt.innerHTML = linkListHtml;
$msgShareListElt.toggleClass('hide', linkListHtml.length === 0);
$msgNoShareElt.toggleClass('hide', linkListHtml.length !== 0);
};
dialogManageSharing.onFileSelected = function(fileDescParameter) {
fileDesc = fileDescParameter;
refreshDocumentSharing(fileDescParameter);
};
dialogManageSharing.onNewPublishSuccess = refreshDocumentSharing;
dialogManageSharing.onPublishRemoved = refreshDocumentSharing;
dialogManageSharing.onReady = function() {
var modalElt = document.querySelector('.modal-manage-sharing');
shareListElt = modalElt.querySelector('.share-list');
$msgShareListElt = $(modalElt.querySelectorAll('.msg-share-list'));
$msgNoShareElt = $(modalElt.querySelectorAll('.msg-no-share'));
};
return dialogManageSharing;
});

View File

@ -46,7 +46,7 @@ define([
placement: 'bottom',
},
{
element: '.navbar .action-create-file',
element: '.navbar-inner > .nav .action-create-file, .navbar .right-buttons-dropdown > .nav > .btn:not(:hidden)',
title: 'New document',
content: 'Click the <i class="icon-file"></i> <code>New document</code> button to create a new document.',
placement: 'left',
@ -73,17 +73,17 @@ define([
reflex: true,
},
{
element: '#extension-buttons .button-synchronize',
element: '.navbar-inner > .nav .button-synchronize, .navbar .right-buttons-dropdown > .nav > .btn:not(:hidden)',
title: 'Synchronize',
content: '<p>Once imported or exported, use the <i class="icon-refresh"></i> <code>Synchronize</code> button to force the synchronization</p>This is done automatically every 3 minutes.',
placement: 'bottom',
placement: 'left',
reflex: true,
},
{
element: '#extension-buttons .button-publish',
element: '.navbar-inner > .nav .button-publish, .navbar .right-buttons-dropdown > .nav > .btn:not(:hidden)',
title: 'Update publication',
content: 'Once published, use the <i class="icon-share"></i> <code>Publish</code> button to update the publication.',
placement: 'bottom',
placement: 'left',
reflex: true,
},
{

View File

@ -19,8 +19,8 @@ define([
$('.working-indicator').append($workingIndicatorElt);
for (var i = 0; i < 4; i++) {
$workingIndicatorElt.append($('<div class="bar">').css({
'animation-delay': (i*2/10).toPrecision(3) + 's',
'-webkit-animation-delay': (i*2/10).toPrecision(3) + 's',
'animation-delay': (i*15/100).toPrecision(3) + 's',
'-webkit-animation-delay': (i*15/100).toPrecision(3) + 's',
}));
}
};

View File

@ -2,19 +2,39 @@
<div class="navbar-inner">
<div class="nav left-space"></div>
<div class="nav right-space pull-right"></div>
<ul class="nav">
<div class="left-buttons-dropdown dropdown">
<div class="nav">
<button class="btn btn-success" data-toggle="dropdown"
title="Show buttons">
<i class="icon-th-large"></i>
</button>
<div class="dropdown-menu">
</div>
</div>
</div>
<ul class="nav left-buttons">
<li class="wmd-button-group1 btn-group"></li>
</ul>
<ul class="nav">
<ul class="nav left-buttons">
<li class="wmd-button-group2 btn-group"></li>
</ul>
<ul class="nav">
<ul class="nav left-buttons">
<li class="wmd-button-group3 btn-group"></li>
</ul>
<ul class="nav">
<ul class="nav left-buttons">
<li class="wmd-button-group4 btn-group"></li>
</ul>
<ul class="nav pull-right">
<div class="right-buttons-dropdown dropdown">
<div class="nav pull-right">
<button class="btn btn-success" data-toggle="dropdown"
title="Show buttons">
<i class="icon-th-large"></i>
</button>
<div class="dropdown-menu">
</div>
</div>
</div>
<ul class="nav pull-right right-buttons">
<li class="btn-group"><button
class="btn btn-success action-create-file" title="New document">
<i class="icon-file"></i>
@ -24,8 +44,8 @@
<i class="icon-trash"></i>
</button></li>
</ul>
<ul class="nav pull-right">
<li id="extension-buttons"></li>
<ul class="nav pull-right right-buttons">
<li class="extension-buttons"></li>
</ul>
<ul class="nav pull-right">
<li><div class="working-indicator"></div></li>
@ -122,6 +142,9 @@
<a href="#" data-toggle="modal" data-target=".modal-manage-publish"
class="action-reset-input list-group-item"><i class="icon-share"></i>
Manage publication</a>
<a href="#" data-toggle="modal" data-target=".modal-manage-sharing"
class="action-reset-input list-group-item"><i class="icon-link"></i>
Sharing</a>
</div>
<ul class="nav">
<li><a href="#" data-toggle="modal"
@ -578,7 +601,7 @@
</blockquote>
<blockquote class="msg-no-sync hide">
"<span class="file-title"></span>" is not synchronized yet. <br />
<br /> <b>NOTE:</b> You can add synchronized locations by
<br /> <b>Tip:</b> You can add synchronized locations by
exporting your document using <i class="icon-provider-gdrive"></i>
<code>Google Drive</code>
or <i class="icon-provider-dropbox"></i>
@ -813,7 +836,7 @@
</div>
</div>
<blockquote class="front-matter-info modal-publish-blogger modal-publish-tumblr modal-publish-wordpress">
<p><b>NOTE:</b> You can use a
<p><b>Tip:</b> You can use a
<a href="http://jekyllrb.com/docs/frontmatter/"
target="_blank">YAML front matter</a> to specify the title and the tags/labels of your publication.</p>
<p><b>Interpreted variables:</b> <i>title, tags</i></p>
@ -848,7 +871,7 @@
<div class="msg-no-publish hide">
"<span class="file-title"></span>" is not published yet. <br /> <br />
</div>
<b>NOTE:</b> You can add publications using the <i class="icon-share"></i> <code>Publish on</code> sub-menu.
<b>Tip:</b> You can add publications using the <i class="icon-share"></i> <code>Publish on</code> sub-menu.
</blockquote>
</div>
<div class="modal-footer">
@ -859,6 +882,38 @@
</div>
<div class="modal modal-manage-sharing">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">&times;</button>
<h3 class="modal-title">Sharing</h3>
</div>
<div class="modal-body">
<p class="msg-share-list hide">
"<span class="file-title"></span>" can be shared using the following link(s):
</p>
<div class="msg-share-list share-list hide"></div>
<p class="msg-no-share hide">To share this document within StackEdit you need first to <a
href="#" class="action-publish-gist" data-dismiss="modal">publish it as a Gist</a> in
Markdown format.
</p>
<blockquote>
<b>Tip:</b> You can open any URL within StackEdit using <a
href="viewer#!url=https://raw.github.com/benweet/stackedit/master/README.md"
title="Sharing example"><code>viewer#!url=</code></a>.
</blockquote>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-dismiss="modal">Close</a>
</div>
</div>
</div>
</div>
<div class="modal modal-settings">
<div class="modal-dialog">
<div class="modal-content">
@ -906,9 +961,7 @@
<label class="col-lg-4 control-label" for="input-settings-theme">Theme</label>
<div class="col-lg-7">
<select id="input-settings-theme" class="form-control">
</select> <span class="help-block"><a target="_blank"
href="https://github.com/benweet/stackedit/blob/master/doc/theming.md#stackedit-theming-guide">Create
your own theme...</a></span>
</select>
</div>
</div>
<div class="form-group">
@ -963,7 +1016,7 @@
<label>
<input type="checkbox" id="input-settings-gdrive-full-access" />
Allow StackEdit to open any document in Google Drive
</label> <span class="help-block">You need to revoke any existing token in
</label> <span class="help-block">You have to revoke any existing token in
<a href="https://www.google.com/settings/dashboard" target="_blank">Google Dashboard</a>
for this change to take effect.</span>
</div>
@ -1025,7 +1078,7 @@
<div class="tab-pane" id="tabpane-settings-extensions">
<div class="panel-group accordion-extensions"></div>
<span class="help-block pull-right"><a target="_blank"
href="https://github.com/benweet/stackedit/blob/master/doc/developer-guide.md#architecture">Create
href="https://github.com/benweet/stackedit/blob/master/doc/developer-guide.md#developer-guide">Create
your own extension...</a></span>
</div>
<div class="tab-pane" id="tabpane-settings-utils">
@ -1102,7 +1155,8 @@
<h3 class="modal-title">Redirection</h3>
</div>
<div class="modal-body">
<blockquote><b>NOTE:</b> <span class="redirect-msg"></span></blockquote>
<p class="redirect-msg"></p>
<blockquote>Please click <b>OK</b> to proceed.</blockquote>
</div>
<div class="modal-footer">
<a class="btn btn-default" data-dismiss="modal">Cancel</a>

View File

@ -1,17 +0,0 @@
<button class="btn btn-success dropdown-toggle" data-toggle="dropdown"
title="Share document">
<i class="icon-link"></i>
</button>
<div class="dropdown-menu pull-right link-container">
<h3>Sharing</h3>
<div class="link-list"></div>
<p class="no-link">To share this document you need first to <a
href="#" class="action-publish-gist">publish it as a Gist</a> in
Markdown format.
</p>
<blockquote>
<b>NOTE:</b> You can open any URL within StackEdit using <a
href="viewer#!url=https://raw.github.com/benweet/stackedit/master/README.md"
title="Sharing example"><code>viewer#!url=...</code></a>
</blockquote>
</div>

View File

@ -1,5 +0,0 @@
<div class="input-group">
<a href="<%= link %>" class="input-group-addon" title="Sharing location"><i
class="icon-link"></i></a> <input class="col-lg-5 form-control" type="text"
value="<%= link %>" readonly />
</div>

View File

@ -0,0 +1,5 @@
<div class="input-group">
<a href="<%= link %>" class="input-group-addon" title="Sharing location"><i
class="icon-link"></i></a> <input class="form-control" type="text"
value="<%= link %>" disabled />
</div>

View File

@ -9,4 +9,4 @@
</div>
</div>
</div>
<span class="help-block pull-right"><a target="_blank" href="https://github.com/benweet/stackedit/blob/master/doc/developer-guide.md#architecture">More info</a></span>
<span class="help-block pull-right"><a target="_blank" href="https://github.com/benweet/stackedit/blob/master/doc/developer-guide.md#developer-guide">More info</a></span>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -10,15 +10,6 @@ Font license info
Homepage: http://fortawesome.github.com/Font-Awesome/
## Elusive
Copyright (C) 2013 by Aristeides Stathopoulos
Author: Aristeides Stathopoulos
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://aristeides.com/
## Web Symbols
Copyright (c) 2011 by Just Be Nice studio. All rights reserved.
@ -46,3 +37,12 @@ Font license info
Homepage: http://www.mfglabs.com/
## Elusive
Copyright (C) 2013 by Aristeides Stathopoulos
Author: Aristeides Stathopoulos
License: SIL (http://scripts.sil.org/OFL)
Homepage: http://aristeides.com/

View File

@ -3,6 +3,8 @@
"css_prefix_text": "icon-",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "cfaa8fbbdcc7bb8d636cb974aad1f9b9",
@ -268,6 +270,12 @@
"code": 59708,
"src": "fontawesome"
},
{
"uid": "0ddd3e8201ccc7d41f7b7c9d27eca6c1",
"css": "link",
"code": 59455,
"src": "fontawesome"
},
{
"uid": "1dcd2b2148b7f086a4eb47f6a746bdee",
"css": "unlink",
@ -1864,12 +1872,6 @@
"code": 59663,
"src": "iconic"
},
{
"uid": "1fb8776fe6f1d3bbf970996fdfcf0f94",
"css": "link",
"code": 59455,
"src": "mfglabs"
},
{
"uid": "d4824d88566b0ac66d2cdcff3408690b",
"css": "share",

View File

@ -1,98 +1,212 @@
.icon-plus:before { content: '\e81f'; } /* '' */
.icon-minus:before { content: '\e823'; } /* '' */
.icon-left-big:before { content: '\e88a'; } /* '' */
.icon-up-big:before { content: '\e88c'; } /* '' */
.icon-right-big:before { content: '\e88b'; } /* '' */
.icon-down-big:before { content: '\e889'; } /* '' */
.icon-home:before { content: '\e93c'; } /* '' */
.icon-pause:before { content: '\e800'; } /* '' */
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
.icon-to-end:before { content: '\e8a0'; } /* '' */
.icon-to-start:before { content: '\e8a2'; } /* '' */
.icon-stop:before { content: '\e89e'; } /* '' */
.icon-up-dir:before { content: '\e94e'; } /* '' */
.icon-play:before { content: '\e89b'; } /* '' */
.icon-right-dir:before { content: '\e950'; } /* '' */
.icon-down-dir:before { content: '\e94d'; } /* '' */
.icon-left-dir:before { content: '\e94f'; } /* '' */
.icon-cloud:before { content: '\e8ad'; } /* '' */
.icon-umbrella:before { content: '\e8b0'; } /* '' */
.icon-glass:before { content: '\e801'; } /* '' */
.icon-archive:before { content: '\e859'; } /* '' */
.icon-search:before { content: '\e803'; } /* '' */
.icon-mail:before { content: '\e804'; } /* '' */
.icon-mail-alt:before { content: '\e805'; } /* '' */
.icon-heart:before { content: '\e806'; } /* '' */
.icon-heart-empty:before { content: '\e807'; } /* '' */
.icon-star:before { content: '\e808'; } /* '' */
.icon-star-empty:before { content: '\e809'; } /* '' */
.icon-check:before { content: '\e8cf'; } /* '' */
.icon-left-hand:before { content: '\e88e'; } /* '' */
.icon-up-hand:before { content: '\e88f'; } /* '' */
.icon-right-hand:before { content: '\e88d'; } /* '' */
.icon-down-hand:before { content: '\e890'; } /* '' */
.icon-th-list:before { content: '\e817'; } /* '' */
.icon-heart-empty:before { content: '\e807'; } /* '' */
.icon-heart:before { content: '\e806'; } /* '' */
.icon-music:before { content: '\e802'; } /* '' */
.icon-star-half:before { content: '\e80a'; } /* '' */
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-users:before { content: '\e80d'; } /* '' */
.icon-male:before { content: '\e80e'; } /* '' */
.icon-female:before { content: '\e80f'; } /* '' */
.icon-video:before { content: '\e810'; } /* '' */
.icon-videocam:before { content: '\e811'; } /* '' */
.icon-picture:before { content: '\e812'; } /* '' */
.icon-camera:before { content: '\e813'; } /* '' */
.icon-camera-alt:before { content: '\e814'; } /* '' */
.icon-th-large:before { content: '\e815'; } /* '' */
.icon-th:before { content: '\e816'; } /* '' */
.icon-flag:before { content: '\e838'; } /* '' */
.icon-cog:before { content: '\e862'; } /* '' */
.icon-attention:before { content: '\e851'; } /* '' */
.icon-flash:before { content: '\e8ae'; } /* '' */
.icon-cog-alt:before { content: '\e863'; } /* '' */
.icon-scissors:before { content: '\e8c5'; } /* '' */
.icon-flight:before { content: '\e8b1'; } /* '' */
.icon-mail:before { content: '\e804'; } /* '' */
.icon-edit:before { content: '\e941'; } /* '' */
.icon-pencil:before { content: '\e847'; } /* '' */
.icon-th-list:before { content: '\e817'; } /* '' */
.icon-ok:before { content: '\e818'; } /* '' */
.icon-ok-circled:before { content: '\e819'; } /* '' */
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
.icon-ok-squared:before { content: '\e81b'; } /* '' */
.icon-cancel:before { content: '\e81c'; } /* '' */
.icon-cancel-circled:before { content: '\e81d'; } /* '' */
.icon-asterisk:before { content: '\e8d3'; } /* '' */
.icon-attention-circled:before { content: '\e852'; } /* '' */
.icon-plus-circled:before { content: '\e820'; } /* '' */
.icon-minus-circled:before { content: '\e824'; } /* '' */
.icon-forward:before { content: '\e856'; } /* '' */
.icon-ccw:before { content: '\e896'; } /* '' */
.icon-cw:before { content: '\e895'; } /* '' */
.icon-resize-vertical:before { content: '\e872'; } /* '' */
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
.icon-eject:before { content: '\e8a6'; } /* '' */
.icon-trash:before { content: '\e89f'; } /* '' */
.icon-folder:before { content: '\e8d7'; } /* '' */
.icon-star-half:before { content: '\e80a'; } /* '' */
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
.icon-cancel-circled2:before { content: '\e86f'; } /* '' */
.icon-plus:before { content: '\e81f'; } /* '' */
.icon-plus-circled:before { content: '\e820'; } /* '' */
.icon-plus-squared:before { content: '\e821'; } /* '' */
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
.icon-minus:before { content: '\e823'; } /* '' */
.icon-minus-circled:before { content: '\e824'; } /* '' */
.icon-minus-squared:before { content: '\e825'; } /* '' */
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
.icon-help:before { content: '\e828'; } /* '' */
.icon-help-circled:before { content: '\e939'; } /* '' */
.icon-info-circled:before { content: '\e93a'; } /* '' */
.icon-th-large:before { content: '\e815'; } /* '' */
.icon-info:before { content: '\e93b'; } /* '' */
.icon-home:before { content: '\e93c'; } /* '' */
.icon-link:before { content: '\e83f'; } /* '' */
.icon-unlink:before { content: '\e82a'; } /* '' */
.icon-link-ext:before { content: '\e82b'; } /* '' */
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
.icon-attach:before { content: '\e82d'; } /* '' */
.icon-lock:before { content: '\e82e'; } /* '' */
.icon-lock-open:before { content: '\e82f'; } /* '' */
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
.icon-pin:before { content: '\e831'; } /* '' */
.icon-eye:before { content: '\e832'; } /* '' */
.icon-eye-off:before { content: '\e833'; } /* '' */
.icon-tag:before { content: '\e834'; } /* '' */
.icon-tags:before { content: '\e835'; } /* '' */
.icon-camera-alt:before { content: '\e814'; } /* '' */
.icon-code:before { content: '\e844'; } /* '' */
.icon-bookmark:before { content: '\e836'; } /* '' */
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
.icon-flag:before { content: '\e838'; } /* '' */
.icon-flag-empty:before { content: '\e93d'; } /* '' */
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
.icon-thumbs-down:before { content: '\e940'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
.icon-download:before { content: '\e83b'; } /* '' */
.icon-upload:before { content: '\e83c'; } /* '' */
.icon-download-cloud:before { content: '\e83d'; } /* '' */
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
.icon-reply:before { content: '\e845'; } /* '' */
.icon-reply-all:before { content: '\e840'; } /* '' */
.icon-forward:before { content: '\e856'; } /* '' */
.icon-quote-left:before { content: '\e842'; } /* '' */
.icon-quote-right:before { content: '\e843'; } /* '' */
.icon-export-alt:before { content: '\e846'; } /* '' */
.icon-pencil:before { content: '\e847'; } /* '' */
.icon-pencil-squared:before { content: '\e848'; } /* '' */
.icon-edit:before { content: '\e941'; } /* '' */
.icon-print:before { content: '\e942'; } /* '' */
.icon-retweet:before { content: '\e943'; } /* '' */
.icon-keyboard:before { content: '\e944'; } /* '' */
.icon-gamepad:before { content: '\e849'; } /* '' */
.icon-comment:before { content: '\e84a'; } /* '' */
.icon-chat:before { content: '\e84b'; } /* '' */
.icon-comment-empty:before { content: '\e84c'; } /* '' */
.icon-chat-empty:before { content: '\e84d'; } /* '' */
.icon-bell:before { content: '\e84e'; } /* '' */
.icon-bell-alt:before { content: '\e84f'; } /* '' */
.icon-attention-alt:before { content: '\e850'; } /* '' */
.icon-attention:before { content: '\e851'; } /* '' */
.icon-attention-circled:before { content: '\e852'; } /* '' */
.icon-location:before { content: '\e853'; } /* '' */
.icon-archive:before { content: '\e859'; } /* '' */
.icon-direction:before { content: '\e854'; } /* '' */
.icon-compass:before { content: '\e855'; } /* '' */
.icon-doc:before { content: '\e857'; } /* '' */
.icon-docs:before { content: '\e858'; } /* '' */
.icon-doc-text:before { content: '\e945'; } /* '' */
.icon-file:before { content: '\e946'; } /* '' */
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
.icon-folder-empty:before { content: '\e85a'; } /* '' */
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
.icon-box:before { content: '\e85c'; } /* '' */
.icon-rss:before { content: '\e85d'; } /* '' */
.icon-rss-squared:before { content: '\e85e'; } /* '' */
.icon-phone:before { content: '\e85f'; } /* '' */
.icon-phone-squared:before { content: '\e860'; } /* '' */
.icon-menu:before { content: '\e861'; } /* '' */
.icon-cog:before { content: '\e862'; } /* '' */
.icon-cog-alt:before { content: '\e863'; } /* '' */
.icon-wrench:before { content: '\e864'; } /* '' */
.icon-basket:before { content: '\e865'; } /* '' */
.icon-calendar:before { content: '\e866'; } /* '' */
.icon-calendar-empty:before { content: '\e867'; } /* '' */
.icon-login:before { content: '\e868'; } /* '' */
.icon-logout:before { content: '\e949'; } /* '' */
.icon-resize-full:before { content: '\e90d'; } /* '' */
.icon-mic:before { content: '\e94a'; } /* '' */
.icon-mute:before { content: '\e94b'; } /* '' */
.icon-volume-off:before { content: '\e94c'; } /* '' */
.icon-volume-down:before { content: '\e869'; } /* '' */
.icon-volume-up:before { content: '\e86a'; } /* '' */
.icon-headphones:before { content: '\e86b'; } /* '' */
.icon-clock:before { content: '\e86c'; } /* '' */
.icon-lightbulb:before { content: '\e86d'; } /* '' */
.icon-block:before { content: '\e86e'; } /* '' */
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
.icon-resize-small:before { content: '\e871'; } /* '' */
.icon-resize-vertical:before { content: '\e872'; } /* '' */
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
.icon-move:before { content: '\e874'; } /* '' */
.icon-zoom-in:before { content: '\e875'; } /* '' */
.icon-zoom-out:before { content: '\e876'; } /* '' */
.icon-down-circled2:before { content: '\e877'; } /* '' */
.icon-up-circled2:before { content: '\e878'; } /* '' */
.icon-down-dir:before { content: '\e94d'; } /* '' */
.icon-up-dir:before { content: '\e94e'; } /* '' */
.icon-left-dir:before { content: '\e94f'; } /* '' */
.icon-right-dir:before { content: '\e950'; } /* '' */
.icon-down-open:before { content: '\e879'; } /* '' */
.icon-left-open:before { content: '\e87a'; } /* '' */
.icon-right-open:before { content: '\e87b'; } /* '' */
.icon-up-open:before { content: '\e87c'; } /* '' */
.icon-angle-left:before { content: '\e87d'; } /* '' */
.icon-angle-right:before { content: '\e87e'; } /* '' */
.icon-angle-up:before { content: '\e87f'; } /* '' */
.icon-angle-down:before { content: '\e880'; } /* '' */
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
.icon-angle-double-left:before { content: '\e885'; } /* '' */
.icon-angle-double-right:before { content: '\e886'; } /* '' */
.icon-angle-double-up:before { content: '\e887'; } /* '' */
.icon-angle-double-down:before { content: '\e888'; } /* '' */
.icon-down:before { content: '\e951'; } /* '' */
.icon-left:before { content: '\e952'; } /* '' */
.icon-right:before { content: '\e953'; } /* '' */
.icon-up:before { content: '\e954'; } /* '' */
.icon-down-big:before { content: '\e889'; } /* '' */
.icon-music:before { content: '\e802'; } /* '' */
.icon-right-big:before { content: '\e88b'; } /* '' */
.icon-up-big:before { content: '\e88c'; } /* '' */
.icon-right-hand:before { content: '\e88d'; } /* '' */
.icon-left-hand:before { content: '\e88e'; } /* '' */
.icon-up-hand:before { content: '\e88f'; } /* '' */
.icon-down-hand:before { content: '\e890'; } /* '' */
.icon-left-circled:before { content: '\e891'; } /* '' */
.icon-right-circled:before { content: '\e892'; } /* '' */
.icon-up-circled:before { content: '\e893'; } /* '' */
.icon-down-circled:before { content: '\e894'; } /* '' */
.icon-cw:before { content: '\e895'; } /* '' */
.icon-ccw:before { content: '\e896'; } /* '' */
.icon-refresh:before { content: '\e897'; } /* '' */
.icon-level-up:before { content: '\e898'; } /* '' */
.icon-level-down:before { content: '\e955'; } /* '' */
.icon-shuffle:before { content: '\e956'; } /* '' */
.icon-exchange:before { content: '\e957'; } /* '' */
.icon-collapse:before { content: '\e958'; } /* '' */
.icon-collapse-top:before { content: '\e899'; } /* '' */
.icon-expand:before { content: '\e89a'; } /* '' */
.icon-play:before { content: '\e89b'; } /* '' */
.icon-play-circled:before { content: '\e89c'; } /* '' */
.icon-play-circled2:before { content: '\e89d'; } /* '' */
.icon-stop:before { content: '\e89e'; } /* '' */
.icon-pause:before { content: '\e800'; } /* '' */
.icon-to-end:before { content: '\e8a0'; } /* '' */
.icon-to-end-alt:before { content: '\e8a1'; } /* '' */
.icon-to-start:before { content: '\e8a2'; } /* '' */
.icon-to-start-alt:before { content: '\e8a3'; } /* '' */
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
.icon-eject:before { content: '\e8a6'; } /* '' */
.icon-signal:before { content: '\e8a8'; } /* '' */
.icon-award:before { content: '\e959'; } /* '' */
.icon-desktop:before { content: '\e95a'; } /* '' */
.icon-laptop:before { content: '\e90e'; } /* '' */
.icon-tablet:before { content: '\e95c'; } /* '' */
.icon-mobile:before { content: '\e8a9'; } /* '' */
.icon-inbox:before { content: '\e8aa'; } /* '' */
.icon-globe:before { content: '\e8ab'; } /* '' */
.icon-sun:before { content: '\e8ac'; } /* '' */
.icon-cloud:before { content: '\e8ad'; } /* '' */
.icon-flash:before { content: '\e8ae'; } /* '' */
.icon-moon:before { content: '\e8af'; } /* '' */
.icon-umbrella:before { content: '\e8b0'; } /* '' */
.icon-flight:before { content: '\e8b1'; } /* '' */
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
.icon-leaf:before { content: '\e8b3'; } /* '' */
.icon-font:before { content: '\e8b6'; } /* '' */
.icon-bold:before { content: '\e8b5'; } /* '' */
.icon-italic:before { content: '\e8b4'; } /* '' */
@ -105,144 +219,52 @@
.icon-list:before { content: '\e8b9'; } /* '' */
.icon-indent-left:before { content: '\e8ba'; } /* '' */
.icon-indent-right:before { content: '\e8bb'; } /* '' */
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
.icon-strike:before { content: '\e8be'; } /* '' */
.icon-underline:before { content: '\e8bf'; } /* '' */
.icon-superscript:before { content: '\e8c0'; } /* '' */
.icon-subscript:before { content: '\e8c1'; } /* '' */
.icon-table:before { content: '\e8c2'; } /* '' */
.icon-columns:before { content: '\e8c3'; } /* '' */
.icon-crop:before { content: '\e8c4'; } /* '' */
.icon-scissors:before { content: '\e8c5'; } /* '' */
.icon-paste:before { content: '\e8c6'; } /* '' */
.icon-briefcase:before { content: '\e8c7'; } /* '' */
.icon-suitcase:before { content: '\e8c8'; } /* '' */
.icon-ellipsis:before { content: '\e961'; } /* '' */
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
.icon-off:before { content: '\e963'; } /* '' */
.icon-road:before { content: '\e964'; } /* '' */
.icon-list-alt:before { content: '\e8c9'; } /* '' */
.icon-qrcode:before { content: '\e8ca'; } /* '' */
.icon-barcode:before { content: '\e8cb'; } /* '' */
.icon-book:before { content: '\e8cc'; } /* '' */
.icon-ajust:before { content: '\e8cd'; } /* '' */
.icon-tint:before { content: '\e8ce'; } /* '' */
.icon-layers:before { content: '\e829'; } /* '' */
.icon-magnet:before { content: '\e8d6'; } /* '' */
.icon-move:before { content: '\e874'; } /* '' */
.icon-link:before { content: '\e83f'; } /* '' */
.icon-share:before { content: '\e912'; } /* '' */
.icon-hdd:before { content: '\e841'; } /* '' */
.icon-link-ext:before { content: '\e82b'; } /* '' */
.icon-check:before { content: '\e8cf'; } /* '' */
.icon-check-empty:before { content: '\e8d0'; } /* '' */
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
.icon-phone-squared:before { content: '\e860'; } /* '' */
.icon-rss:before { content: '\e85d'; } /* '' */
.icon-circle:before { content: '\e8d1'; } /* '' */
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
.icon-asterisk:before { content: '\e8d3'; } /* '' */
.icon-gift:before { content: '\e8d4'; } /* '' */
.icon-fire:before { content: '\e8d5'; } /* '' */
.icon-magnet:before { content: '\e8d6'; } /* '' */
.icon-ticket:before { content: '\e8d8'; } /* '' */
.icon-credit-card:before { content: '\e965'; } /* '' */
.icon-floppy:before { content: '\e966'; } /* '' */
.icon-megaphone:before { content: '\e967'; } /* '' */
.icon-key:before { content: '\e8d9'; } /* '' */
.icon-fork:before { content: '\e8da'; } /* '' */
.icon-rocket:before { content: '\e8db'; } /* '' */
.icon-bug:before { content: '\e8dc'; } /* '' */
.icon-certificate:before { content: '\e8dd'; } /* '' */
.icon-left-circled:before { content: '\e891'; } /* '' */
.icon-right-circled:before { content: '\e892'; } /* '' */
.icon-up-circled:before { content: '\e893'; } /* '' */
.icon-down-circled:before { content: '\e894'; } /* '' */
.icon-tasks:before { content: '\e8de'; } /* '' */
.icon-filter:before { content: '\e8df'; } /* '' */
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
.icon-beaker:before { content: '\e8e0'; } /* '' */
.icon-docs:before { content: '\e858'; } /* '' */
.icon-menu:before { content: '\e861'; } /* '' */
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
.icon-strike:before { content: '\e8be'; } /* '' */
.icon-underline:before { content: '\e8bf'; } /* '' */
.icon-table:before { content: '\e8c2'; } /* '' */
.icon-magic:before { content: '\e8e1'; } /* '' */
.icon-truck:before { content: '\e8e2'; } /* '' */
.icon-money:before { content: '\e8e3'; } /* '' */
.icon-columns:before { content: '\e8c3'; } /* '' */
.icon-sort:before { content: '\e8ec'; } /* '' */
.icon-sort-down:before { content: '\e8ed'; } /* '' */
.icon-sort-up:before { content: '\e8ee'; } /* '' */
.icon-mail-alt:before { content: '\e805'; } /* '' */
.icon-gauge:before { content: '\e8f6'; } /* '' */
.icon-comment-empty:before { content: '\e84c'; } /* '' */
.icon-chat-empty:before { content: '\e84d'; } /* '' */
.icon-sitemap:before { content: '\e8f7'; } /* '' */
.icon-paste:before { content: '\e8c6'; } /* '' */
.icon-lightbulb:before { content: '\e86d'; } /* '' */
.icon-exchange:before { content: '\e957'; } /* '' */
.icon-download-cloud:before { content: '\e83d'; } /* '' */
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
.icon-user-md:before { content: '\e8fc'; } /* '' */
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
.icon-suitcase:before { content: '\e8c8'; } /* '' */
.icon-bell-alt:before { content: '\e84f'; } /* '' */
.icon-coffee:before { content: '\e8f9'; } /* '' */
.icon-food:before { content: '\e8fa'; } /* '' */
.icon-doc-text:before { content: '\e945'; } /* '' */
.icon-building:before { content: '\e902'; } /* '' */
.icon-hospital:before { content: '\e901'; } /* '' */
.icon-ambulance:before { content: '\e8fe'; } /* '' */
.icon-medkit:before { content: '\e8ff'; } /* '' */
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
.icon-beer:before { content: '\e8fb'; } /* '' */
.icon-h-sigh:before { content: '\e900'; } /* '' */
.icon-plus-squared:before { content: '\e821'; } /* '' */
.icon-angle-double-left:before { content: '\e885'; } /* '' */
.icon-angle-double-right:before { content: '\e886'; } /* '' */
.icon-angle-double-up:before { content: '\e887'; } /* '' */
.icon-angle-double-down:before { content: '\e888'; } /* '' */
.icon-angle-left:before { content: '\e87d'; } /* '' */
.icon-angle-right:before { content: '\e87e'; } /* '' */
.icon-angle-up:before { content: '\e87f'; } /* '' */
.icon-angle-down:before { content: '\e880'; } /* '' */
.icon-desktop:before { content: '\e95a'; } /* '' */
.icon-laptop:before { content: '\e90e'; } /* '' */
.icon-tablet:before { content: '\e95c'; } /* '' */
.icon-mobile:before { content: '\e8a9'; } /* '' */
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
.icon-quote-left:before { content: '\e842'; } /* '' */
.icon-quote-right:before { content: '\e843'; } /* '' */
.icon-spinner:before { content: '\e8f8'; } /* '' */
.icon-circle:before { content: '\e8d1'; } /* '' */
.icon-reply:before { content: '\e845'; } /* '' */
.icon-folder-empty:before { content: '\e85a'; } /* '' */
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
.icon-smile:before { content: '\e903'; } /* '' */
.icon-frown:before { content: '\e904'; } /* '' */
.icon-meh:before { content: '\e905'; } /* '' */
.icon-gamepad:before { content: '\e849'; } /* '' */
.icon-keyboard:before { content: '\e944'; } /* '' */
.icon-flag-empty:before { content: '\e93d'; } /* '' */
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
.icon-terminal:before { content: '\e907'; } /* '' */
.icon-reply-all:before { content: '\e840'; } /* '' */
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
.icon-direction:before { content: '\e854'; } /* '' */
.icon-crop:before { content: '\e8c4'; } /* '' */
.icon-fork:before { content: '\e8da'; } /* '' */
.icon-unlink:before { content: '\e82a'; } /* '' */
.icon-help:before { content: '\e828'; } /* '' */
.icon-info:before { content: '\e93b'; } /* '' */
.icon-attention-alt:before { content: '\e850'; } /* '' */
.icon-superscript:before { content: '\e8c0'; } /* '' */
.icon-subscript:before { content: '\e8c1'; } /* '' */
.icon-eraser:before { content: '\e908'; } /* '' */
.icon-puzzle:before { content: '\e909'; } /* '' */
.icon-mic:before { content: '\e94a'; } /* '' */
.icon-mute:before { content: '\e94b'; } /* '' */
.icon-shield:before { content: '\e90a'; } /* '' */
.icon-calendar-empty:before { content: '\e867'; } /* '' */
.icon-extinguisher:before { content: '\e90b'; } /* '' */
.icon-rocket:before { content: '\e8db'; } /* '' */
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
.icon-anchor:before { content: '\e906'; } /* '' */
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
.icon-bullseye:before { content: '\e90c'; } /* '' */
.icon-ellipsis:before { content: '\e961'; } /* '' */
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
.icon-rss-squared:before { content: '\e85e'; } /* '' */
.icon-play-circled:before { content: '\e89c'; } /* '' */
.icon-ticket:before { content: '\e8d8'; } /* '' */
.icon-minus-squared:before { content: '\e825'; } /* '' */
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
.icon-level-up:before { content: '\e898'; } /* '' */
.icon-level-down:before { content: '\e955'; } /* '' */
.icon-ok-squared:before { content: '\e81b'; } /* '' */
.icon-pencil-squared:before { content: '\e848'; } /* '' */
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
.icon-export-alt:before { content: '\e846'; } /* '' */
.icon-compass:before { content: '\e855'; } /* '' */
.icon-collapse:before { content: '\e958'; } /* '' */
.icon-collapse-top:before { content: '\e899'; } /* '' */
.icon-expand:before { content: '\e89a'; } /* '' */
.icon-euro:before { content: '\e8e4'; } /* '' */
.icon-pound:before { content: '\e8e5'; } /* '' */
.icon-dollar:before { content: '\e8e6'; } /* '' */
@ -251,69 +273,47 @@
.icon-renminbi:before { content: '\e8e9'; } /* '' */
.icon-won:before { content: '\e8ea'; } /* '' */
.icon-bitcoin:before { content: '\e8eb'; } /* '' */
.icon-file:before { content: '\e946'; } /* '' */
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
.icon-sort:before { content: '\e8ec'; } /* '' */
.icon-sort-down:before { content: '\e8ed'; } /* '' */
.icon-sort-up:before { content: '\e8ee'; } /* '' */
.icon-sort-alt-up:before { content: '\e8ef'; } /* '' */
.icon-sort-alt-down:before { content: '\e8f0'; } /* '' */
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
.icon-sort-number-up:before { content: '\e8f3'; } /* '' */
.icon-sort-number-down:before { content: '\e8f4'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
.icon-down:before { content: '\e951'; } /* '' */
.icon-up:before { content: '\e954'; } /* '' */
.icon-right:before { content: '\e953'; } /* '' */
.icon-left:before { content: '\e952'; } /* '' */
.icon-female:before { content: '\e80f'; } /* '' */
.icon-male:before { content: '\e80e'; } /* '' */
.icon-sun:before { content: '\e8ac'; } /* '' */
.icon-moon:before { content: '\e8af'; } /* '' */
.icon-box:before { content: '\e85c'; } /* '' */
.icon-bug:before { content: '\e8dc'; } /* '' */
.icon-picture:before { content: '\e812'; } /* '' */
.icon-globe:before { content: '\e8ab'; } /* '' */
.icon-leaf:before { content: '\e8b3'; } /* '' */
.icon-glass:before { content: '\e801'; } /* '' */
.icon-gift:before { content: '\e8d4'; } /* '' */
.icon-videocam:before { content: '\e811'; } /* '' */
.icon-headphones:before { content: '\e86b'; } /* '' */
.icon-video:before { content: '\e810'; } /* '' */
.icon-target:before { content: '\e8a7'; } /* '' */
.icon-award:before { content: '\e959'; } /* '' */
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
.icon-thumbs-down:before { content: '\e940'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-users:before { content: '\e80d'; } /* '' */
.icon-credit-card:before { content: '\e965'; } /* '' */
.icon-briefcase:before { content: '\e8c7'; } /* '' */
.icon-floppy:before { content: '\e966'; } /* '' */
.icon-folder-open:before { content: '\e81e'; } /* '' */
.icon-doc:before { content: '\e857'; } /* '' */
.icon-calendar:before { content: '\e866'; } /* '' */
.icon-chart-bar:before { content: '\e90f'; } /* '' */
.icon-pin:before { content: '\e831'; } /* '' */
.icon-attach:before { content: '\e82d'; } /* '' */
.icon-book:before { content: '\e8cc'; } /* '' */
.icon-phone:before { content: '\e85f'; } /* '' */
.icon-megaphone:before { content: '\e967'; } /* '' */
.icon-upload:before { content: '\e83c'; } /* '' */
.icon-download:before { content: '\e83b'; } /* '' */
.icon-signal:before { content: '\e8a8'; } /* '' */
.icon-camera:before { content: '\e813'; } /* '' */
.icon-shuffle:before { content: '\e956'; } /* '' */
.icon-volume-off:before { content: '\e94c'; } /* '' */
.icon-volume-down:before { content: '\e869'; } /* '' */
.icon-volume-up:before { content: '\e86a'; } /* '' */
.icon-search:before { content: '\e803'; } /* '' */
.icon-key:before { content: '\e8d9'; } /* '' */
.icon-lock:before { content: '\e82e'; } /* '' */
.icon-lock-open:before { content: '\e82f'; } /* '' */
.icon-bell:before { content: '\e84e'; } /* '' */
.icon-bookmark:before { content: '\e836'; } /* '' */
.icon-fire:before { content: '\e8d5'; } /* '' */
.icon-wrench:before { content: '\e864'; } /* '' */
.icon-hammer:before { content: '\e8f5'; } /* '' */
.icon-clock:before { content: '\e86c'; } /* '' */
.icon-truck:before { content: '\e8e2'; } /* '' */
.icon-block:before { content: '\e86e'; } /* '' */
.icon-gauge:before { content: '\e8f6'; } /* '' */
.icon-sitemap:before { content: '\e8f7'; } /* '' */
.icon-spinner:before { content: '\e8f8'; } /* '' */
.icon-coffee:before { content: '\e8f9'; } /* '' */
.icon-food:before { content: '\e8fa'; } /* '' */
.icon-beer:before { content: '\e8fb'; } /* '' */
.icon-user-md:before { content: '\e8fc'; } /* '' */
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
.icon-ambulance:before { content: '\e8fe'; } /* '' */
.icon-medkit:before { content: '\e8ff'; } /* '' */
.icon-h-sigh:before { content: '\e900'; } /* '' */
.icon-hospital:before { content: '\e901'; } /* '' */
.icon-building:before { content: '\e902'; } /* '' */
.icon-smile:before { content: '\e903'; } /* '' */
.icon-frown:before { content: '\e904'; } /* '' */
.icon-meh:before { content: '\e905'; } /* '' */
.icon-anchor:before { content: '\e906'; } /* '' */
.icon-terminal:before { content: '\e907'; } /* '' */
.icon-eraser:before { content: '\e908'; } /* '' */
.icon-puzzle:before { content: '\e909'; } /* '' */
.icon-shield:before { content: '\e90a'; } /* '' */
.icon-extinguisher:before { content: '\e90b'; } /* '' */
.icon-bullseye:before { content: '\e90c'; } /* '' */
.icon-resize-full:before { content: '\e90d'; } /* '' */
.icon-target:before { content: '\e8a7'; } /* '' */
.icon-layers:before { content: '\e829'; } /* '' */
.icon-chart-bar:before { content: '\e90f'; } /* '' */
.icon-share:before { content: '\e912'; } /* '' */
.icon-hdd:before { content: '\e841'; } /* '' */
.icon-trash:before { content: '\e89f'; } /* '' */
.icon-folder:before { content: '\e8d7'; } /* '' */
.icon-code:before { content: '\e844'; } /* '' */
.icon-folder-open:before { content: '\e81e'; } /* '' */
.icon-left-big:before { content: '\e88a'; } /* '' */

File diff suppressed because one or more lines are too long

View File

@ -1,98 +1,212 @@
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.icon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.icon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.icon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.icon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
.icon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93a;&nbsp;'); }
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.icon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.icon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe943;&nbsp;'); }
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.icon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.icon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.icon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.icon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.icon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.icon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.icon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.icon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.icon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.icon-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.icon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.icon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.icon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.icon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.icon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
@ -105,144 +219,52 @@
.icon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.icon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.icon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.icon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.icon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.icon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.icon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.icon-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.icon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.icon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.icon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.icon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.icon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.icon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.icon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.icon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
@ -251,69 +273,47 @@
.icon-renminbi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.icon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.icon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.icon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.icon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.icon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.icon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.icon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.icon-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }

View File

@ -10,100 +10,214 @@
/* font-size: 120%; */
}
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.icon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
.icon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.icon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
.icon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
.icon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
.icon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
.icon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
.icon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.icon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
.icon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93a;&nbsp;'); }
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.icon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
.icon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
.icon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe943;&nbsp;'); }
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
.icon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.icon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
.icon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
.icon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
.icon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
.icon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.icon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.icon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
.icon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.icon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
.icon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
.icon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
.icon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
.icon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
.icon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
.icon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
.icon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
.icon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
.icon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
.icon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.icon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
.icon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
.icon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
.icon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
.icon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
.icon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
.icon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.icon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.icon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.icon-refresh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.icon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
.icon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
.icon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
.icon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
.icon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
.icon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
.icon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
.icon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
.icon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.icon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
.icon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
.icon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
@ -116,144 +230,52 @@
.icon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
.icon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
.icon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.icon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
.icon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
.icon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
.icon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.icon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
.icon-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.icon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
.icon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
.icon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.icon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.icon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.icon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.icon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
.icon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
.icon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
.icon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
.icon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
.icon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
.icon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
.icon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
.icon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.icon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.icon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.icon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
.icon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
.icon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
.icon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
.icon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
.icon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.icon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
.icon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.icon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.icon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.icon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
.icon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
.icon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
.icon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
.icon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
.icon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
.icon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
.icon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
.icon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
.icon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
.icon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
.icon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
.icon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
.icon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
.icon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
.icon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.icon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
.icon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
.icon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
.icon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
.icon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
.icon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.icon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
.icon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
.icon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
.icon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.icon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
.icon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
.icon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
.icon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
.icon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
.icon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
.icon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
.icon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
.icon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
.icon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
.icon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.icon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
.icon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.icon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.icon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
.icon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
.icon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
.icon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
.icon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.icon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.icon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
.icon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
.icon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
.icon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
.icon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
.icon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
.icon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
.icon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
.icon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
.icon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
.icon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
.icon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
.icon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
.icon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
.icon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
.icon-collapse-top { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
.icon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
.icon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
.icon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
.icon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
@ -262,69 +284,47 @@
.icon-renminbi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
.icon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
.icon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
.icon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
.icon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
.icon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
.icon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
.icon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
.icon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
.icon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
.icon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
.icon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
.icon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
.icon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
.icon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
.icon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
.icon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
.icon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
.icon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
.icon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
.icon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.icon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
.icon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
.icon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.icon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.icon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
.icon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
.icon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
.icon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
.icon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
.icon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
.icon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
.icon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
.icon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
.icon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
.icon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
.icon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
.icon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
.icon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
.icon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
.icon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
.icon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
.icon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
.icon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
.icon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
.icon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
.icon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
.icon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
.icon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
.icon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
.icon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
.icon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
.icon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
.icon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
.icon-layers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
.icon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
.icon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
.icon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
.icon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }

View File

@ -1,10 +1,10 @@
@font-face {
font-family: 'fontello';
src: url('../font/fontello.eot?67080555');
src: url('../font/fontello.eot?67080555#iefix') format('embedded-opentype'),
url('../font/fontello.woff?67080555') format('woff'),
url('../font/fontello.ttf?67080555') format('truetype'),
url('../font/fontello.svg?67080555#fontello') format('svg');
src: url('../font/fontello.eot?9145552');
src: url('../font/fontello.eot?9145552#iefix') format('embedded-opentype'),
url('../font/fontello.woff?9145552') format('woff'),
url('../font/fontello.ttf?9145552') format('truetype'),
url('../font/fontello.svg?9145552#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
@ -14,7 +14,7 @@
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../font/fontello.svg?67080555#fontello') format('svg');
src: url('../font/fontello.svg?9145552#fontello') format('svg');
}
}
*/
@ -50,100 +50,214 @@
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-plus:before { content: '\e81f'; } /* '' */
.icon-minus:before { content: '\e823'; } /* '' */
.icon-left-big:before { content: '\e88a'; } /* '' */
.icon-up-big:before { content: '\e88c'; } /* '' */
.icon-right-big:before { content: '\e88b'; } /* '' */
.icon-down-big:before { content: '\e889'; } /* '' */
.icon-home:before { content: '\e93c'; } /* '' */
.icon-pause:before { content: '\e800'; } /* '' */
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
.icon-to-end:before { content: '\e8a0'; } /* '' */
.icon-to-start:before { content: '\e8a2'; } /* '' */
.icon-stop:before { content: '\e89e'; } /* '' */
.icon-up-dir:before { content: '\e94e'; } /* '' */
.icon-play:before { content: '\e89b'; } /* '' */
.icon-right-dir:before { content: '\e950'; } /* '' */
.icon-down-dir:before { content: '\e94d'; } /* '' */
.icon-left-dir:before { content: '\e94f'; } /* '' */
.icon-cloud:before { content: '\e8ad'; } /* '' */
.icon-umbrella:before { content: '\e8b0'; } /* '' */
.icon-glass:before { content: '\e801'; } /* '' */
.icon-archive:before { content: '\e859'; } /* '' */
.icon-search:before { content: '\e803'; } /* '' */
.icon-mail:before { content: '\e804'; } /* '' */
.icon-mail-alt:before { content: '\e805'; } /* '' */
.icon-heart:before { content: '\e806'; } /* '' */
.icon-heart-empty:before { content: '\e807'; } /* '' */
.icon-star:before { content: '\e808'; } /* '' */
.icon-star-empty:before { content: '\e809'; } /* '' */
.icon-check:before { content: '\e8cf'; } /* '' */
.icon-left-hand:before { content: '\e88e'; } /* '' */
.icon-up-hand:before { content: '\e88f'; } /* '' */
.icon-right-hand:before { content: '\e88d'; } /* '' */
.icon-down-hand:before { content: '\e890'; } /* '' */
.icon-th-list:before { content: '\e817'; } /* '' */
.icon-heart-empty:before { content: '\e807'; } /* '' */
.icon-heart:before { content: '\e806'; } /* '' */
.icon-music:before { content: '\e802'; } /* '' */
.icon-star-half:before { content: '\e80a'; } /* '' */
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-users:before { content: '\e80d'; } /* '' */
.icon-male:before { content: '\e80e'; } /* '' */
.icon-female:before { content: '\e80f'; } /* '' */
.icon-video:before { content: '\e810'; } /* '' */
.icon-videocam:before { content: '\e811'; } /* '' */
.icon-picture:before { content: '\e812'; } /* '' */
.icon-camera:before { content: '\e813'; } /* '' */
.icon-camera-alt:before { content: '\e814'; } /* '' */
.icon-th-large:before { content: '\e815'; } /* '' */
.icon-th:before { content: '\e816'; } /* '' */
.icon-flag:before { content: '\e838'; } /* '' */
.icon-cog:before { content: '\e862'; } /* '' */
.icon-attention:before { content: '\e851'; } /* '' */
.icon-flash:before { content: '\e8ae'; } /* '' */
.icon-cog-alt:before { content: '\e863'; } /* '' */
.icon-scissors:before { content: '\e8c5'; } /* '' */
.icon-flight:before { content: '\e8b1'; } /* '' */
.icon-mail:before { content: '\e804'; } /* '' */
.icon-edit:before { content: '\e941'; } /* '' */
.icon-pencil:before { content: '\e847'; } /* '' */
.icon-th-list:before { content: '\e817'; } /* '' */
.icon-ok:before { content: '\e818'; } /* '' */
.icon-ok-circled:before { content: '\e819'; } /* '' */
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
.icon-ok-squared:before { content: '\e81b'; } /* '' */
.icon-cancel:before { content: '\e81c'; } /* '' */
.icon-cancel-circled:before { content: '\e81d'; } /* '' */
.icon-asterisk:before { content: '\e8d3'; } /* '' */
.icon-attention-circled:before { content: '\e852'; } /* '' */
.icon-plus-circled:before { content: '\e820'; } /* '' */
.icon-minus-circled:before { content: '\e824'; } /* '' */
.icon-forward:before { content: '\e856'; } /* '' */
.icon-ccw:before { content: '\e896'; } /* '' */
.icon-cw:before { content: '\e895'; } /* '' */
.icon-resize-vertical:before { content: '\e872'; } /* '' */
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
.icon-eject:before { content: '\e8a6'; } /* '' */
.icon-trash:before { content: '\e89f'; } /* '' */
.icon-folder:before { content: '\e8d7'; } /* '' */
.icon-star-half:before { content: '\e80a'; } /* '' */
.icon-ok-circled2:before { content: '\e81a'; } /* '' */
.icon-cancel-circled2:before { content: '\e86f'; } /* '' */
.icon-plus:before { content: '\e81f'; } /* '' */
.icon-plus-circled:before { content: '\e820'; } /* '' */
.icon-plus-squared:before { content: '\e821'; } /* '' */
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
.icon-minus:before { content: '\e823'; } /* '' */
.icon-minus-circled:before { content: '\e824'; } /* '' */
.icon-minus-squared:before { content: '\e825'; } /* '' */
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
.icon-help:before { content: '\e828'; } /* '' */
.icon-help-circled:before { content: '\e939'; } /* '' */
.icon-info-circled:before { content: '\e93a'; } /* '' */
.icon-th-large:before { content: '\e815'; } /* '' */
.icon-info:before { content: '\e93b'; } /* '' */
.icon-home:before { content: '\e93c'; } /* '' */
.icon-link:before { content: '\e83f'; } /* '' */
.icon-unlink:before { content: '\e82a'; } /* '' */
.icon-link-ext:before { content: '\e82b'; } /* '' */
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
.icon-attach:before { content: '\e82d'; } /* '' */
.icon-lock:before { content: '\e82e'; } /* '' */
.icon-lock-open:before { content: '\e82f'; } /* '' */
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
.icon-pin:before { content: '\e831'; } /* '' */
.icon-eye:before { content: '\e832'; } /* '' */
.icon-eye-off:before { content: '\e833'; } /* '' */
.icon-tag:before { content: '\e834'; } /* '' */
.icon-tags:before { content: '\e835'; } /* '' */
.icon-camera-alt:before { content: '\e814'; } /* '' */
.icon-code:before { content: '\e844'; } /* '' */
.icon-bookmark:before { content: '\e836'; } /* '' */
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
.icon-flag:before { content: '\e838'; } /* '' */
.icon-flag-empty:before { content: '\e93d'; } /* '' */
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
.icon-thumbs-down:before { content: '\e940'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
.icon-download:before { content: '\e83b'; } /* '' */
.icon-upload:before { content: '\e83c'; } /* '' */
.icon-download-cloud:before { content: '\e83d'; } /* '' */
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
.icon-reply:before { content: '\e845'; } /* '' */
.icon-reply-all:before { content: '\e840'; } /* '' */
.icon-forward:before { content: '\e856'; } /* '' */
.icon-quote-left:before { content: '\e842'; } /* '' */
.icon-quote-right:before { content: '\e843'; } /* '' */
.icon-export-alt:before { content: '\e846'; } /* '' */
.icon-pencil:before { content: '\e847'; } /* '' */
.icon-pencil-squared:before { content: '\e848'; } /* '' */
.icon-edit:before { content: '\e941'; } /* '' */
.icon-print:before { content: '\e942'; } /* '' */
.icon-retweet:before { content: '\e943'; } /* '' */
.icon-keyboard:before { content: '\e944'; } /* '' */
.icon-gamepad:before { content: '\e849'; } /* '' */
.icon-comment:before { content: '\e84a'; } /* '' */
.icon-chat:before { content: '\e84b'; } /* '' */
.icon-comment-empty:before { content: '\e84c'; } /* '' */
.icon-chat-empty:before { content: '\e84d'; } /* '' */
.icon-bell:before { content: '\e84e'; } /* '' */
.icon-bell-alt:before { content: '\e84f'; } /* '' */
.icon-attention-alt:before { content: '\e850'; } /* '' */
.icon-attention:before { content: '\e851'; } /* '' */
.icon-attention-circled:before { content: '\e852'; } /* '' */
.icon-location:before { content: '\e853'; } /* '' */
.icon-archive:before { content: '\e859'; } /* '' */
.icon-direction:before { content: '\e854'; } /* '' */
.icon-compass:before { content: '\e855'; } /* '' */
.icon-doc:before { content: '\e857'; } /* '' */
.icon-docs:before { content: '\e858'; } /* '' */
.icon-doc-text:before { content: '\e945'; } /* '' */
.icon-file:before { content: '\e946'; } /* '' */
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
.icon-folder-empty:before { content: '\e85a'; } /* '' */
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
.icon-box:before { content: '\e85c'; } /* '' */
.icon-rss:before { content: '\e85d'; } /* '' */
.icon-rss-squared:before { content: '\e85e'; } /* '' */
.icon-phone:before { content: '\e85f'; } /* '' */
.icon-phone-squared:before { content: '\e860'; } /* '' */
.icon-menu:before { content: '\e861'; } /* '' */
.icon-cog:before { content: '\e862'; } /* '' */
.icon-cog-alt:before { content: '\e863'; } /* '' */
.icon-wrench:before { content: '\e864'; } /* '' */
.icon-basket:before { content: '\e865'; } /* '' */
.icon-calendar:before { content: '\e866'; } /* '' */
.icon-calendar-empty:before { content: '\e867'; } /* '' */
.icon-login:before { content: '\e868'; } /* '' */
.icon-logout:before { content: '\e949'; } /* '' */
.icon-resize-full:before { content: '\e90d'; } /* '' */
.icon-mic:before { content: '\e94a'; } /* '' */
.icon-mute:before { content: '\e94b'; } /* '' */
.icon-volume-off:before { content: '\e94c'; } /* '' */
.icon-volume-down:before { content: '\e869'; } /* '' */
.icon-volume-up:before { content: '\e86a'; } /* '' */
.icon-headphones:before { content: '\e86b'; } /* '' */
.icon-clock:before { content: '\e86c'; } /* '' */
.icon-lightbulb:before { content: '\e86d'; } /* '' */
.icon-block:before { content: '\e86e'; } /* '' */
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
.icon-resize-small:before { content: '\e871'; } /* '' */
.icon-resize-vertical:before { content: '\e872'; } /* '' */
.icon-resize-horizontal:before { content: '\e873'; } /* '' */
.icon-move:before { content: '\e874'; } /* '' */
.icon-zoom-in:before { content: '\e875'; } /* '' */
.icon-zoom-out:before { content: '\e876'; } /* '' */
.icon-down-circled2:before { content: '\e877'; } /* '' */
.icon-up-circled2:before { content: '\e878'; } /* '' */
.icon-down-dir:before { content: '\e94d'; } /* '' */
.icon-up-dir:before { content: '\e94e'; } /* '' */
.icon-left-dir:before { content: '\e94f'; } /* '' */
.icon-right-dir:before { content: '\e950'; } /* '' */
.icon-down-open:before { content: '\e879'; } /* '' */
.icon-left-open:before { content: '\e87a'; } /* '' */
.icon-right-open:before { content: '\e87b'; } /* '' */
.icon-up-open:before { content: '\e87c'; } /* '' */
.icon-angle-left:before { content: '\e87d'; } /* '' */
.icon-angle-right:before { content: '\e87e'; } /* '' */
.icon-angle-up:before { content: '\e87f'; } /* '' */
.icon-angle-down:before { content: '\e880'; } /* '' */
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
.icon-angle-double-left:before { content: '\e885'; } /* '' */
.icon-angle-double-right:before { content: '\e886'; } /* '' */
.icon-angle-double-up:before { content: '\e887'; } /* '' */
.icon-angle-double-down:before { content: '\e888'; } /* '' */
.icon-down:before { content: '\e951'; } /* '' */
.icon-left:before { content: '\e952'; } /* '' */
.icon-right:before { content: '\e953'; } /* '' */
.icon-up:before { content: '\e954'; } /* '' */
.icon-down-big:before { content: '\e889'; } /* '' */
.icon-music:before { content: '\e802'; } /* '' */
.icon-right-big:before { content: '\e88b'; } /* '' */
.icon-up-big:before { content: '\e88c'; } /* '' */
.icon-right-hand:before { content: '\e88d'; } /* '' */
.icon-left-hand:before { content: '\e88e'; } /* '' */
.icon-up-hand:before { content: '\e88f'; } /* '' */
.icon-down-hand:before { content: '\e890'; } /* '' */
.icon-left-circled:before { content: '\e891'; } /* '' */
.icon-right-circled:before { content: '\e892'; } /* '' */
.icon-up-circled:before { content: '\e893'; } /* '' */
.icon-down-circled:before { content: '\e894'; } /* '' */
.icon-cw:before { content: '\e895'; } /* '' */
.icon-ccw:before { content: '\e896'; } /* '' */
.icon-refresh:before { content: '\e897'; } /* '' */
.icon-level-up:before { content: '\e898'; } /* '' */
.icon-level-down:before { content: '\e955'; } /* '' */
.icon-shuffle:before { content: '\e956'; } /* '' */
.icon-exchange:before { content: '\e957'; } /* '' */
.icon-collapse:before { content: '\e958'; } /* '' */
.icon-collapse-top:before { content: '\e899'; } /* '' */
.icon-expand:before { content: '\e89a'; } /* '' */
.icon-play:before { content: '\e89b'; } /* '' */
.icon-play-circled:before { content: '\e89c'; } /* '' */
.icon-play-circled2:before { content: '\e89d'; } /* '' */
.icon-stop:before { content: '\e89e'; } /* '' */
.icon-pause:before { content: '\e800'; } /* '' */
.icon-to-end:before { content: '\e8a0'; } /* '' */
.icon-to-end-alt:before { content: '\e8a1'; } /* '' */
.icon-to-start:before { content: '\e8a2'; } /* '' */
.icon-to-start-alt:before { content: '\e8a3'; } /* '' */
.icon-fast-fw:before { content: '\e8a4'; } /* '' */
.icon-fast-bw:before { content: '\e8a5'; } /* '' */
.icon-eject:before { content: '\e8a6'; } /* '' */
.icon-signal:before { content: '\e8a8'; } /* '' */
.icon-award:before { content: '\e959'; } /* '' */
.icon-desktop:before { content: '\e95a'; } /* '' */
.icon-laptop:before { content: '\e90e'; } /* '' */
.icon-tablet:before { content: '\e95c'; } /* '' */
.icon-mobile:before { content: '\e8a9'; } /* '' */
.icon-inbox:before { content: '\e8aa'; } /* '' */
.icon-globe:before { content: '\e8ab'; } /* '' */
.icon-sun:before { content: '\e8ac'; } /* '' */
.icon-cloud:before { content: '\e8ad'; } /* '' */
.icon-flash:before { content: '\e8ae'; } /* '' */
.icon-moon:before { content: '\e8af'; } /* '' */
.icon-umbrella:before { content: '\e8b0'; } /* '' */
.icon-flight:before { content: '\e8b1'; } /* '' */
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
.icon-leaf:before { content: '\e8b3'; } /* '' */
.icon-font:before { content: '\e8b6'; } /* '' */
.icon-bold:before { content: '\e8b5'; } /* '' */
.icon-italic:before { content: '\e8b4'; } /* '' */
@ -156,144 +270,52 @@
.icon-list:before { content: '\e8b9'; } /* '' */
.icon-indent-left:before { content: '\e8ba'; } /* '' */
.icon-indent-right:before { content: '\e8bb'; } /* '' */
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
.icon-strike:before { content: '\e8be'; } /* '' */
.icon-underline:before { content: '\e8bf'; } /* '' */
.icon-superscript:before { content: '\e8c0'; } /* '' */
.icon-subscript:before { content: '\e8c1'; } /* '' */
.icon-table:before { content: '\e8c2'; } /* '' */
.icon-columns:before { content: '\e8c3'; } /* '' */
.icon-crop:before { content: '\e8c4'; } /* '' */
.icon-scissors:before { content: '\e8c5'; } /* '' */
.icon-paste:before { content: '\e8c6'; } /* '' */
.icon-briefcase:before { content: '\e8c7'; } /* '' */
.icon-suitcase:before { content: '\e8c8'; } /* '' */
.icon-ellipsis:before { content: '\e961'; } /* '' */
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
.icon-off:before { content: '\e963'; } /* '' */
.icon-road:before { content: '\e964'; } /* '' */
.icon-list-alt:before { content: '\e8c9'; } /* '' */
.icon-qrcode:before { content: '\e8ca'; } /* '' */
.icon-barcode:before { content: '\e8cb'; } /* '' */
.icon-book:before { content: '\e8cc'; } /* '' */
.icon-ajust:before { content: '\e8cd'; } /* '' */
.icon-tint:before { content: '\e8ce'; } /* '' */
.icon-layers:before { content: '\e829'; } /* '' */
.icon-magnet:before { content: '\e8d6'; } /* '' */
.icon-move:before { content: '\e874'; } /* '' */
.icon-link:before { content: '\e83f'; } /* '' */
.icon-share:before { content: '\e912'; } /* '' */
.icon-hdd:before { content: '\e841'; } /* '' */
.icon-link-ext:before { content: '\e82b'; } /* '' */
.icon-check:before { content: '\e8cf'; } /* '' */
.icon-check-empty:before { content: '\e8d0'; } /* '' */
.icon-bookmark-empty:before { content: '\e837'; } /* '' */
.icon-phone-squared:before { content: '\e860'; } /* '' */
.icon-rss:before { content: '\e85d'; } /* '' */
.icon-circle:before { content: '\e8d1'; } /* '' */
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
.icon-asterisk:before { content: '\e8d3'; } /* '' */
.icon-gift:before { content: '\e8d4'; } /* '' */
.icon-fire:before { content: '\e8d5'; } /* '' */
.icon-magnet:before { content: '\e8d6'; } /* '' */
.icon-ticket:before { content: '\e8d8'; } /* '' */
.icon-credit-card:before { content: '\e965'; } /* '' */
.icon-floppy:before { content: '\e966'; } /* '' */
.icon-megaphone:before { content: '\e967'; } /* '' */
.icon-key:before { content: '\e8d9'; } /* '' */
.icon-fork:before { content: '\e8da'; } /* '' */
.icon-rocket:before { content: '\e8db'; } /* '' */
.icon-bug:before { content: '\e8dc'; } /* '' */
.icon-certificate:before { content: '\e8dd'; } /* '' */
.icon-left-circled:before { content: '\e891'; } /* '' */
.icon-right-circled:before { content: '\e892'; } /* '' */
.icon-up-circled:before { content: '\e893'; } /* '' */
.icon-down-circled:before { content: '\e894'; } /* '' */
.icon-tasks:before { content: '\e8de'; } /* '' */
.icon-filter:before { content: '\e8df'; } /* '' */
.icon-resize-full-alt:before { content: '\e870'; } /* '' */
.icon-beaker:before { content: '\e8e0'; } /* '' */
.icon-docs:before { content: '\e858'; } /* '' */
.icon-menu:before { content: '\e861'; } /* '' */
.icon-list-bullet:before { content: '\e8bc'; } /* '' */
.icon-list-numbered:before { content: '\e8bd'; } /* '' */
.icon-strike:before { content: '\e8be'; } /* '' */
.icon-underline:before { content: '\e8bf'; } /* '' */
.icon-table:before { content: '\e8c2'; } /* '' */
.icon-magic:before { content: '\e8e1'; } /* '' */
.icon-truck:before { content: '\e8e2'; } /* '' */
.icon-money:before { content: '\e8e3'; } /* '' */
.icon-columns:before { content: '\e8c3'; } /* '' */
.icon-sort:before { content: '\e8ec'; } /* '' */
.icon-sort-down:before { content: '\e8ed'; } /* '' */
.icon-sort-up:before { content: '\e8ee'; } /* '' */
.icon-mail-alt:before { content: '\e805'; } /* '' */
.icon-gauge:before { content: '\e8f6'; } /* '' */
.icon-comment-empty:before { content: '\e84c'; } /* '' */
.icon-chat-empty:before { content: '\e84d'; } /* '' */
.icon-sitemap:before { content: '\e8f7'; } /* '' */
.icon-paste:before { content: '\e8c6'; } /* '' */
.icon-lightbulb:before { content: '\e86d'; } /* '' */
.icon-exchange:before { content: '\e957'; } /* '' */
.icon-download-cloud:before { content: '\e83d'; } /* '' */
.icon-upload-cloud:before { content: '\e83e'; } /* '' */
.icon-user-md:before { content: '\e8fc'; } /* '' */
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
.icon-suitcase:before { content: '\e8c8'; } /* '' */
.icon-bell-alt:before { content: '\e84f'; } /* '' */
.icon-coffee:before { content: '\e8f9'; } /* '' */
.icon-food:before { content: '\e8fa'; } /* '' */
.icon-doc-text:before { content: '\e945'; } /* '' */
.icon-building:before { content: '\e902'; } /* '' */
.icon-hospital:before { content: '\e901'; } /* '' */
.icon-ambulance:before { content: '\e8fe'; } /* '' */
.icon-medkit:before { content: '\e8ff'; } /* '' */
.icon-fighter-jet:before { content: '\e8b2'; } /* '' */
.icon-beer:before { content: '\e8fb'; } /* '' */
.icon-h-sigh:before { content: '\e900'; } /* '' */
.icon-plus-squared:before { content: '\e821'; } /* '' */
.icon-angle-double-left:before { content: '\e885'; } /* '' */
.icon-angle-double-right:before { content: '\e886'; } /* '' */
.icon-angle-double-up:before { content: '\e887'; } /* '' */
.icon-angle-double-down:before { content: '\e888'; } /* '' */
.icon-angle-left:before { content: '\e87d'; } /* '' */
.icon-angle-right:before { content: '\e87e'; } /* '' */
.icon-angle-up:before { content: '\e87f'; } /* '' */
.icon-angle-down:before { content: '\e880'; } /* '' */
.icon-desktop:before { content: '\e95a'; } /* '' */
.icon-laptop:before { content: '\e90e'; } /* '' */
.icon-tablet:before { content: '\e95c'; } /* '' */
.icon-mobile:before { content: '\e8a9'; } /* '' */
.icon-circle-empty:before { content: '\e8d2'; } /* '' */
.icon-quote-left:before { content: '\e842'; } /* '' */
.icon-quote-right:before { content: '\e843'; } /* '' */
.icon-spinner:before { content: '\e8f8'; } /* '' */
.icon-circle:before { content: '\e8d1'; } /* '' */
.icon-reply:before { content: '\e845'; } /* '' */
.icon-folder-empty:before { content: '\e85a'; } /* '' */
.icon-folder-open-empty:before { content: '\e85b'; } /* '' */
.icon-plus-squared-small:before { content: '\e822'; } /* '' */
.icon-minus-squared-small:before { content: '\e827'; } /* '' */
.icon-smile:before { content: '\e903'; } /* '' */
.icon-frown:before { content: '\e904'; } /* '' */
.icon-meh:before { content: '\e905'; } /* '' */
.icon-gamepad:before { content: '\e849'; } /* '' */
.icon-keyboard:before { content: '\e944'; } /* '' */
.icon-flag-empty:before { content: '\e93d'; } /* '' */
.icon-flag-checkered:before { content: '\e93e'; } /* '' */
.icon-terminal:before { content: '\e907'; } /* '' */
.icon-reply-all:before { content: '\e840'; } /* '' */
.icon-star-half-alt:before { content: '\e80b'; } /* '' */
.icon-direction:before { content: '\e854'; } /* '' */
.icon-crop:before { content: '\e8c4'; } /* '' */
.icon-fork:before { content: '\e8da'; } /* '' */
.icon-unlink:before { content: '\e82a'; } /* '' */
.icon-help:before { content: '\e828'; } /* '' */
.icon-info:before { content: '\e93b'; } /* '' */
.icon-attention-alt:before { content: '\e850'; } /* '' */
.icon-superscript:before { content: '\e8c0'; } /* '' */
.icon-subscript:before { content: '\e8c1'; } /* '' */
.icon-eraser:before { content: '\e908'; } /* '' */
.icon-puzzle:before { content: '\e909'; } /* '' */
.icon-mic:before { content: '\e94a'; } /* '' */
.icon-mute:before { content: '\e94b'; } /* '' */
.icon-shield:before { content: '\e90a'; } /* '' */
.icon-calendar-empty:before { content: '\e867'; } /* '' */
.icon-extinguisher:before { content: '\e90b'; } /* '' */
.icon-rocket:before { content: '\e8db'; } /* '' */
.icon-angle-circled-left:before { content: '\e881'; } /* '' */
.icon-angle-circled-right:before { content: '\e882'; } /* '' */
.icon-angle-circled-up:before { content: '\e883'; } /* '' */
.icon-angle-circled-down:before { content: '\e884'; } /* '' */
.icon-anchor:before { content: '\e906'; } /* '' */
.icon-lock-open-alt:before { content: '\e830'; } /* '' */
.icon-bullseye:before { content: '\e90c'; } /* '' */
.icon-ellipsis:before { content: '\e961'; } /* '' */
.icon-ellipsis-vert:before { content: '\e962'; } /* '' */
.icon-rss-squared:before { content: '\e85e'; } /* '' */
.icon-play-circled:before { content: '\e89c'; } /* '' */
.icon-ticket:before { content: '\e8d8'; } /* '' */
.icon-minus-squared:before { content: '\e825'; } /* '' */
.icon-minus-squared-alt:before { content: '\e826'; } /* '' */
.icon-level-up:before { content: '\e898'; } /* '' */
.icon-level-down:before { content: '\e955'; } /* '' */
.icon-ok-squared:before { content: '\e81b'; } /* '' */
.icon-pencil-squared:before { content: '\e848'; } /* '' */
.icon-link-ext-alt:before { content: '\e82c'; } /* '' */
.icon-export-alt:before { content: '\e846'; } /* '' */
.icon-compass:before { content: '\e855'; } /* '' */
.icon-collapse:before { content: '\e958'; } /* '' */
.icon-collapse-top:before { content: '\e899'; } /* '' */
.icon-expand:before { content: '\e89a'; } /* '' */
.icon-euro:before { content: '\e8e4'; } /* '' */
.icon-pound:before { content: '\e8e5'; } /* '' */
.icon-dollar:before { content: '\e8e6'; } /* '' */
@ -302,69 +324,47 @@
.icon-renminbi:before { content: '\e8e9'; } /* '' */
.icon-won:before { content: '\e8ea'; } /* '' */
.icon-bitcoin:before { content: '\e8eb'; } /* '' */
.icon-file:before { content: '\e946'; } /* '' */
.icon-doc-text-inv:before { content: '\e947'; } /* '' */
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
.icon-sort:before { content: '\e8ec'; } /* '' */
.icon-sort-down:before { content: '\e8ed'; } /* '' */
.icon-sort-up:before { content: '\e8ee'; } /* '' */
.icon-sort-alt-up:before { content: '\e8ef'; } /* '' */
.icon-sort-alt-down:before { content: '\e8f0'; } /* '' */
.icon-sort-name-up:before { content: '\e8f1'; } /* '' */
.icon-sort-name-down:before { content: '\e8f2'; } /* '' */
.icon-sort-number-up:before { content: '\e8f3'; } /* '' */
.icon-sort-number-down:before { content: '\e8f4'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e839'; } /* '' */
.icon-thumbs-down-alt:before { content: '\e83a'; } /* '' */
.icon-down:before { content: '\e951'; } /* '' */
.icon-up:before { content: '\e954'; } /* '' */
.icon-right:before { content: '\e953'; } /* '' */
.icon-left:before { content: '\e952'; } /* '' */
.icon-female:before { content: '\e80f'; } /* '' */
.icon-male:before { content: '\e80e'; } /* '' */
.icon-sun:before { content: '\e8ac'; } /* '' */
.icon-moon:before { content: '\e8af'; } /* '' */
.icon-box:before { content: '\e85c'; } /* '' */
.icon-bug:before { content: '\e8dc'; } /* '' */
.icon-picture:before { content: '\e812'; } /* '' */
.icon-globe:before { content: '\e8ab'; } /* '' */
.icon-leaf:before { content: '\e8b3'; } /* '' */
.icon-glass:before { content: '\e801'; } /* '' */
.icon-gift:before { content: '\e8d4'; } /* '' */
.icon-videocam:before { content: '\e811'; } /* '' */
.icon-headphones:before { content: '\e86b'; } /* '' */
.icon-video:before { content: '\e810'; } /* '' */
.icon-target:before { content: '\e8a7'; } /* '' */
.icon-award:before { content: '\e959'; } /* '' */
.icon-thumbs-up:before { content: '\e93f'; } /* '' */
.icon-thumbs-down:before { content: '\e940'; } /* '' */
.icon-user:before { content: '\e80c'; } /* '' */
.icon-users:before { content: '\e80d'; } /* '' */
.icon-credit-card:before { content: '\e965'; } /* '' */
.icon-briefcase:before { content: '\e8c7'; } /* '' */
.icon-floppy:before { content: '\e966'; } /* '' */
.icon-folder-open:before { content: '\e81e'; } /* '' */
.icon-doc:before { content: '\e857'; } /* '' */
.icon-calendar:before { content: '\e866'; } /* '' */
.icon-chart-bar:before { content: '\e90f'; } /* '' */
.icon-pin:before { content: '\e831'; } /* '' */
.icon-attach:before { content: '\e82d'; } /* '' */
.icon-book:before { content: '\e8cc'; } /* '' */
.icon-phone:before { content: '\e85f'; } /* '' */
.icon-megaphone:before { content: '\e967'; } /* '' */
.icon-upload:before { content: '\e83c'; } /* '' */
.icon-download:before { content: '\e83b'; } /* '' */
.icon-signal:before { content: '\e8a8'; } /* '' */
.icon-camera:before { content: '\e813'; } /* '' */
.icon-shuffle:before { content: '\e956'; } /* '' */
.icon-volume-off:before { content: '\e94c'; } /* '' */
.icon-volume-down:before { content: '\e869'; } /* '' */
.icon-volume-up:before { content: '\e86a'; } /* '' */
.icon-search:before { content: '\e803'; } /* '' */
.icon-key:before { content: '\e8d9'; } /* '' */
.icon-lock:before { content: '\e82e'; } /* '' */
.icon-lock-open:before { content: '\e82f'; } /* '' */
.icon-bell:before { content: '\e84e'; } /* '' */
.icon-bookmark:before { content: '\e836'; } /* '' */
.icon-fire:before { content: '\e8d5'; } /* '' */
.icon-wrench:before { content: '\e864'; } /* '' */
.icon-hammer:before { content: '\e8f5'; } /* '' */
.icon-clock:before { content: '\e86c'; } /* '' */
.icon-truck:before { content: '\e8e2'; } /* '' */
.icon-block:before { content: '\e86e'; } /* '' */
.icon-gauge:before { content: '\e8f6'; } /* '' */
.icon-sitemap:before { content: '\e8f7'; } /* '' */
.icon-spinner:before { content: '\e8f8'; } /* '' */
.icon-coffee:before { content: '\e8f9'; } /* '' */
.icon-food:before { content: '\e8fa'; } /* '' */
.icon-beer:before { content: '\e8fb'; } /* '' */
.icon-user-md:before { content: '\e8fc'; } /* '' */
.icon-stethoscope:before { content: '\e8fd'; } /* '' */
.icon-ambulance:before { content: '\e8fe'; } /* '' */
.icon-medkit:before { content: '\e8ff'; } /* '' */
.icon-h-sigh:before { content: '\e900'; } /* '' */
.icon-hospital:before { content: '\e901'; } /* '' */
.icon-building:before { content: '\e902'; } /* '' */
.icon-smile:before { content: '\e903'; } /* '' */
.icon-frown:before { content: '\e904'; } /* '' */
.icon-meh:before { content: '\e905'; } /* '' */
.icon-anchor:before { content: '\e906'; } /* '' */
.icon-terminal:before { content: '\e907'; } /* '' */
.icon-eraser:before { content: '\e908'; } /* '' */
.icon-puzzle:before { content: '\e909'; } /* '' */
.icon-shield:before { content: '\e90a'; } /* '' */
.icon-extinguisher:before { content: '\e90b'; } /* '' */
.icon-bullseye:before { content: '\e90c'; } /* '' */
.icon-resize-full:before { content: '\e90d'; } /* '' */
.icon-target:before { content: '\e8a7'; } /* '' */
.icon-layers:before { content: '\e829'; } /* '' */
.icon-chart-bar:before { content: '\e90f'; } /* '' */
.icon-share:before { content: '\e912'; } /* '' */
.icon-hdd:before { content: '\e841'; } /* '' */
.icon-trash:before { content: '\e89f'; } /* '' */
.icon-folder:before { content: '\e8d7'; } /* '' */
.icon-code:before { content: '\e844'; } /* '' */
.icon-folder-open:before { content: '\e81e'; } /* '' */
.icon-left-big:before { content: '\e88a'; } /* '' */

View File

@ -1,7 +1,9 @@
<!DOCTYPE html>
<html>
<head><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta charset="UTF-8"><style type="text/css">/*
* Bootstrap v2.2.1
*
@ -230,8 +232,10 @@ body {
}
</style>
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/animation.css"><!--[if IE 7]>
<link rel="stylesheet" href="css/fontello-ie7.css"><![endif]-->
<link rel="stylesheet" href="css/animation.css">
<!--[if IE 7]>
<link rel="stylesheet" href="css/fontello-ie7.css">
<![endif]-->
<script>
function toggleCodes(on) {
var obj = document.getElementById('icons');
@ -257,482 +261,482 @@ body {
</div>
<div id="icons" class="container">
<div class="row">
<div title="Code: 0xe81f" class="the-icons span3"><i class="icon-plus"></i> <span class="i-name">icon-plus</span><span class="i-code">0xe81f</span></div>
<div title="Code: 0xe823" class="the-icons span3"><i class="icon-minus"></i> <span class="i-name">icon-minus</span><span class="i-code">0xe823</span></div>
<div title="Code: 0xe88a" class="the-icons span3"><i class="icon-left-big"></i> <span class="i-name">icon-left-big</span><span class="i-code">0xe88a</span></div>
<div title="Code: 0xe88c" class="the-icons span3"><i class="icon-up-big"></i> <span class="i-name">icon-up-big</span><span class="i-code">0xe88c</span></div>
</div>
<div class="row">
<div title="Code: 0xe88b" class="the-icons span3"><i class="icon-right-big"></i> <span class="i-name">icon-right-big</span><span class="i-code">0xe88b</span></div>
<div title="Code: 0xe889" class="the-icons span3"><i class="icon-down-big"></i> <span class="i-name">icon-down-big</span><span class="i-code">0xe889</span></div>
<div title="Code: 0xe93c" class="the-icons span3"><i class="icon-home"></i> <span class="i-name">icon-home</span><span class="i-code">0xe93c</span></div>
<div title="Code: 0xe800" class="the-icons span3"><i class="icon-pause"></i> <span class="i-name">icon-pause</span><span class="i-code">0xe800</span></div>
</div>
<div class="row">
<div title="Code: 0xe8a4" class="the-icons span3"><i class="icon-fast-fw"></i> <span class="i-name">icon-fast-fw</span><span class="i-code">0xe8a4</span></div>
<div title="Code: 0xe8a5" class="the-icons span3"><i class="icon-fast-bw"></i> <span class="i-name">icon-fast-bw</span><span class="i-code">0xe8a5</span></div>
<div title="Code: 0xe8a0" class="the-icons span3"><i class="icon-to-end"></i> <span class="i-name">icon-to-end</span><span class="i-code">0xe8a0</span></div>
<div title="Code: 0xe8a2" class="the-icons span3"><i class="icon-to-start"></i> <span class="i-name">icon-to-start</span><span class="i-code">0xe8a2</span></div>
</div>
<div class="row">
<div title="Code: 0xe89e" class="the-icons span3"><i class="icon-stop"></i> <span class="i-name">icon-stop</span><span class="i-code">0xe89e</span></div>
<div title="Code: 0xe94e" class="the-icons span3"><i class="icon-up-dir"></i> <span class="i-name">icon-up-dir</span><span class="i-code">0xe94e</span></div>
<div title="Code: 0xe89b" class="the-icons span3"><i class="icon-play"></i> <span class="i-name">icon-play</span><span class="i-code">0xe89b</span></div>
<div title="Code: 0xe950" class="the-icons span3"><i class="icon-right-dir"></i> <span class="i-name">icon-right-dir</span><span class="i-code">0xe950</span></div>
</div>
<div class="row">
<div title="Code: 0xe94d" class="the-icons span3"><i class="icon-down-dir"></i> <span class="i-name">icon-down-dir</span><span class="i-code">0xe94d</span></div>
<div title="Code: 0xe94f" class="the-icons span3"><i class="icon-left-dir"></i> <span class="i-name">icon-left-dir</span><span class="i-code">0xe94f</span></div>
<div title="Code: 0xe8ad" class="the-icons span3"><i class="icon-cloud"></i> <span class="i-name">icon-cloud</span><span class="i-code">0xe8ad</span></div>
<div title="Code: 0xe8b0" class="the-icons span3"><i class="icon-umbrella"></i> <span class="i-name">icon-umbrella</span><span class="i-code">0xe8b0</span></div>
</div>
<div class="row">
<div title="Code: 0xe808" class="the-icons span3"><i class="icon-star"></i> <span class="i-name">icon-star</span><span class="i-code">0xe808</span></div>
<div title="Code: 0xe809" class="the-icons span3"><i class="icon-star-empty"></i> <span class="i-name">icon-star-empty</span><span class="i-code">0xe809</span></div>
<div title="Code: 0xe8cf" class="the-icons span3"><i class="icon-check"></i> <span class="i-name">icon-check</span><span class="i-code">0xe8cf</span></div>
<div title="Code: 0xe88e" class="the-icons span3"><i class="icon-left-hand"></i> <span class="i-name">icon-left-hand</span><span class="i-code">0xe88e</span></div>
</div>
<div class="row">
<div title="Code: 0xe88f" class="the-icons span3"><i class="icon-up-hand"></i> <span class="i-name">icon-up-hand</span><span class="i-code">0xe88f</span></div>
<div title="Code: 0xe88d" class="the-icons span3"><i class="icon-right-hand"></i> <span class="i-name">icon-right-hand</span><span class="i-code">0xe88d</span></div>
<div title="Code: 0xe890" class="the-icons span3"><i class="icon-down-hand"></i> <span class="i-name">icon-down-hand</span><span class="i-code">0xe890</span></div>
<div title="Code: 0xe817" class="the-icons span3"><i class="icon-th-list"></i> <span class="i-name">icon-th-list</span><span class="i-code">0xe817</span></div>
</div>
<div class="row">
<div title="Code: 0xe807" class="the-icons span3"><i class="icon-heart-empty"></i> <span class="i-name">icon-heart-empty</span><span class="i-code">0xe807</span></div>
<div title="Code: 0xe806" class="the-icons span3"><i class="icon-heart"></i> <span class="i-name">icon-heart</span><span class="i-code">0xe806</span></div>
<div title="Code: 0xe802" class="the-icons span3"><i class="icon-music"></i> <span class="i-name">icon-music</span><span class="i-code">0xe802</span></div>
<div title="Code: 0xe816" class="the-icons span3"><i class="icon-th"></i> <span class="i-name">icon-th</span><span class="i-code">0xe816</span></div>
</div>
<div class="row">
<div title="Code: 0xe838" class="the-icons span3"><i class="icon-flag"></i> <span class="i-name">icon-flag</span><span class="i-code">0xe838</span></div>
<div title="Code: 0xe862" class="the-icons span3"><i class="icon-cog"></i> <span class="i-name">icon-cog</span><span class="i-code">0xe862</span></div>
<div title="Code: 0xe851" class="the-icons span3"><i class="icon-attention"></i> <span class="i-name">icon-attention</span><span class="i-code">0xe851</span></div>
<div title="Code: 0xe8ae" class="the-icons span3"><i class="icon-flash"></i> <span class="i-name">icon-flash</span><span class="i-code">0xe8ae</span></div>
</div>
<div class="row">
<div title="Code: 0xe863" class="the-icons span3"><i class="icon-cog-alt"></i> <span class="i-name">icon-cog-alt</span><span class="i-code">0xe863</span></div>
<div title="Code: 0xe8c5" class="the-icons span3"><i class="icon-scissors"></i> <span class="i-name">icon-scissors</span><span class="i-code">0xe8c5</span></div>
<div title="Code: 0xe8b1" class="the-icons span3"><i class="icon-flight"></i> <span class="i-name">icon-flight</span><span class="i-code">0xe8b1</span></div>
<div title="Code: 0xe801" class="the-icons span3"><i class="icon-glass"></i> <span class="i-name">icon-glass</span><span class="i-code">0xe801</span></div>
<div title="Code: 0xe859" class="the-icons span3"><i class="icon-archive"></i> <span class="i-name">icon-archive</span><span class="i-code">0xe859</span></div>
<div title="Code: 0xe803" class="the-icons span3"><i class="icon-search"></i> <span class="i-name">icon-search</span><span class="i-code">0xe803</span></div>
<div title="Code: 0xe804" class="the-icons span3"><i class="icon-mail"></i> <span class="i-name">icon-mail</span><span class="i-code">0xe804</span></div>
</div>
<div class="row">
<div title="Code: 0xe941" class="the-icons span3"><i class="icon-edit"></i> <span class="i-name">icon-edit</span><span class="i-code">0xe941</span></div>
<div title="Code: 0xe847" class="the-icons span3"><i class="icon-pencil"></i> <span class="i-name">icon-pencil</span><span class="i-code">0xe847</span></div>
<div title="Code: 0xe818" class="the-icons span3"><i class="icon-ok"></i> <span class="i-name">icon-ok</span><span class="i-code">0xe818</span></div>
<div title="Code: 0xe819" class="the-icons span3"><i class="icon-ok-circled"></i> <span class="i-name">icon-ok-circled</span><span class="i-code">0xe819</span></div>
</div>
<div class="row">
<div title="Code: 0xe81c" class="the-icons span3"><i class="icon-cancel"></i> <span class="i-name">icon-cancel</span><span class="i-code">0xe81c</span></div>
<div title="Code: 0xe81d" class="the-icons span3"><i class="icon-cancel-circled"></i> <span class="i-name">icon-cancel-circled</span><span class="i-code">0xe81d</span></div>
<div title="Code: 0xe8d3" class="the-icons span3"><i class="icon-asterisk"></i> <span class="i-name">icon-asterisk</span><span class="i-code">0xe8d3</span></div>
<div title="Code: 0xe852" class="the-icons span3"><i class="icon-attention-circled"></i> <span class="i-name">icon-attention-circled</span><span class="i-code">0xe852</span></div>
</div>
<div class="row">
<div title="Code: 0xe820" class="the-icons span3"><i class="icon-plus-circled"></i> <span class="i-name">icon-plus-circled</span><span class="i-code">0xe820</span></div>
<div title="Code: 0xe824" class="the-icons span3"><i class="icon-minus-circled"></i> <span class="i-name">icon-minus-circled</span><span class="i-code">0xe824</span></div>
<div title="Code: 0xe856" class="the-icons span3"><i class="icon-forward"></i> <span class="i-name">icon-forward</span><span class="i-code">0xe856</span></div>
<div title="Code: 0xe896" class="the-icons span3"><i class="icon-ccw"></i> <span class="i-name">icon-ccw</span><span class="i-code">0xe896</span></div>
</div>
<div class="row">
<div title="Code: 0xe895" class="the-icons span3"><i class="icon-cw"></i> <span class="i-name">icon-cw</span><span class="i-code">0xe895</span></div>
<div title="Code: 0xe872" class="the-icons span3"><i class="icon-resize-vertical"></i> <span class="i-name">icon-resize-vertical</span><span class="i-code">0xe872</span></div>
<div title="Code: 0xe873" class="the-icons span3"><i class="icon-resize-horizontal"></i> <span class="i-name">icon-resize-horizontal</span><span class="i-code">0xe873</span></div>
<div title="Code: 0xe8a6" class="the-icons span3"><i class="icon-eject"></i> <span class="i-name">icon-eject</span><span class="i-code">0xe8a6</span></div>
</div>
<div class="row">
<div title="Code: 0xe89f" class="the-icons span3"><i class="icon-trash"></i> <span class="i-name">icon-trash</span><span class="i-code">0xe89f</span></div>
<div title="Code: 0xe8d7" class="the-icons span3"><i class="icon-folder"></i> <span class="i-name">icon-folder</span><span class="i-code">0xe8d7</span></div>
<div title="Code: 0xe80a" class="the-icons span3"><i class="icon-star-half"></i> <span class="i-name">icon-star-half</span><span class="i-code">0xe80a</span></div>
<div title="Code: 0xe81a" class="the-icons span3"><i class="icon-ok-circled2"></i> <span class="i-name">icon-ok-circled2</span><span class="i-code">0xe81a</span></div>
</div>
<div class="row">
<div title="Code: 0xe86f" class="the-icons span3"><i class="icon-cancel-circled2"></i> <span class="i-name">icon-cancel-circled2</span><span class="i-code">0xe86f</span></div>
<div title="Code: 0xe939" class="the-icons span3"><i class="icon-help-circled"></i> <span class="i-name">icon-help-circled</span><span class="i-code">0xe939</span></div>
<div title="Code: 0xe93a" class="the-icons span3"><i class="icon-info-circled"></i> <span class="i-name">icon-info-circled</span><span class="i-code">0xe93a</span></div>
<div title="Code: 0xe815" class="the-icons span3"><i class="icon-th-large"></i> <span class="i-name">icon-th-large</span><span class="i-code">0xe815</span></div>
</div>
<div class="row">
<div title="Code: 0xe832" class="the-icons span3"><i class="icon-eye"></i> <span class="i-name">icon-eye</span><span class="i-code">0xe832</span></div>
<div title="Code: 0xe833" class="the-icons span3"><i class="icon-eye-off"></i> <span class="i-name">icon-eye-off</span><span class="i-code">0xe833</span></div>
<div title="Code: 0xe834" class="the-icons span3"><i class="icon-tag"></i> <span class="i-name">icon-tag</span><span class="i-code">0xe834</span></div>
<div title="Code: 0xe835" class="the-icons span3"><i class="icon-tags"></i> <span class="i-name">icon-tags</span><span class="i-code">0xe835</span></div>
</div>
<div class="row">
<div title="Code: 0xe814" class="the-icons span3"><i class="icon-camera-alt"></i> <span class="i-name">icon-camera-alt</span><span class="i-code">0xe814</span></div>
<div title="Code: 0xe844" class="the-icons span3"><i class="icon-code"></i> <span class="i-name">icon-code</span><span class="i-code">0xe844</span></div>
<div title="Code: 0xe942" class="the-icons span3"><i class="icon-print"></i> <span class="i-name">icon-print</span><span class="i-code">0xe942</span></div>
<div title="Code: 0xe943" class="the-icons span3"><i class="icon-retweet"></i> <span class="i-name">icon-retweet</span><span class="i-code">0xe943</span></div>
</div>
<div class="row">
<div title="Code: 0xe84a" class="the-icons span3"><i class="icon-comment"></i> <span class="i-name">icon-comment</span><span class="i-code">0xe84a</span></div>
<div title="Code: 0xe84b" class="the-icons span3"><i class="icon-chat"></i> <span class="i-name">icon-chat</span><span class="i-code">0xe84b</span></div>
<div title="Code: 0xe853" class="the-icons span3"><i class="icon-location"></i> <span class="i-name">icon-location</span><span class="i-code">0xe853</span></div>
<div title="Code: 0xe859" class="the-icons span3"><i class="icon-archive"></i> <span class="i-name">icon-archive</span><span class="i-code">0xe859</span></div>
</div>
<div class="row">
<div title="Code: 0xe865" class="the-icons span3"><i class="icon-basket"></i> <span class="i-name">icon-basket</span><span class="i-code">0xe865</span></div>
<div title="Code: 0xe868" class="the-icons span3"><i class="icon-login"></i> <span class="i-name">icon-login</span><span class="i-code">0xe868</span></div>
<div title="Code: 0xe949" class="the-icons span3"><i class="icon-logout"></i> <span class="i-name">icon-logout</span><span class="i-code">0xe949</span></div>
<div title="Code: 0xe90d" class="the-icons span3"><i class="icon-resize-full"></i> <span class="i-name">icon-resize-full</span><span class="i-code">0xe90d</span></div>
</div>
<div class="row">
<div title="Code: 0xe871" class="the-icons span3"><i class="icon-resize-small"></i> <span class="i-name">icon-resize-small</span><span class="i-code">0xe871</span></div>
<div title="Code: 0xe875" class="the-icons span3"><i class="icon-zoom-in"></i> <span class="i-name">icon-zoom-in</span><span class="i-code">0xe875</span></div>
<div title="Code: 0xe876" class="the-icons span3"><i class="icon-zoom-out"></i> <span class="i-name">icon-zoom-out</span><span class="i-code">0xe876</span></div>
<div title="Code: 0xe877" class="the-icons span3"><i class="icon-down-circled2"></i> <span class="i-name">icon-down-circled2</span><span class="i-code">0xe877</span></div>
</div>
<div class="row">
<div title="Code: 0xe878" class="the-icons span3"><i class="icon-up-circled2"></i> <span class="i-name">icon-up-circled2</span><span class="i-code">0xe878</span></div>
<div title="Code: 0xe879" class="the-icons span3"><i class="icon-down-open"></i> <span class="i-name">icon-down-open</span><span class="i-code">0xe879</span></div>
<div title="Code: 0xe87a" class="the-icons span3"><i class="icon-left-open"></i> <span class="i-name">icon-left-open</span><span class="i-code">0xe87a</span></div>
<div title="Code: 0xe87b" class="the-icons span3"><i class="icon-right-open"></i> <span class="i-name">icon-right-open</span><span class="i-code">0xe87b</span></div>
</div>
<div class="row">
<div title="Code: 0xe87c" class="the-icons span3"><i class="icon-up-open"></i> <span class="i-name">icon-up-open</span><span class="i-code">0xe87c</span></div>
<div title="Code: 0xe897" class="the-icons span3"><i class="icon-refresh"></i> <span class="i-name">icon-refresh</span><span class="i-code">0xe897</span></div>
<div title="Code: 0xe89d" class="the-icons span3"><i class="icon-play-circled2"></i> <span class="i-name">icon-play-circled2</span><span class="i-code">0xe89d</span></div>
<div title="Code: 0xe8a1" class="the-icons span3"><i class="icon-to-end-alt"></i> <span class="i-name">icon-to-end-alt</span><span class="i-code">0xe8a1</span></div>
</div>
<div class="row">
<div title="Code: 0xe8a3" class="the-icons span3"><i class="icon-to-start-alt"></i> <span class="i-name">icon-to-start-alt</span><span class="i-code">0xe8a3</span></div>
<div title="Code: 0xe8aa" class="the-icons span3"><i class="icon-inbox"></i> <span class="i-name">icon-inbox</span><span class="i-code">0xe8aa</span></div>
<div title="Code: 0xe8b6" class="the-icons span3"><i class="icon-font"></i> <span class="i-name">icon-font</span><span class="i-code">0xe8b6</span></div>
<div title="Code: 0xe8b5" class="the-icons span3"><i class="icon-bold"></i> <span class="i-name">icon-bold</span><span class="i-code">0xe8b5</span></div>
</div>
<div class="row">
<div title="Code: 0xe8b4" class="the-icons span3"><i class="icon-italic"></i> <span class="i-name">icon-italic</span><span class="i-code">0xe8b4</span></div>
<div title="Code: 0xe8b7" class="the-icons span3"><i class="icon-text-height"></i> <span class="i-name">icon-text-height</span><span class="i-code">0xe8b7</span></div>
<div title="Code: 0xe8b8" class="the-icons span3"><i class="icon-text-width"></i> <span class="i-name">icon-text-width</span><span class="i-code">0xe8b8</span></div>
<div title="Code: 0xe95d" class="the-icons span3"><i class="icon-align-left"></i> <span class="i-name">icon-align-left</span><span class="i-code">0xe95d</span></div>
</div>
<div class="row">
<div title="Code: 0xe95e" class="the-icons span3"><i class="icon-align-center"></i> <span class="i-name">icon-align-center</span><span class="i-code">0xe95e</span></div>
<div title="Code: 0xe95f" class="the-icons span3"><i class="icon-align-right"></i> <span class="i-name">icon-align-right</span><span class="i-code">0xe95f</span></div>
<div title="Code: 0xe960" class="the-icons span3"><i class="icon-align-justify"></i> <span class="i-name">icon-align-justify</span><span class="i-code">0xe960</span></div>
<div title="Code: 0xe8b9" class="the-icons span3"><i class="icon-list"></i> <span class="i-name">icon-list</span><span class="i-code">0xe8b9</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ba" class="the-icons span3"><i class="icon-indent-left"></i> <span class="i-name">icon-indent-left</span><span class="i-code">0xe8ba</span></div>
<div title="Code: 0xe8bb" class="the-icons span3"><i class="icon-indent-right"></i> <span class="i-name">icon-indent-right</span><span class="i-code">0xe8bb</span></div>
<div title="Code: 0xe963" class="the-icons span3"><i class="icon-off"></i> <span class="i-name">icon-off</span><span class="i-code">0xe963</span></div>
<div title="Code: 0xe964" class="the-icons span3"><i class="icon-road"></i> <span class="i-name">icon-road</span><span class="i-code">0xe964</span></div>
</div>
<div class="row">
<div title="Code: 0xe8c9" class="the-icons span3"><i class="icon-list-alt"></i> <span class="i-name">icon-list-alt</span><span class="i-code">0xe8c9</span></div>
<div title="Code: 0xe8ca" class="the-icons span3"><i class="icon-qrcode"></i> <span class="i-name">icon-qrcode</span><span class="i-code">0xe8ca</span></div>
<div title="Code: 0xe8cb" class="the-icons span3"><i class="icon-barcode"></i> <span class="i-name">icon-barcode</span><span class="i-code">0xe8cb</span></div>
<div title="Code: 0xe8cd" class="the-icons span3"><i class="icon-ajust"></i> <span class="i-name">icon-ajust</span><span class="i-code">0xe8cd</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ce" class="the-icons span3"><i class="icon-tint"></i> <span class="i-name">icon-tint</span><span class="i-code">0xe8ce</span></div>
<div title="Code: 0xe829" class="the-icons span3"><i class="icon-layers"></i> <span class="i-name">icon-layers</span><span class="i-code">0xe829</span></div>
<div title="Code: 0xe8d6" class="the-icons span3"><i class="icon-magnet"></i> <span class="i-name">icon-magnet</span><span class="i-code">0xe8d6</span></div>
<div title="Code: 0xe874" class="the-icons span3"><i class="icon-move"></i> <span class="i-name">icon-move</span><span class="i-code">0xe874</span></div>
</div>
<div class="row">
<div title="Code: 0xe83f" class="the-icons span3"><i class="icon-link"></i> <span class="i-name">icon-link</span><span class="i-code">0xe83f</span></div>
<div title="Code: 0xe912" class="the-icons span3"><i class="icon-share"></i> <span class="i-name">icon-share</span><span class="i-code">0xe912</span></div>
<div title="Code: 0xe841" class="the-icons span3"><i class="icon-hdd"></i> <span class="i-name">icon-hdd</span><span class="i-code">0xe841</span></div>
<div title="Code: 0xe82b" class="the-icons span3"><i class="icon-link-ext"></i> <span class="i-name">icon-link-ext</span><span class="i-code">0xe82b</span></div>
</div>
<div class="row">
<div title="Code: 0xe8d0" class="the-icons span3"><i class="icon-check-empty"></i> <span class="i-name">icon-check-empty</span><span class="i-code">0xe8d0</span></div>
<div title="Code: 0xe837" class="the-icons span3"><i class="icon-bookmark-empty"></i> <span class="i-name">icon-bookmark-empty</span><span class="i-code">0xe837</span></div>
<div title="Code: 0xe860" class="the-icons span3"><i class="icon-phone-squared"></i> <span class="i-name">icon-phone-squared</span><span class="i-code">0xe860</span></div>
<div title="Code: 0xe85d" class="the-icons span3"><i class="icon-rss"></i> <span class="i-name">icon-rss</span><span class="i-code">0xe85d</span></div>
</div>
<div class="row">
<div title="Code: 0xe8dd" class="the-icons span3"><i class="icon-certificate"></i> <span class="i-name">icon-certificate</span><span class="i-code">0xe8dd</span></div>
<div title="Code: 0xe891" class="the-icons span3"><i class="icon-left-circled"></i> <span class="i-name">icon-left-circled</span><span class="i-code">0xe891</span></div>
<div title="Code: 0xe892" class="the-icons span3"><i class="icon-right-circled"></i> <span class="i-name">icon-right-circled</span><span class="i-code">0xe892</span></div>
<div title="Code: 0xe893" class="the-icons span3"><i class="icon-up-circled"></i> <span class="i-name">icon-up-circled</span><span class="i-code">0xe893</span></div>
</div>
<div class="row">
<div title="Code: 0xe894" class="the-icons span3"><i class="icon-down-circled"></i> <span class="i-name">icon-down-circled</span><span class="i-code">0xe894</span></div>
<div title="Code: 0xe8de" class="the-icons span3"><i class="icon-tasks"></i> <span class="i-name">icon-tasks</span><span class="i-code">0xe8de</span></div>
<div title="Code: 0xe8df" class="the-icons span3"><i class="icon-filter"></i> <span class="i-name">icon-filter</span><span class="i-code">0xe8df</span></div>
<div title="Code: 0xe870" class="the-icons span3"><i class="icon-resize-full-alt"></i> <span class="i-name">icon-resize-full-alt</span><span class="i-code">0xe870</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e0" class="the-icons span3"><i class="icon-beaker"></i> <span class="i-name">icon-beaker</span><span class="i-code">0xe8e0</span></div>
<div title="Code: 0xe858" class="the-icons span3"><i class="icon-docs"></i> <span class="i-name">icon-docs</span><span class="i-code">0xe858</span></div>
<div title="Code: 0xe861" class="the-icons span3"><i class="icon-menu"></i> <span class="i-name">icon-menu</span><span class="i-code">0xe861</span></div>
<div title="Code: 0xe8bc" class="the-icons span3"><i class="icon-list-bullet"></i> <span class="i-name">icon-list-bullet</span><span class="i-code">0xe8bc</span></div>
</div>
<div class="row">
<div title="Code: 0xe8bd" class="the-icons span3"><i class="icon-list-numbered"></i> <span class="i-name">icon-list-numbered</span><span class="i-code">0xe8bd</span></div>
<div title="Code: 0xe8be" class="the-icons span3"><i class="icon-strike"></i> <span class="i-name">icon-strike</span><span class="i-code">0xe8be</span></div>
<div title="Code: 0xe8bf" class="the-icons span3"><i class="icon-underline"></i> <span class="i-name">icon-underline</span><span class="i-code">0xe8bf</span></div>
<div title="Code: 0xe8c2" class="the-icons span3"><i class="icon-table"></i> <span class="i-name">icon-table</span><span class="i-code">0xe8c2</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e1" class="the-icons span3"><i class="icon-magic"></i> <span class="i-name">icon-magic</span><span class="i-code">0xe8e1</span></div>
<div title="Code: 0xe8e3" class="the-icons span3"><i class="icon-money"></i> <span class="i-name">icon-money</span><span class="i-code">0xe8e3</span></div>
<div title="Code: 0xe8c3" class="the-icons span3"><i class="icon-columns"></i> <span class="i-name">icon-columns</span><span class="i-code">0xe8c3</span></div>
<div title="Code: 0xe8ec" class="the-icons span3"><i class="icon-sort"></i> <span class="i-name">icon-sort</span><span class="i-code">0xe8ec</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ed" class="the-icons span3"><i class="icon-sort-down"></i> <span class="i-name">icon-sort-down</span><span class="i-code">0xe8ed</span></div>
<div title="Code: 0xe8ee" class="the-icons span3"><i class="icon-sort-up"></i> <span class="i-name">icon-sort-up</span><span class="i-code">0xe8ee</span></div>
<div title="Code: 0xe805" class="the-icons span3"><i class="icon-mail-alt"></i> <span class="i-name">icon-mail-alt</span><span class="i-code">0xe805</span></div>
<div title="Code: 0xe8f6" class="the-icons span3"><i class="icon-gauge"></i> <span class="i-name">icon-gauge</span><span class="i-code">0xe8f6</span></div>
<div title="Code: 0xe806" class="the-icons span3"><i class="icon-heart"></i> <span class="i-name">icon-heart</span><span class="i-code">0xe806</span></div>
<div title="Code: 0xe807" class="the-icons span3"><i class="icon-heart-empty"></i> <span class="i-name">icon-heart-empty</span><span class="i-code">0xe807</span></div>
<div title="Code: 0xe808" class="the-icons span3"><i class="icon-star"></i> <span class="i-name">icon-star</span><span class="i-code">0xe808</span></div>
</div>
<div class="row">
<div title="Code: 0xe84c" class="the-icons span3"><i class="icon-comment-empty"></i> <span class="i-name">icon-comment-empty</span><span class="i-code">0xe84c</span></div>
<div title="Code: 0xe84d" class="the-icons span3"><i class="icon-chat-empty"></i> <span class="i-name">icon-chat-empty</span><span class="i-code">0xe84d</span></div>
<div title="Code: 0xe8f7" class="the-icons span3"><i class="icon-sitemap"></i> <span class="i-name">icon-sitemap</span><span class="i-code">0xe8f7</span></div>
<div title="Code: 0xe8c6" class="the-icons span3"><i class="icon-paste"></i> <span class="i-name">icon-paste</span><span class="i-code">0xe8c6</span></div>
</div>
<div class="row">
<div title="Code: 0xe86d" class="the-icons span3"><i class="icon-lightbulb"></i> <span class="i-name">icon-lightbulb</span><span class="i-code">0xe86d</span></div>
<div title="Code: 0xe957" class="the-icons span3"><i class="icon-exchange"></i> <span class="i-name">icon-exchange</span><span class="i-code">0xe957</span></div>
<div title="Code: 0xe83d" class="the-icons span3"><i class="icon-download-cloud"></i> <span class="i-name">icon-download-cloud</span><span class="i-code">0xe83d</span></div>
<div title="Code: 0xe83e" class="the-icons span3"><i class="icon-upload-cloud"></i> <span class="i-name">icon-upload-cloud</span><span class="i-code">0xe83e</span></div>
</div>
<div class="row">
<div title="Code: 0xe8fc" class="the-icons span3"><i class="icon-user-md"></i> <span class="i-name">icon-user-md</span><span class="i-code">0xe8fc</span></div>
<div title="Code: 0xe8fd" class="the-icons span3"><i class="icon-stethoscope"></i> <span class="i-name">icon-stethoscope</span><span class="i-code">0xe8fd</span></div>
<div title="Code: 0xe8c8" class="the-icons span3"><i class="icon-suitcase"></i> <span class="i-name">icon-suitcase</span><span class="i-code">0xe8c8</span></div>
<div title="Code: 0xe84f" class="the-icons span3"><i class="icon-bell-alt"></i> <span class="i-name">icon-bell-alt</span><span class="i-code">0xe84f</span></div>
</div>
<div class="row">
<div title="Code: 0xe8f9" class="the-icons span3"><i class="icon-coffee"></i> <span class="i-name">icon-coffee</span><span class="i-code">0xe8f9</span></div>
<div title="Code: 0xe8fa" class="the-icons span3"><i class="icon-food"></i> <span class="i-name">icon-food</span><span class="i-code">0xe8fa</span></div>
<div title="Code: 0xe945" class="the-icons span3"><i class="icon-doc-text"></i> <span class="i-name">icon-doc-text</span><span class="i-code">0xe945</span></div>
<div title="Code: 0xe902" class="the-icons span3"><i class="icon-building"></i> <span class="i-name">icon-building</span><span class="i-code">0xe902</span></div>
</div>
<div class="row">
<div title="Code: 0xe901" class="the-icons span3"><i class="icon-hospital"></i> <span class="i-name">icon-hospital</span><span class="i-code">0xe901</span></div>
<div title="Code: 0xe8fe" class="the-icons span3"><i class="icon-ambulance"></i> <span class="i-name">icon-ambulance</span><span class="i-code">0xe8fe</span></div>
<div title="Code: 0xe8ff" class="the-icons span3"><i class="icon-medkit"></i> <span class="i-name">icon-medkit</span><span class="i-code">0xe8ff</span></div>
<div title="Code: 0xe8b2" class="the-icons span3"><i class="icon-fighter-jet"></i> <span class="i-name">icon-fighter-jet</span><span class="i-code">0xe8b2</span></div>
</div>
<div class="row">
<div title="Code: 0xe8fb" class="the-icons span3"><i class="icon-beer"></i> <span class="i-name">icon-beer</span><span class="i-code">0xe8fb</span></div>
<div title="Code: 0xe900" class="the-icons span3"><i class="icon-h-sigh"></i> <span class="i-name">icon-h-sigh</span><span class="i-code">0xe900</span></div>
<div title="Code: 0xe821" class="the-icons span3"><i class="icon-plus-squared"></i> <span class="i-name">icon-plus-squared</span><span class="i-code">0xe821</span></div>
<div title="Code: 0xe885" class="the-icons span3"><i class="icon-angle-double-left"></i> <span class="i-name">icon-angle-double-left</span><span class="i-code">0xe885</span></div>
</div>
<div class="row">
<div title="Code: 0xe886" class="the-icons span3"><i class="icon-angle-double-right"></i> <span class="i-name">icon-angle-double-right</span><span class="i-code">0xe886</span></div>
<div title="Code: 0xe887" class="the-icons span3"><i class="icon-angle-double-up"></i> <span class="i-name">icon-angle-double-up</span><span class="i-code">0xe887</span></div>
<div title="Code: 0xe888" class="the-icons span3"><i class="icon-angle-double-down"></i> <span class="i-name">icon-angle-double-down</span><span class="i-code">0xe888</span></div>
<div title="Code: 0xe87d" class="the-icons span3"><i class="icon-angle-left"></i> <span class="i-name">icon-angle-left</span><span class="i-code">0xe87d</span></div>
</div>
<div class="row">
<div title="Code: 0xe87e" class="the-icons span3"><i class="icon-angle-right"></i> <span class="i-name">icon-angle-right</span><span class="i-code">0xe87e</span></div>
<div title="Code: 0xe87f" class="the-icons span3"><i class="icon-angle-up"></i> <span class="i-name">icon-angle-up</span><span class="i-code">0xe87f</span></div>
<div title="Code: 0xe880" class="the-icons span3"><i class="icon-angle-down"></i> <span class="i-name">icon-angle-down</span><span class="i-code">0xe880</span></div>
<div title="Code: 0xe95a" class="the-icons span3"><i class="icon-desktop"></i> <span class="i-name">icon-desktop</span><span class="i-code">0xe95a</span></div>
</div>
<div class="row">
<div title="Code: 0xe90e" class="the-icons span3"><i class="icon-laptop"></i> <span class="i-name">icon-laptop</span><span class="i-code">0xe90e</span></div>
<div title="Code: 0xe95c" class="the-icons span3"><i class="icon-tablet"></i> <span class="i-name">icon-tablet</span><span class="i-code">0xe95c</span></div>
<div title="Code: 0xe8a9" class="the-icons span3"><i class="icon-mobile"></i> <span class="i-name">icon-mobile</span><span class="i-code">0xe8a9</span></div>
<div title="Code: 0xe8d2" class="the-icons span3"><i class="icon-circle-empty"></i> <span class="i-name">icon-circle-empty</span><span class="i-code">0xe8d2</span></div>
</div>
<div class="row">
<div title="Code: 0xe842" class="the-icons span3"><i class="icon-quote-left"></i> <span class="i-name">icon-quote-left</span><span class="i-code">0xe842</span></div>
<div title="Code: 0xe843" class="the-icons span3"><i class="icon-quote-right"></i> <span class="i-name">icon-quote-right</span><span class="i-code">0xe843</span></div>
<div title="Code: 0xe8f8" class="the-icons span3"><i class="icon-spinner"></i> <span class="i-name">icon-spinner</span><span class="i-code">0xe8f8</span></div>
<div title="Code: 0xe8d1" class="the-icons span3"><i class="icon-circle"></i> <span class="i-name">icon-circle</span><span class="i-code">0xe8d1</span></div>
</div>
<div class="row">
<div title="Code: 0xe845" class="the-icons span3"><i class="icon-reply"></i> <span class="i-name">icon-reply</span><span class="i-code">0xe845</span></div>
<div title="Code: 0xe85a" class="the-icons span3"><i class="icon-folder-empty"></i> <span class="i-name">icon-folder-empty</span><span class="i-code">0xe85a</span></div>
<div title="Code: 0xe85b" class="the-icons span3"><i class="icon-folder-open-empty"></i> <span class="i-name">icon-folder-open-empty</span><span class="i-code">0xe85b</span></div>
<div title="Code: 0xe822" class="the-icons span3"><i class="icon-plus-squared-small"></i> <span class="i-name">icon-plus-squared-small</span><span class="i-code">0xe822</span></div>
</div>
<div class="row">
<div title="Code: 0xe827" class="the-icons span3"><i class="icon-minus-squared-small"></i> <span class="i-name">icon-minus-squared-small</span><span class="i-code">0xe827</span></div>
<div title="Code: 0xe903" class="the-icons span3"><i class="icon-smile"></i> <span class="i-name">icon-smile</span><span class="i-code">0xe903</span></div>
<div title="Code: 0xe904" class="the-icons span3"><i class="icon-frown"></i> <span class="i-name">icon-frown</span><span class="i-code">0xe904</span></div>
<div title="Code: 0xe905" class="the-icons span3"><i class="icon-meh"></i> <span class="i-name">icon-meh</span><span class="i-code">0xe905</span></div>
</div>
<div class="row">
<div title="Code: 0xe849" class="the-icons span3"><i class="icon-gamepad"></i> <span class="i-name">icon-gamepad</span><span class="i-code">0xe849</span></div>
<div title="Code: 0xe944" class="the-icons span3"><i class="icon-keyboard"></i> <span class="i-name">icon-keyboard</span><span class="i-code">0xe944</span></div>
<div title="Code: 0xe93d" class="the-icons span3"><i class="icon-flag-empty"></i> <span class="i-name">icon-flag-empty</span><span class="i-code">0xe93d</span></div>
<div title="Code: 0xe93e" class="the-icons span3"><i class="icon-flag-checkered"></i> <span class="i-name">icon-flag-checkered</span><span class="i-code">0xe93e</span></div>
</div>
<div class="row">
<div title="Code: 0xe907" class="the-icons span3"><i class="icon-terminal"></i> <span class="i-name">icon-terminal</span><span class="i-code">0xe907</span></div>
<div title="Code: 0xe840" class="the-icons span3"><i class="icon-reply-all"></i> <span class="i-name">icon-reply-all</span><span class="i-code">0xe840</span></div>
<div title="Code: 0xe809" class="the-icons span3"><i class="icon-star-empty"></i> <span class="i-name">icon-star-empty</span><span class="i-code">0xe809</span></div>
<div title="Code: 0xe80a" class="the-icons span3"><i class="icon-star-half"></i> <span class="i-name">icon-star-half</span><span class="i-code">0xe80a</span></div>
<div title="Code: 0xe80b" class="the-icons span3"><i class="icon-star-half-alt"></i> <span class="i-name">icon-star-half-alt</span><span class="i-code">0xe80b</span></div>
<div title="Code: 0xe854" class="the-icons span3"><i class="icon-direction"></i> <span class="i-name">icon-direction</span><span class="i-code">0xe854</span></div>
<div title="Code: 0xe80c" class="the-icons span3"><i class="icon-user"></i> <span class="i-name">icon-user</span><span class="i-code">0xe80c</span></div>
</div>
<div class="row">
<div title="Code: 0xe8c4" class="the-icons span3"><i class="icon-crop"></i> <span class="i-name">icon-crop</span><span class="i-code">0xe8c4</span></div>
<div title="Code: 0xe8da" class="the-icons span3"><i class="icon-fork"></i> <span class="i-name">icon-fork</span><span class="i-code">0xe8da</span></div>
<div title="Code: 0xe82a" class="the-icons span3"><i class="icon-unlink"></i> <span class="i-name">icon-unlink</span><span class="i-code">0xe82a</span></div>
<div title="Code: 0xe828" class="the-icons span3"><i class="icon-help"></i> <span class="i-name">icon-help</span><span class="i-code">0xe828</span></div>
<div title="Code: 0xe80d" class="the-icons span3"><i class="icon-users"></i> <span class="i-name">icon-users</span><span class="i-code">0xe80d</span></div>
<div title="Code: 0xe80e" class="the-icons span3"><i class="icon-male"></i> <span class="i-name">icon-male</span><span class="i-code">0xe80e</span></div>
<div title="Code: 0xe80f" class="the-icons span3"><i class="icon-female"></i> <span class="i-name">icon-female</span><span class="i-code">0xe80f</span></div>
<div title="Code: 0xe810" class="the-icons span3"><i class="icon-video"></i> <span class="i-name">icon-video</span><span class="i-code">0xe810</span></div>
</div>
<div class="row">
<div title="Code: 0xe93b" class="the-icons span3"><i class="icon-info"></i> <span class="i-name">icon-info</span><span class="i-code">0xe93b</span></div>
<div title="Code: 0xe850" class="the-icons span3"><i class="icon-attention-alt"></i> <span class="i-name">icon-attention-alt</span><span class="i-code">0xe850</span></div>
<div title="Code: 0xe8c0" class="the-icons span3"><i class="icon-superscript"></i> <span class="i-name">icon-superscript</span><span class="i-code">0xe8c0</span></div>
<div title="Code: 0xe8c1" class="the-icons span3"><i class="icon-subscript"></i> <span class="i-name">icon-subscript</span><span class="i-code">0xe8c1</span></div>
<div title="Code: 0xe811" class="the-icons span3"><i class="icon-videocam"></i> <span class="i-name">icon-videocam</span><span class="i-code">0xe811</span></div>
<div title="Code: 0xe812" class="the-icons span3"><i class="icon-picture"></i> <span class="i-name">icon-picture</span><span class="i-code">0xe812</span></div>
<div title="Code: 0xe813" class="the-icons span3"><i class="icon-camera"></i> <span class="i-name">icon-camera</span><span class="i-code">0xe813</span></div>
<div title="Code: 0xe814" class="the-icons span3"><i class="icon-camera-alt"></i> <span class="i-name">icon-camera-alt</span><span class="i-code">0xe814</span></div>
</div>
<div class="row">
<div title="Code: 0xe908" class="the-icons span3"><i class="icon-eraser"></i> <span class="i-name">icon-eraser</span><span class="i-code">0xe908</span></div>
<div title="Code: 0xe909" class="the-icons span3"><i class="icon-puzzle"></i> <span class="i-name">icon-puzzle</span><span class="i-code">0xe909</span></div>
<div title="Code: 0xe94a" class="the-icons span3"><i class="icon-mic"></i> <span class="i-name">icon-mic</span><span class="i-code">0xe94a</span></div>
<div title="Code: 0xe94b" class="the-icons span3"><i class="icon-mute"></i> <span class="i-name">icon-mute</span><span class="i-code">0xe94b</span></div>
<div title="Code: 0xe815" class="the-icons span3"><i class="icon-th-large"></i> <span class="i-name">icon-th-large</span><span class="i-code">0xe815</span></div>
<div title="Code: 0xe816" class="the-icons span3"><i class="icon-th"></i> <span class="i-name">icon-th</span><span class="i-code">0xe816</span></div>
<div title="Code: 0xe817" class="the-icons span3"><i class="icon-th-list"></i> <span class="i-name">icon-th-list</span><span class="i-code">0xe817</span></div>
<div title="Code: 0xe818" class="the-icons span3"><i class="icon-ok"></i> <span class="i-name">icon-ok</span><span class="i-code">0xe818</span></div>
</div>
<div class="row">
<div title="Code: 0xe90a" class="the-icons span3"><i class="icon-shield"></i> <span class="i-name">icon-shield</span><span class="i-code">0xe90a</span></div>
<div title="Code: 0xe867" class="the-icons span3"><i class="icon-calendar-empty"></i> <span class="i-name">icon-calendar-empty</span><span class="i-code">0xe867</span></div>
<div title="Code: 0xe90b" class="the-icons span3"><i class="icon-extinguisher"></i> <span class="i-name">icon-extinguisher</span><span class="i-code">0xe90b</span></div>
<div title="Code: 0xe8db" class="the-icons span3"><i class="icon-rocket"></i> <span class="i-name">icon-rocket</span><span class="i-code">0xe8db</span></div>
<div title="Code: 0xe819" class="the-icons span3"><i class="icon-ok-circled"></i> <span class="i-name">icon-ok-circled</span><span class="i-code">0xe819</span></div>
<div title="Code: 0xe81a" class="the-icons span3"><i class="icon-ok-circled2"></i> <span class="i-name">icon-ok-circled2</span><span class="i-code">0xe81a</span></div>
<div title="Code: 0xe81b" class="the-icons span3"><i class="icon-ok-squared"></i> <span class="i-name">icon-ok-squared</span><span class="i-code">0xe81b</span></div>
<div title="Code: 0xe81c" class="the-icons span3"><i class="icon-cancel"></i> <span class="i-name">icon-cancel</span><span class="i-code">0xe81c</span></div>
</div>
<div class="row">
<div title="Code: 0xe881" class="the-icons span3"><i class="icon-angle-circled-left"></i> <span class="i-name">icon-angle-circled-left</span><span class="i-code">0xe881</span></div>
<div title="Code: 0xe882" class="the-icons span3"><i class="icon-angle-circled-right"></i> <span class="i-name">icon-angle-circled-right</span><span class="i-code">0xe882</span></div>
<div title="Code: 0xe883" class="the-icons span3"><i class="icon-angle-circled-up"></i> <span class="i-name">icon-angle-circled-up</span><span class="i-code">0xe883</span></div>
<div title="Code: 0xe884" class="the-icons span3"><i class="icon-angle-circled-down"></i> <span class="i-name">icon-angle-circled-down</span><span class="i-code">0xe884</span></div>
<div title="Code: 0xe81d" class="the-icons span3"><i class="icon-cancel-circled"></i> <span class="i-name">icon-cancel-circled</span><span class="i-code">0xe81d</span></div>
<div title="Code: 0xe86f" class="the-icons span3"><i class="icon-cancel-circled2"></i> <span class="i-name">icon-cancel-circled2</span><span class="i-code">0xe86f</span></div>
<div title="Code: 0xe81f" class="the-icons span3"><i class="icon-plus"></i> <span class="i-name">icon-plus</span><span class="i-code">0xe81f</span></div>
<div title="Code: 0xe820" class="the-icons span3"><i class="icon-plus-circled"></i> <span class="i-name">icon-plus-circled</span><span class="i-code">0xe820</span></div>
</div>
<div class="row">
<div title="Code: 0xe906" class="the-icons span3"><i class="icon-anchor"></i> <span class="i-name">icon-anchor</span><span class="i-code">0xe906</span></div>
<div title="Code: 0xe830" class="the-icons span3"><i class="icon-lock-open-alt"></i> <span class="i-name">icon-lock-open-alt</span><span class="i-code">0xe830</span></div>
<div title="Code: 0xe90c" class="the-icons span3"><i class="icon-bullseye"></i> <span class="i-name">icon-bullseye</span><span class="i-code">0xe90c</span></div>
<div title="Code: 0xe961" class="the-icons span3"><i class="icon-ellipsis"></i> <span class="i-name">icon-ellipsis</span><span class="i-code">0xe961</span></div>
</div>
<div class="row">
<div title="Code: 0xe962" class="the-icons span3"><i class="icon-ellipsis-vert"></i> <span class="i-name">icon-ellipsis-vert</span><span class="i-code">0xe962</span></div>
<div title="Code: 0xe85e" class="the-icons span3"><i class="icon-rss-squared"></i> <span class="i-name">icon-rss-squared</span><span class="i-code">0xe85e</span></div>
<div title="Code: 0xe89c" class="the-icons span3"><i class="icon-play-circled"></i> <span class="i-name">icon-play-circled</span><span class="i-code">0xe89c</span></div>
<div title="Code: 0xe8d8" class="the-icons span3"><i class="icon-ticket"></i> <span class="i-name">icon-ticket</span><span class="i-code">0xe8d8</span></div>
<div title="Code: 0xe821" class="the-icons span3"><i class="icon-plus-squared"></i> <span class="i-name">icon-plus-squared</span><span class="i-code">0xe821</span></div>
<div title="Code: 0xe822" class="the-icons span3"><i class="icon-plus-squared-small"></i> <span class="i-name">icon-plus-squared-small</span><span class="i-code">0xe822</span></div>
<div title="Code: 0xe823" class="the-icons span3"><i class="icon-minus"></i> <span class="i-name">icon-minus</span><span class="i-code">0xe823</span></div>
<div title="Code: 0xe824" class="the-icons span3"><i class="icon-minus-circled"></i> <span class="i-name">icon-minus-circled</span><span class="i-code">0xe824</span></div>
</div>
<div class="row">
<div title="Code: 0xe825" class="the-icons span3"><i class="icon-minus-squared"></i> <span class="i-name">icon-minus-squared</span><span class="i-code">0xe825</span></div>
<div title="Code: 0xe826" class="the-icons span3"><i class="icon-minus-squared-alt"></i> <span class="i-name">icon-minus-squared-alt</span><span class="i-code">0xe826</span></div>
<div title="Code: 0xe898" class="the-icons span3"><i class="icon-level-up"></i> <span class="i-name">icon-level-up</span><span class="i-code">0xe898</span></div>
<div title="Code: 0xe955" class="the-icons span3"><i class="icon-level-down"></i> <span class="i-name">icon-level-down</span><span class="i-code">0xe955</span></div>
<div title="Code: 0xe827" class="the-icons span3"><i class="icon-minus-squared-small"></i> <span class="i-name">icon-minus-squared-small</span><span class="i-code">0xe827</span></div>
<div title="Code: 0xe828" class="the-icons span3"><i class="icon-help"></i> <span class="i-name">icon-help</span><span class="i-code">0xe828</span></div>
</div>
<div class="row">
<div title="Code: 0xe81b" class="the-icons span3"><i class="icon-ok-squared"></i> <span class="i-name">icon-ok-squared</span><span class="i-code">0xe81b</span></div>
<div title="Code: 0xe848" class="the-icons span3"><i class="icon-pencil-squared"></i> <span class="i-name">icon-pencil-squared</span><span class="i-code">0xe848</span></div>
<div title="Code: 0xe939" class="the-icons span3"><i class="icon-help-circled"></i> <span class="i-name">icon-help-circled</span><span class="i-code">0xe939</span></div>
<div title="Code: 0xe93a" class="the-icons span3"><i class="icon-info-circled"></i> <span class="i-name">icon-info-circled</span><span class="i-code">0xe93a</span></div>
<div title="Code: 0xe93b" class="the-icons span3"><i class="icon-info"></i> <span class="i-name">icon-info</span><span class="i-code">0xe93b</span></div>
<div title="Code: 0xe93c" class="the-icons span3"><i class="icon-home"></i> <span class="i-name">icon-home</span><span class="i-code">0xe93c</span></div>
</div>
<div class="row">
<div title="Code: 0xe83f" class="the-icons span3"><i class="icon-link"></i> <span class="i-name">icon-link</span><span class="i-code">0xe83f</span></div>
<div title="Code: 0xe82a" class="the-icons span3"><i class="icon-unlink"></i> <span class="i-name">icon-unlink</span><span class="i-code">0xe82a</span></div>
<div title="Code: 0xe82b" class="the-icons span3"><i class="icon-link-ext"></i> <span class="i-name">icon-link-ext</span><span class="i-code">0xe82b</span></div>
<div title="Code: 0xe82c" class="the-icons span3"><i class="icon-link-ext-alt"></i> <span class="i-name">icon-link-ext-alt</span><span class="i-code">0xe82c</span></div>
</div>
<div class="row">
<div title="Code: 0xe82d" class="the-icons span3"><i class="icon-attach"></i> <span class="i-name">icon-attach</span><span class="i-code">0xe82d</span></div>
<div title="Code: 0xe82e" class="the-icons span3"><i class="icon-lock"></i> <span class="i-name">icon-lock</span><span class="i-code">0xe82e</span></div>
<div title="Code: 0xe82f" class="the-icons span3"><i class="icon-lock-open"></i> <span class="i-name">icon-lock-open</span><span class="i-code">0xe82f</span></div>
<div title="Code: 0xe830" class="the-icons span3"><i class="icon-lock-open-alt"></i> <span class="i-name">icon-lock-open-alt</span><span class="i-code">0xe830</span></div>
</div>
<div class="row">
<div title="Code: 0xe831" class="the-icons span3"><i class="icon-pin"></i> <span class="i-name">icon-pin</span><span class="i-code">0xe831</span></div>
<div title="Code: 0xe832" class="the-icons span3"><i class="icon-eye"></i> <span class="i-name">icon-eye</span><span class="i-code">0xe832</span></div>
<div title="Code: 0xe833" class="the-icons span3"><i class="icon-eye-off"></i> <span class="i-name">icon-eye-off</span><span class="i-code">0xe833</span></div>
<div title="Code: 0xe834" class="the-icons span3"><i class="icon-tag"></i> <span class="i-name">icon-tag</span><span class="i-code">0xe834</span></div>
</div>
<div class="row">
<div title="Code: 0xe835" class="the-icons span3"><i class="icon-tags"></i> <span class="i-name">icon-tags</span><span class="i-code">0xe835</span></div>
<div title="Code: 0xe836" class="the-icons span3"><i class="icon-bookmark"></i> <span class="i-name">icon-bookmark</span><span class="i-code">0xe836</span></div>
<div title="Code: 0xe837" class="the-icons span3"><i class="icon-bookmark-empty"></i> <span class="i-name">icon-bookmark-empty</span><span class="i-code">0xe837</span></div>
<div title="Code: 0xe838" class="the-icons span3"><i class="icon-flag"></i> <span class="i-name">icon-flag</span><span class="i-code">0xe838</span></div>
</div>
<div class="row">
<div title="Code: 0xe93d" class="the-icons span3"><i class="icon-flag-empty"></i> <span class="i-name">icon-flag-empty</span><span class="i-code">0xe93d</span></div>
<div title="Code: 0xe93e" class="the-icons span3"><i class="icon-flag-checkered"></i> <span class="i-name">icon-flag-checkered</span><span class="i-code">0xe93e</span></div>
<div title="Code: 0xe93f" class="the-icons span3"><i class="icon-thumbs-up"></i> <span class="i-name">icon-thumbs-up</span><span class="i-code">0xe93f</span></div>
<div title="Code: 0xe940" class="the-icons span3"><i class="icon-thumbs-down"></i> <span class="i-name">icon-thumbs-down</span><span class="i-code">0xe940</span></div>
</div>
<div class="row">
<div title="Code: 0xe839" class="the-icons span3"><i class="icon-thumbs-up-alt"></i> <span class="i-name">icon-thumbs-up-alt</span><span class="i-code">0xe839</span></div>
<div title="Code: 0xe83a" class="the-icons span3"><i class="icon-thumbs-down-alt"></i> <span class="i-name">icon-thumbs-down-alt</span><span class="i-code">0xe83a</span></div>
<div title="Code: 0xe83b" class="the-icons span3"><i class="icon-download"></i> <span class="i-name">icon-download</span><span class="i-code">0xe83b</span></div>
<div title="Code: 0xe83c" class="the-icons span3"><i class="icon-upload"></i> <span class="i-name">icon-upload</span><span class="i-code">0xe83c</span></div>
</div>
<div class="row">
<div title="Code: 0xe83d" class="the-icons span3"><i class="icon-download-cloud"></i> <span class="i-name">icon-download-cloud</span><span class="i-code">0xe83d</span></div>
<div title="Code: 0xe83e" class="the-icons span3"><i class="icon-upload-cloud"></i> <span class="i-name">icon-upload-cloud</span><span class="i-code">0xe83e</span></div>
<div title="Code: 0xe845" class="the-icons span3"><i class="icon-reply"></i> <span class="i-name">icon-reply</span><span class="i-code">0xe845</span></div>
<div title="Code: 0xe840" class="the-icons span3"><i class="icon-reply-all"></i> <span class="i-name">icon-reply-all</span><span class="i-code">0xe840</span></div>
</div>
<div class="row">
<div title="Code: 0xe856" class="the-icons span3"><i class="icon-forward"></i> <span class="i-name">icon-forward</span><span class="i-code">0xe856</span></div>
<div title="Code: 0xe842" class="the-icons span3"><i class="icon-quote-left"></i> <span class="i-name">icon-quote-left</span><span class="i-code">0xe842</span></div>
<div title="Code: 0xe843" class="the-icons span3"><i class="icon-quote-right"></i> <span class="i-name">icon-quote-right</span><span class="i-code">0xe843</span></div>
<div title="Code: 0xe846" class="the-icons span3"><i class="icon-export-alt"></i> <span class="i-name">icon-export-alt</span><span class="i-code">0xe846</span></div>
</div>
<div class="row">
<div title="Code: 0xe847" class="the-icons span3"><i class="icon-pencil"></i> <span class="i-name">icon-pencil</span><span class="i-code">0xe847</span></div>
<div title="Code: 0xe848" class="the-icons span3"><i class="icon-pencil-squared"></i> <span class="i-name">icon-pencil-squared</span><span class="i-code">0xe848</span></div>
<div title="Code: 0xe941" class="the-icons span3"><i class="icon-edit"></i> <span class="i-name">icon-edit</span><span class="i-code">0xe941</span></div>
<div title="Code: 0xe942" class="the-icons span3"><i class="icon-print"></i> <span class="i-name">icon-print</span><span class="i-code">0xe942</span></div>
</div>
<div class="row">
<div title="Code: 0xe943" class="the-icons span3"><i class="icon-retweet"></i> <span class="i-name">icon-retweet</span><span class="i-code">0xe943</span></div>
<div title="Code: 0xe944" class="the-icons span3"><i class="icon-keyboard"></i> <span class="i-name">icon-keyboard</span><span class="i-code">0xe944</span></div>
<div title="Code: 0xe849" class="the-icons span3"><i class="icon-gamepad"></i> <span class="i-name">icon-gamepad</span><span class="i-code">0xe849</span></div>
<div title="Code: 0xe84a" class="the-icons span3"><i class="icon-comment"></i> <span class="i-name">icon-comment</span><span class="i-code">0xe84a</span></div>
</div>
<div class="row">
<div title="Code: 0xe84b" class="the-icons span3"><i class="icon-chat"></i> <span class="i-name">icon-chat</span><span class="i-code">0xe84b</span></div>
<div title="Code: 0xe84c" class="the-icons span3"><i class="icon-comment-empty"></i> <span class="i-name">icon-comment-empty</span><span class="i-code">0xe84c</span></div>
<div title="Code: 0xe84d" class="the-icons span3"><i class="icon-chat-empty"></i> <span class="i-name">icon-chat-empty</span><span class="i-code">0xe84d</span></div>
<div title="Code: 0xe84e" class="the-icons span3"><i class="icon-bell"></i> <span class="i-name">icon-bell</span><span class="i-code">0xe84e</span></div>
</div>
<div class="row">
<div title="Code: 0xe84f" class="the-icons span3"><i class="icon-bell-alt"></i> <span class="i-name">icon-bell-alt</span><span class="i-code">0xe84f</span></div>
<div title="Code: 0xe850" class="the-icons span3"><i class="icon-attention-alt"></i> <span class="i-name">icon-attention-alt</span><span class="i-code">0xe850</span></div>
<div title="Code: 0xe851" class="the-icons span3"><i class="icon-attention"></i> <span class="i-name">icon-attention</span><span class="i-code">0xe851</span></div>
<div title="Code: 0xe852" class="the-icons span3"><i class="icon-attention-circled"></i> <span class="i-name">icon-attention-circled</span><span class="i-code">0xe852</span></div>
</div>
<div class="row">
<div title="Code: 0xe853" class="the-icons span3"><i class="icon-location"></i> <span class="i-name">icon-location</span><span class="i-code">0xe853</span></div>
<div title="Code: 0xe854" class="the-icons span3"><i class="icon-direction"></i> <span class="i-name">icon-direction</span><span class="i-code">0xe854</span></div>
<div title="Code: 0xe855" class="the-icons span3"><i class="icon-compass"></i> <span class="i-name">icon-compass</span><span class="i-code">0xe855</span></div>
<div title="Code: 0xe857" class="the-icons span3"><i class="icon-doc"></i> <span class="i-name">icon-doc</span><span class="i-code">0xe857</span></div>
</div>
<div class="row">
<div title="Code: 0xe858" class="the-icons span3"><i class="icon-docs"></i> <span class="i-name">icon-docs</span><span class="i-code">0xe858</span></div>
<div title="Code: 0xe945" class="the-icons span3"><i class="icon-doc-text"></i> <span class="i-name">icon-doc-text</span><span class="i-code">0xe945</span></div>
<div title="Code: 0xe946" class="the-icons span3"><i class="icon-file"></i> <span class="i-name">icon-file</span><span class="i-code">0xe946</span></div>
<div title="Code: 0xe947" class="the-icons span3"><i class="icon-doc-text-inv"></i> <span class="i-name">icon-doc-text-inv</span><span class="i-code">0xe947</span></div>
</div>
<div class="row">
<div title="Code: 0xe85a" class="the-icons span3"><i class="icon-folder-empty"></i> <span class="i-name">icon-folder-empty</span><span class="i-code">0xe85a</span></div>
<div title="Code: 0xe85b" class="the-icons span3"><i class="icon-folder-open-empty"></i> <span class="i-name">icon-folder-open-empty</span><span class="i-code">0xe85b</span></div>
<div title="Code: 0xe85c" class="the-icons span3"><i class="icon-box"></i> <span class="i-name">icon-box</span><span class="i-code">0xe85c</span></div>
<div title="Code: 0xe85d" class="the-icons span3"><i class="icon-rss"></i> <span class="i-name">icon-rss</span><span class="i-code">0xe85d</span></div>
</div>
<div class="row">
<div title="Code: 0xe85e" class="the-icons span3"><i class="icon-rss-squared"></i> <span class="i-name">icon-rss-squared</span><span class="i-code">0xe85e</span></div>
<div title="Code: 0xe85f" class="the-icons span3"><i class="icon-phone"></i> <span class="i-name">icon-phone</span><span class="i-code">0xe85f</span></div>
<div title="Code: 0xe860" class="the-icons span3"><i class="icon-phone-squared"></i> <span class="i-name">icon-phone-squared</span><span class="i-code">0xe860</span></div>
<div title="Code: 0xe861" class="the-icons span3"><i class="icon-menu"></i> <span class="i-name">icon-menu</span><span class="i-code">0xe861</span></div>
</div>
<div class="row">
<div title="Code: 0xe862" class="the-icons span3"><i class="icon-cog"></i> <span class="i-name">icon-cog</span><span class="i-code">0xe862</span></div>
<div title="Code: 0xe863" class="the-icons span3"><i class="icon-cog-alt"></i> <span class="i-name">icon-cog-alt</span><span class="i-code">0xe863</span></div>
<div title="Code: 0xe864" class="the-icons span3"><i class="icon-wrench"></i> <span class="i-name">icon-wrench</span><span class="i-code">0xe864</span></div>
<div title="Code: 0xe865" class="the-icons span3"><i class="icon-basket"></i> <span class="i-name">icon-basket</span><span class="i-code">0xe865</span></div>
</div>
<div class="row">
<div title="Code: 0xe866" class="the-icons span3"><i class="icon-calendar"></i> <span class="i-name">icon-calendar</span><span class="i-code">0xe866</span></div>
<div title="Code: 0xe867" class="the-icons span3"><i class="icon-calendar-empty"></i> <span class="i-name">icon-calendar-empty</span><span class="i-code">0xe867</span></div>
<div title="Code: 0xe868" class="the-icons span3"><i class="icon-login"></i> <span class="i-name">icon-login</span><span class="i-code">0xe868</span></div>
<div title="Code: 0xe949" class="the-icons span3"><i class="icon-logout"></i> <span class="i-name">icon-logout</span><span class="i-code">0xe949</span></div>
</div>
<div class="row">
<div title="Code: 0xe94a" class="the-icons span3"><i class="icon-mic"></i> <span class="i-name">icon-mic</span><span class="i-code">0xe94a</span></div>
<div title="Code: 0xe94b" class="the-icons span3"><i class="icon-mute"></i> <span class="i-name">icon-mute</span><span class="i-code">0xe94b</span></div>
<div title="Code: 0xe94c" class="the-icons span3"><i class="icon-volume-off"></i> <span class="i-name">icon-volume-off</span><span class="i-code">0xe94c</span></div>
<div title="Code: 0xe869" class="the-icons span3"><i class="icon-volume-down"></i> <span class="i-name">icon-volume-down</span><span class="i-code">0xe869</span></div>
</div>
<div class="row">
<div title="Code: 0xe86a" class="the-icons span3"><i class="icon-volume-up"></i> <span class="i-name">icon-volume-up</span><span class="i-code">0xe86a</span></div>
<div title="Code: 0xe86b" class="the-icons span3"><i class="icon-headphones"></i> <span class="i-name">icon-headphones</span><span class="i-code">0xe86b</span></div>
<div title="Code: 0xe86c" class="the-icons span3"><i class="icon-clock"></i> <span class="i-name">icon-clock</span><span class="i-code">0xe86c</span></div>
<div title="Code: 0xe86d" class="the-icons span3"><i class="icon-lightbulb"></i> <span class="i-name">icon-lightbulb</span><span class="i-code">0xe86d</span></div>
</div>
<div class="row">
<div title="Code: 0xe86e" class="the-icons span3"><i class="icon-block"></i> <span class="i-name">icon-block</span><span class="i-code">0xe86e</span></div>
<div title="Code: 0xe870" class="the-icons span3"><i class="icon-resize-full-alt"></i> <span class="i-name">icon-resize-full-alt</span><span class="i-code">0xe870</span></div>
<div title="Code: 0xe871" class="the-icons span3"><i class="icon-resize-small"></i> <span class="i-name">icon-resize-small</span><span class="i-code">0xe871</span></div>
<div title="Code: 0xe872" class="the-icons span3"><i class="icon-resize-vertical"></i> <span class="i-name">icon-resize-vertical</span><span class="i-code">0xe872</span></div>
</div>
<div class="row">
<div title="Code: 0xe873" class="the-icons span3"><i class="icon-resize-horizontal"></i> <span class="i-name">icon-resize-horizontal</span><span class="i-code">0xe873</span></div>
<div title="Code: 0xe874" class="the-icons span3"><i class="icon-move"></i> <span class="i-name">icon-move</span><span class="i-code">0xe874</span></div>
<div title="Code: 0xe875" class="the-icons span3"><i class="icon-zoom-in"></i> <span class="i-name">icon-zoom-in</span><span class="i-code">0xe875</span></div>
<div title="Code: 0xe876" class="the-icons span3"><i class="icon-zoom-out"></i> <span class="i-name">icon-zoom-out</span><span class="i-code">0xe876</span></div>
</div>
<div class="row">
<div title="Code: 0xe877" class="the-icons span3"><i class="icon-down-circled2"></i> <span class="i-name">icon-down-circled2</span><span class="i-code">0xe877</span></div>
<div title="Code: 0xe878" class="the-icons span3"><i class="icon-up-circled2"></i> <span class="i-name">icon-up-circled2</span><span class="i-code">0xe878</span></div>
<div title="Code: 0xe94d" class="the-icons span3"><i class="icon-down-dir"></i> <span class="i-name">icon-down-dir</span><span class="i-code">0xe94d</span></div>
<div title="Code: 0xe94e" class="the-icons span3"><i class="icon-up-dir"></i> <span class="i-name">icon-up-dir</span><span class="i-code">0xe94e</span></div>
</div>
<div class="row">
<div title="Code: 0xe94f" class="the-icons span3"><i class="icon-left-dir"></i> <span class="i-name">icon-left-dir</span><span class="i-code">0xe94f</span></div>
<div title="Code: 0xe950" class="the-icons span3"><i class="icon-right-dir"></i> <span class="i-name">icon-right-dir</span><span class="i-code">0xe950</span></div>
<div title="Code: 0xe879" class="the-icons span3"><i class="icon-down-open"></i> <span class="i-name">icon-down-open</span><span class="i-code">0xe879</span></div>
<div title="Code: 0xe87a" class="the-icons span3"><i class="icon-left-open"></i> <span class="i-name">icon-left-open</span><span class="i-code">0xe87a</span></div>
</div>
<div class="row">
<div title="Code: 0xe87b" class="the-icons span3"><i class="icon-right-open"></i> <span class="i-name">icon-right-open</span><span class="i-code">0xe87b</span></div>
<div title="Code: 0xe87c" class="the-icons span3"><i class="icon-up-open"></i> <span class="i-name">icon-up-open</span><span class="i-code">0xe87c</span></div>
<div title="Code: 0xe87d" class="the-icons span3"><i class="icon-angle-left"></i> <span class="i-name">icon-angle-left</span><span class="i-code">0xe87d</span></div>
<div title="Code: 0xe87e" class="the-icons span3"><i class="icon-angle-right"></i> <span class="i-name">icon-angle-right</span><span class="i-code">0xe87e</span></div>
</div>
<div class="row">
<div title="Code: 0xe87f" class="the-icons span3"><i class="icon-angle-up"></i> <span class="i-name">icon-angle-up</span><span class="i-code">0xe87f</span></div>
<div title="Code: 0xe880" class="the-icons span3"><i class="icon-angle-down"></i> <span class="i-name">icon-angle-down</span><span class="i-code">0xe880</span></div>
<div title="Code: 0xe881" class="the-icons span3"><i class="icon-angle-circled-left"></i> <span class="i-name">icon-angle-circled-left</span><span class="i-code">0xe881</span></div>
<div title="Code: 0xe882" class="the-icons span3"><i class="icon-angle-circled-right"></i> <span class="i-name">icon-angle-circled-right</span><span class="i-code">0xe882</span></div>
</div>
<div class="row">
<div title="Code: 0xe883" class="the-icons span3"><i class="icon-angle-circled-up"></i> <span class="i-name">icon-angle-circled-up</span><span class="i-code">0xe883</span></div>
<div title="Code: 0xe884" class="the-icons span3"><i class="icon-angle-circled-down"></i> <span class="i-name">icon-angle-circled-down</span><span class="i-code">0xe884</span></div>
<div title="Code: 0xe885" class="the-icons span3"><i class="icon-angle-double-left"></i> <span class="i-name">icon-angle-double-left</span><span class="i-code">0xe885</span></div>
<div title="Code: 0xe886" class="the-icons span3"><i class="icon-angle-double-right"></i> <span class="i-name">icon-angle-double-right</span><span class="i-code">0xe886</span></div>
</div>
<div class="row">
<div title="Code: 0xe887" class="the-icons span3"><i class="icon-angle-double-up"></i> <span class="i-name">icon-angle-double-up</span><span class="i-code">0xe887</span></div>
<div title="Code: 0xe888" class="the-icons span3"><i class="icon-angle-double-down"></i> <span class="i-name">icon-angle-double-down</span><span class="i-code">0xe888</span></div>
<div title="Code: 0xe951" class="the-icons span3"><i class="icon-down"></i> <span class="i-name">icon-down</span><span class="i-code">0xe951</span></div>
<div title="Code: 0xe952" class="the-icons span3"><i class="icon-left"></i> <span class="i-name">icon-left</span><span class="i-code">0xe952</span></div>
</div>
<div class="row">
<div title="Code: 0xe953" class="the-icons span3"><i class="icon-right"></i> <span class="i-name">icon-right</span><span class="i-code">0xe953</span></div>
<div title="Code: 0xe954" class="the-icons span3"><i class="icon-up"></i> <span class="i-name">icon-up</span><span class="i-code">0xe954</span></div>
<div title="Code: 0xe889" class="the-icons span3"><i class="icon-down-big"></i> <span class="i-name">icon-down-big</span><span class="i-code">0xe889</span></div>
<div title="Code: 0xe802" class="the-icons span3"><i class="icon-music"></i> <span class="i-name">icon-music</span><span class="i-code">0xe802</span></div>
</div>
<div class="row">
<div title="Code: 0xe88b" class="the-icons span3"><i class="icon-right-big"></i> <span class="i-name">icon-right-big</span><span class="i-code">0xe88b</span></div>
<div title="Code: 0xe88c" class="the-icons span3"><i class="icon-up-big"></i> <span class="i-name">icon-up-big</span><span class="i-code">0xe88c</span></div>
<div title="Code: 0xe88d" class="the-icons span3"><i class="icon-right-hand"></i> <span class="i-name">icon-right-hand</span><span class="i-code">0xe88d</span></div>
<div title="Code: 0xe88e" class="the-icons span3"><i class="icon-left-hand"></i> <span class="i-name">icon-left-hand</span><span class="i-code">0xe88e</span></div>
</div>
<div class="row">
<div title="Code: 0xe88f" class="the-icons span3"><i class="icon-up-hand"></i> <span class="i-name">icon-up-hand</span><span class="i-code">0xe88f</span></div>
<div title="Code: 0xe890" class="the-icons span3"><i class="icon-down-hand"></i> <span class="i-name">icon-down-hand</span><span class="i-code">0xe890</span></div>
<div title="Code: 0xe891" class="the-icons span3"><i class="icon-left-circled"></i> <span class="i-name">icon-left-circled</span><span class="i-code">0xe891</span></div>
<div title="Code: 0xe892" class="the-icons span3"><i class="icon-right-circled"></i> <span class="i-name">icon-right-circled</span><span class="i-code">0xe892</span></div>
</div>
<div class="row">
<div title="Code: 0xe893" class="the-icons span3"><i class="icon-up-circled"></i> <span class="i-name">icon-up-circled</span><span class="i-code">0xe893</span></div>
<div title="Code: 0xe894" class="the-icons span3"><i class="icon-down-circled"></i> <span class="i-name">icon-down-circled</span><span class="i-code">0xe894</span></div>
<div title="Code: 0xe895" class="the-icons span3"><i class="icon-cw"></i> <span class="i-name">icon-cw</span><span class="i-code">0xe895</span></div>
<div title="Code: 0xe896" class="the-icons span3"><i class="icon-ccw"></i> <span class="i-name">icon-ccw</span><span class="i-code">0xe896</span></div>
</div>
<div class="row">
<div title="Code: 0xe897" class="the-icons span3"><i class="icon-refresh"></i> <span class="i-name">icon-refresh</span><span class="i-code">0xe897</span></div>
<div title="Code: 0xe898" class="the-icons span3"><i class="icon-level-up"></i> <span class="i-name">icon-level-up</span><span class="i-code">0xe898</span></div>
<div title="Code: 0xe955" class="the-icons span3"><i class="icon-level-down"></i> <span class="i-name">icon-level-down</span><span class="i-code">0xe955</span></div>
<div title="Code: 0xe956" class="the-icons span3"><i class="icon-shuffle"></i> <span class="i-name">icon-shuffle</span><span class="i-code">0xe956</span></div>
</div>
<div class="row">
<div title="Code: 0xe957" class="the-icons span3"><i class="icon-exchange"></i> <span class="i-name">icon-exchange</span><span class="i-code">0xe957</span></div>
<div title="Code: 0xe958" class="the-icons span3"><i class="icon-collapse"></i> <span class="i-name">icon-collapse</span><span class="i-code">0xe958</span></div>
<div title="Code: 0xe899" class="the-icons span3"><i class="icon-collapse-top"></i> <span class="i-name">icon-collapse-top</span><span class="i-code">0xe899</span></div>
<div title="Code: 0xe89a" class="the-icons span3"><i class="icon-expand"></i> <span class="i-name">icon-expand</span><span class="i-code">0xe89a</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e4" class="the-icons span3"><i class="icon-euro"></i> <span class="i-name">icon-euro</span><span class="i-code">0xe8e4</span></div>
<div title="Code: 0xe8e5" class="the-icons span3"><i class="icon-pound"></i> <span class="i-name">icon-pound</span><span class="i-code">0xe8e5</span></div>
<div title="Code: 0xe8e6" class="the-icons span3"><i class="icon-dollar"></i> <span class="i-name">icon-dollar</span><span class="i-code">0xe8e6</span></div>
<div title="Code: 0xe8e7" class="the-icons span3"><i class="icon-rupee"></i> <span class="i-name">icon-rupee</span><span class="i-code">0xe8e7</span></div>
<div title="Code: 0xe89b" class="the-icons span3"><i class="icon-play"></i> <span class="i-name">icon-play</span><span class="i-code">0xe89b</span></div>
<div title="Code: 0xe89c" class="the-icons span3"><i class="icon-play-circled"></i> <span class="i-name">icon-play-circled</span><span class="i-code">0xe89c</span></div>
<div title="Code: 0xe89d" class="the-icons span3"><i class="icon-play-circled2"></i> <span class="i-name">icon-play-circled2</span><span class="i-code">0xe89d</span></div>
<div title="Code: 0xe89e" class="the-icons span3"><i class="icon-stop"></i> <span class="i-name">icon-stop</span><span class="i-code">0xe89e</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e8" class="the-icons span3"><i class="icon-yen"></i> <span class="i-name">icon-yen</span><span class="i-code">0xe8e8</span></div>
<div title="Code: 0xe8e9" class="the-icons span3"><i class="icon-renminbi"></i> <span class="i-name">icon-renminbi</span><span class="i-code">0xe8e9</span></div>
<div title="Code: 0xe8ea" class="the-icons span3"><i class="icon-won"></i> <span class="i-name">icon-won</span><span class="i-code">0xe8ea</span></div>
<div title="Code: 0xe8eb" class="the-icons span3"><i class="icon-bitcoin"></i> <span class="i-name">icon-bitcoin</span><span class="i-code">0xe8eb</span></div>
<div title="Code: 0xe800" class="the-icons span3"><i class="icon-pause"></i> <span class="i-name">icon-pause</span><span class="i-code">0xe800</span></div>
<div title="Code: 0xe8a0" class="the-icons span3"><i class="icon-to-end"></i> <span class="i-name">icon-to-end</span><span class="i-code">0xe8a0</span></div>
<div title="Code: 0xe8a1" class="the-icons span3"><i class="icon-to-end-alt"></i> <span class="i-name">icon-to-end-alt</span><span class="i-code">0xe8a1</span></div>
<div title="Code: 0xe8a2" class="the-icons span3"><i class="icon-to-start"></i> <span class="i-name">icon-to-start</span><span class="i-code">0xe8a2</span></div>
</div>
<div class="row">
<div title="Code: 0xe946" class="the-icons span3"><i class="icon-file"></i> <span class="i-name">icon-file</span><span class="i-code">0xe946</span></div>
<div title="Code: 0xe947" class="the-icons span3"><i class="icon-doc-text-inv"></i> <span class="i-name">icon-doc-text-inv</span><span class="i-code">0xe947</span></div>
<div title="Code: 0xe8f1" class="the-icons span3"><i class="icon-sort-name-up"></i> <span class="i-name">icon-sort-name-up</span><span class="i-code">0xe8f1</span></div>
<div title="Code: 0xe8f2" class="the-icons span3"><i class="icon-sort-name-down"></i> <span class="i-name">icon-sort-name-down</span><span class="i-code">0xe8f2</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ef" class="the-icons span3"><i class="icon-sort-alt-up"></i> <span class="i-name">icon-sort-alt-up</span><span class="i-code">0xe8ef</span></div>
<div title="Code: 0xe8f0" class="the-icons span3"><i class="icon-sort-alt-down"></i> <span class="i-name">icon-sort-alt-down</span><span class="i-code">0xe8f0</span></div>
<div title="Code: 0xe8f3" class="the-icons span3"><i class="icon-sort-number-up"></i> <span class="i-name">icon-sort-number-up</span><span class="i-code">0xe8f3</span></div>
<div title="Code: 0xe8f4" class="the-icons span3"><i class="icon-sort-number-down"></i> <span class="i-name">icon-sort-number-down</span><span class="i-code">0xe8f4</span></div>
</div>
<div class="row">
<div title="Code: 0xe839" class="the-icons span3"><i class="icon-thumbs-up-alt"></i> <span class="i-name">icon-thumbs-up-alt</span><span class="i-code">0xe839</span></div>
<div title="Code: 0xe83a" class="the-icons span3"><i class="icon-thumbs-down-alt"></i> <span class="i-name">icon-thumbs-down-alt</span><span class="i-code">0xe83a</span></div>
<div title="Code: 0xe951" class="the-icons span3"><i class="icon-down"></i> <span class="i-name">icon-down</span><span class="i-code">0xe951</span></div>
<div title="Code: 0xe954" class="the-icons span3"><i class="icon-up"></i> <span class="i-name">icon-up</span><span class="i-code">0xe954</span></div>
</div>
<div class="row">
<div title="Code: 0xe953" class="the-icons span3"><i class="icon-right"></i> <span class="i-name">icon-right</span><span class="i-code">0xe953</span></div>
<div title="Code: 0xe952" class="the-icons span3"><i class="icon-left"></i> <span class="i-name">icon-left</span><span class="i-code">0xe952</span></div>
<div title="Code: 0xe80f" class="the-icons span3"><i class="icon-female"></i> <span class="i-name">icon-female</span><span class="i-code">0xe80f</span></div>
<div title="Code: 0xe80e" class="the-icons span3"><i class="icon-male"></i> <span class="i-name">icon-male</span><span class="i-code">0xe80e</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ac" class="the-icons span3"><i class="icon-sun"></i> <span class="i-name">icon-sun</span><span class="i-code">0xe8ac</span></div>
<div title="Code: 0xe8af" class="the-icons span3"><i class="icon-moon"></i> <span class="i-name">icon-moon</span><span class="i-code">0xe8af</span></div>
<div title="Code: 0xe85c" class="the-icons span3"><i class="icon-box"></i> <span class="i-name">icon-box</span><span class="i-code">0xe85c</span></div>
<div title="Code: 0xe8dc" class="the-icons span3"><i class="icon-bug"></i> <span class="i-name">icon-bug</span><span class="i-code">0xe8dc</span></div>
</div>
<div class="row">
<div title="Code: 0xe812" class="the-icons span3"><i class="icon-picture"></i> <span class="i-name">icon-picture</span><span class="i-code">0xe812</span></div>
<div title="Code: 0xe8ab" class="the-icons span3"><i class="icon-globe"></i> <span class="i-name">icon-globe</span><span class="i-code">0xe8ab</span></div>
<div title="Code: 0xe8b3" class="the-icons span3"><i class="icon-leaf"></i> <span class="i-name">icon-leaf</span><span class="i-code">0xe8b3</span></div>
<div title="Code: 0xe801" class="the-icons span3"><i class="icon-glass"></i> <span class="i-name">icon-glass</span><span class="i-code">0xe801</span></div>
</div>
<div class="row">
<div title="Code: 0xe8d4" class="the-icons span3"><i class="icon-gift"></i> <span class="i-name">icon-gift</span><span class="i-code">0xe8d4</span></div>
<div title="Code: 0xe811" class="the-icons span3"><i class="icon-videocam"></i> <span class="i-name">icon-videocam</span><span class="i-code">0xe811</span></div>
<div title="Code: 0xe86b" class="the-icons span3"><i class="icon-headphones"></i> <span class="i-name">icon-headphones</span><span class="i-code">0xe86b</span></div>
<div title="Code: 0xe810" class="the-icons span3"><i class="icon-video"></i> <span class="i-name">icon-video</span><span class="i-code">0xe810</span></div>
</div>
<div class="row">
<div title="Code: 0xe8a7" class="the-icons span3"><i class="icon-target"></i> <span class="i-name">icon-target</span><span class="i-code">0xe8a7</span></div>
<div title="Code: 0xe959" class="the-icons span3"><i class="icon-award"></i> <span class="i-name">icon-award</span><span class="i-code">0xe959</span></div>
<div title="Code: 0xe93f" class="the-icons span3"><i class="icon-thumbs-up"></i> <span class="i-name">icon-thumbs-up</span><span class="i-code">0xe93f</span></div>
<div title="Code: 0xe940" class="the-icons span3"><i class="icon-thumbs-down"></i> <span class="i-name">icon-thumbs-down</span><span class="i-code">0xe940</span></div>
</div>
<div class="row">
<div title="Code: 0xe80c" class="the-icons span3"><i class="icon-user"></i> <span class="i-name">icon-user</span><span class="i-code">0xe80c</span></div>
<div title="Code: 0xe80d" class="the-icons span3"><i class="icon-users"></i> <span class="i-name">icon-users</span><span class="i-code">0xe80d</span></div>
<div title="Code: 0xe965" class="the-icons span3"><i class="icon-credit-card"></i> <span class="i-name">icon-credit-card</span><span class="i-code">0xe965</span></div>
<div title="Code: 0xe8c7" class="the-icons span3"><i class="icon-briefcase"></i> <span class="i-name">icon-briefcase</span><span class="i-code">0xe8c7</span></div>
</div>
<div class="row">
<div title="Code: 0xe966" class="the-icons span3"><i class="icon-floppy"></i> <span class="i-name">icon-floppy</span><span class="i-code">0xe966</span></div>
<div title="Code: 0xe81e" class="the-icons span3"><i class="icon-folder-open"></i> <span class="i-name">icon-folder-open</span><span class="i-code">0xe81e</span></div>
<div title="Code: 0xe857" class="the-icons span3"><i class="icon-doc"></i> <span class="i-name">icon-doc</span><span class="i-code">0xe857</span></div>
<div title="Code: 0xe866" class="the-icons span3"><i class="icon-calendar"></i> <span class="i-name">icon-calendar</span><span class="i-code">0xe866</span></div>
</div>
<div class="row">
<div title="Code: 0xe90f" class="the-icons span3"><i class="icon-chart-bar"></i> <span class="i-name">icon-chart-bar</span><span class="i-code">0xe90f</span></div>
<div title="Code: 0xe831" class="the-icons span3"><i class="icon-pin"></i> <span class="i-name">icon-pin</span><span class="i-code">0xe831</span></div>
<div title="Code: 0xe82d" class="the-icons span3"><i class="icon-attach"></i> <span class="i-name">icon-attach</span><span class="i-code">0xe82d</span></div>
<div title="Code: 0xe8cc" class="the-icons span3"><i class="icon-book"></i> <span class="i-name">icon-book</span><span class="i-code">0xe8cc</span></div>
</div>
<div class="row">
<div title="Code: 0xe85f" class="the-icons span3"><i class="icon-phone"></i> <span class="i-name">icon-phone</span><span class="i-code">0xe85f</span></div>
<div title="Code: 0xe967" class="the-icons span3"><i class="icon-megaphone"></i> <span class="i-name">icon-megaphone</span><span class="i-code">0xe967</span></div>
<div title="Code: 0xe83c" class="the-icons span3"><i class="icon-upload"></i> <span class="i-name">icon-upload</span><span class="i-code">0xe83c</span></div>
<div title="Code: 0xe83b" class="the-icons span3"><i class="icon-download"></i> <span class="i-name">icon-download</span><span class="i-code">0xe83b</span></div>
<div title="Code: 0xe8a3" class="the-icons span3"><i class="icon-to-start-alt"></i> <span class="i-name">icon-to-start-alt</span><span class="i-code">0xe8a3</span></div>
<div title="Code: 0xe8a4" class="the-icons span3"><i class="icon-fast-fw"></i> <span class="i-name">icon-fast-fw</span><span class="i-code">0xe8a4</span></div>
<div title="Code: 0xe8a5" class="the-icons span3"><i class="icon-fast-bw"></i> <span class="i-name">icon-fast-bw</span><span class="i-code">0xe8a5</span></div>
<div title="Code: 0xe8a6" class="the-icons span3"><i class="icon-eject"></i> <span class="i-name">icon-eject</span><span class="i-code">0xe8a6</span></div>
</div>
<div class="row">
<div title="Code: 0xe8a8" class="the-icons span3"><i class="icon-signal"></i> <span class="i-name">icon-signal</span><span class="i-code">0xe8a8</span></div>
<div title="Code: 0xe813" class="the-icons span3"><i class="icon-camera"></i> <span class="i-name">icon-camera</span><span class="i-code">0xe813</span></div>
<div title="Code: 0xe956" class="the-icons span3"><i class="icon-shuffle"></i> <span class="i-name">icon-shuffle</span><span class="i-code">0xe956</span></div>
<div title="Code: 0xe94c" class="the-icons span3"><i class="icon-volume-off"></i> <span class="i-name">icon-volume-off</span><span class="i-code">0xe94c</span></div>
<div title="Code: 0xe959" class="the-icons span3"><i class="icon-award"></i> <span class="i-name">icon-award</span><span class="i-code">0xe959</span></div>
<div title="Code: 0xe95a" class="the-icons span3"><i class="icon-desktop"></i> <span class="i-name">icon-desktop</span><span class="i-code">0xe95a</span></div>
<div title="Code: 0xe90e" class="the-icons span3"><i class="icon-laptop"></i> <span class="i-name">icon-laptop</span><span class="i-code">0xe90e</span></div>
</div>
<div class="row">
<div title="Code: 0xe869" class="the-icons span3"><i class="icon-volume-down"></i> <span class="i-name">icon-volume-down</span><span class="i-code">0xe869</span></div>
<div title="Code: 0xe86a" class="the-icons span3"><i class="icon-volume-up"></i> <span class="i-name">icon-volume-up</span><span class="i-code">0xe86a</span></div>
<div title="Code: 0xe803" class="the-icons span3"><i class="icon-search"></i> <span class="i-name">icon-search</span><span class="i-code">0xe803</span></div>
<div title="Code: 0xe95c" class="the-icons span3"><i class="icon-tablet"></i> <span class="i-name">icon-tablet</span><span class="i-code">0xe95c</span></div>
<div title="Code: 0xe8a9" class="the-icons span3"><i class="icon-mobile"></i> <span class="i-name">icon-mobile</span><span class="i-code">0xe8a9</span></div>
<div title="Code: 0xe8aa" class="the-icons span3"><i class="icon-inbox"></i> <span class="i-name">icon-inbox</span><span class="i-code">0xe8aa</span></div>
<div title="Code: 0xe8ab" class="the-icons span3"><i class="icon-globe"></i> <span class="i-name">icon-globe</span><span class="i-code">0xe8ab</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ac" class="the-icons span3"><i class="icon-sun"></i> <span class="i-name">icon-sun</span><span class="i-code">0xe8ac</span></div>
<div title="Code: 0xe8ad" class="the-icons span3"><i class="icon-cloud"></i> <span class="i-name">icon-cloud</span><span class="i-code">0xe8ad</span></div>
<div title="Code: 0xe8ae" class="the-icons span3"><i class="icon-flash"></i> <span class="i-name">icon-flash</span><span class="i-code">0xe8ae</span></div>
<div title="Code: 0xe8af" class="the-icons span3"><i class="icon-moon"></i> <span class="i-name">icon-moon</span><span class="i-code">0xe8af</span></div>
</div>
<div class="row">
<div title="Code: 0xe8b0" class="the-icons span3"><i class="icon-umbrella"></i> <span class="i-name">icon-umbrella</span><span class="i-code">0xe8b0</span></div>
<div title="Code: 0xe8b1" class="the-icons span3"><i class="icon-flight"></i> <span class="i-name">icon-flight</span><span class="i-code">0xe8b1</span></div>
<div title="Code: 0xe8b2" class="the-icons span3"><i class="icon-fighter-jet"></i> <span class="i-name">icon-fighter-jet</span><span class="i-code">0xe8b2</span></div>
<div title="Code: 0xe8b3" class="the-icons span3"><i class="icon-leaf"></i> <span class="i-name">icon-leaf</span><span class="i-code">0xe8b3</span></div>
</div>
<div class="row">
<div title="Code: 0xe8b6" class="the-icons span3"><i class="icon-font"></i> <span class="i-name">icon-font</span><span class="i-code">0xe8b6</span></div>
<div title="Code: 0xe8b5" class="the-icons span3"><i class="icon-bold"></i> <span class="i-name">icon-bold</span><span class="i-code">0xe8b5</span></div>
<div title="Code: 0xe8b4" class="the-icons span3"><i class="icon-italic"></i> <span class="i-name">icon-italic</span><span class="i-code">0xe8b4</span></div>
<div title="Code: 0xe8b7" class="the-icons span3"><i class="icon-text-height"></i> <span class="i-name">icon-text-height</span><span class="i-code">0xe8b7</span></div>
</div>
<div class="row">
<div title="Code: 0xe8b8" class="the-icons span3"><i class="icon-text-width"></i> <span class="i-name">icon-text-width</span><span class="i-code">0xe8b8</span></div>
<div title="Code: 0xe95d" class="the-icons span3"><i class="icon-align-left"></i> <span class="i-name">icon-align-left</span><span class="i-code">0xe95d</span></div>
<div title="Code: 0xe95e" class="the-icons span3"><i class="icon-align-center"></i> <span class="i-name">icon-align-center</span><span class="i-code">0xe95e</span></div>
<div title="Code: 0xe95f" class="the-icons span3"><i class="icon-align-right"></i> <span class="i-name">icon-align-right</span><span class="i-code">0xe95f</span></div>
</div>
<div class="row">
<div title="Code: 0xe960" class="the-icons span3"><i class="icon-align-justify"></i> <span class="i-name">icon-align-justify</span><span class="i-code">0xe960</span></div>
<div title="Code: 0xe8b9" class="the-icons span3"><i class="icon-list"></i> <span class="i-name">icon-list</span><span class="i-code">0xe8b9</span></div>
<div title="Code: 0xe8ba" class="the-icons span3"><i class="icon-indent-left"></i> <span class="i-name">icon-indent-left</span><span class="i-code">0xe8ba</span></div>
<div title="Code: 0xe8bb" class="the-icons span3"><i class="icon-indent-right"></i> <span class="i-name">icon-indent-right</span><span class="i-code">0xe8bb</span></div>
</div>
<div class="row">
<div title="Code: 0xe8bc" class="the-icons span3"><i class="icon-list-bullet"></i> <span class="i-name">icon-list-bullet</span><span class="i-code">0xe8bc</span></div>
<div title="Code: 0xe8bd" class="the-icons span3"><i class="icon-list-numbered"></i> <span class="i-name">icon-list-numbered</span><span class="i-code">0xe8bd</span></div>
<div title="Code: 0xe8be" class="the-icons span3"><i class="icon-strike"></i> <span class="i-name">icon-strike</span><span class="i-code">0xe8be</span></div>
<div title="Code: 0xe8bf" class="the-icons span3"><i class="icon-underline"></i> <span class="i-name">icon-underline</span><span class="i-code">0xe8bf</span></div>
</div>
<div class="row">
<div title="Code: 0xe8c0" class="the-icons span3"><i class="icon-superscript"></i> <span class="i-name">icon-superscript</span><span class="i-code">0xe8c0</span></div>
<div title="Code: 0xe8c1" class="the-icons span3"><i class="icon-subscript"></i> <span class="i-name">icon-subscript</span><span class="i-code">0xe8c1</span></div>
<div title="Code: 0xe8c2" class="the-icons span3"><i class="icon-table"></i> <span class="i-name">icon-table</span><span class="i-code">0xe8c2</span></div>
<div title="Code: 0xe8c3" class="the-icons span3"><i class="icon-columns"></i> <span class="i-name">icon-columns</span><span class="i-code">0xe8c3</span></div>
</div>
<div class="row">
<div title="Code: 0xe8c4" class="the-icons span3"><i class="icon-crop"></i> <span class="i-name">icon-crop</span><span class="i-code">0xe8c4</span></div>
<div title="Code: 0xe8c5" class="the-icons span3"><i class="icon-scissors"></i> <span class="i-name">icon-scissors</span><span class="i-code">0xe8c5</span></div>
<div title="Code: 0xe8c6" class="the-icons span3"><i class="icon-paste"></i> <span class="i-name">icon-paste</span><span class="i-code">0xe8c6</span></div>
<div title="Code: 0xe8c7" class="the-icons span3"><i class="icon-briefcase"></i> <span class="i-name">icon-briefcase</span><span class="i-code">0xe8c7</span></div>
</div>
<div class="row">
<div title="Code: 0xe8c8" class="the-icons span3"><i class="icon-suitcase"></i> <span class="i-name">icon-suitcase</span><span class="i-code">0xe8c8</span></div>
<div title="Code: 0xe961" class="the-icons span3"><i class="icon-ellipsis"></i> <span class="i-name">icon-ellipsis</span><span class="i-code">0xe961</span></div>
<div title="Code: 0xe962" class="the-icons span3"><i class="icon-ellipsis-vert"></i> <span class="i-name">icon-ellipsis-vert</span><span class="i-code">0xe962</span></div>
<div title="Code: 0xe963" class="the-icons span3"><i class="icon-off"></i> <span class="i-name">icon-off</span><span class="i-code">0xe963</span></div>
</div>
<div class="row">
<div title="Code: 0xe964" class="the-icons span3"><i class="icon-road"></i> <span class="i-name">icon-road</span><span class="i-code">0xe964</span></div>
<div title="Code: 0xe8c9" class="the-icons span3"><i class="icon-list-alt"></i> <span class="i-name">icon-list-alt</span><span class="i-code">0xe8c9</span></div>
<div title="Code: 0xe8ca" class="the-icons span3"><i class="icon-qrcode"></i> <span class="i-name">icon-qrcode</span><span class="i-code">0xe8ca</span></div>
<div title="Code: 0xe8cb" class="the-icons span3"><i class="icon-barcode"></i> <span class="i-name">icon-barcode</span><span class="i-code">0xe8cb</span></div>
</div>
<div class="row">
<div title="Code: 0xe8cc" class="the-icons span3"><i class="icon-book"></i> <span class="i-name">icon-book</span><span class="i-code">0xe8cc</span></div>
<div title="Code: 0xe8cd" class="the-icons span3"><i class="icon-ajust"></i> <span class="i-name">icon-ajust</span><span class="i-code">0xe8cd</span></div>
<div title="Code: 0xe8ce" class="the-icons span3"><i class="icon-tint"></i> <span class="i-name">icon-tint</span><span class="i-code">0xe8ce</span></div>
<div title="Code: 0xe8cf" class="the-icons span3"><i class="icon-check"></i> <span class="i-name">icon-check</span><span class="i-code">0xe8cf</span></div>
</div>
<div class="row">
<div title="Code: 0xe8d0" class="the-icons span3"><i class="icon-check-empty"></i> <span class="i-name">icon-check-empty</span><span class="i-code">0xe8d0</span></div>
<div title="Code: 0xe8d1" class="the-icons span3"><i class="icon-circle"></i> <span class="i-name">icon-circle</span><span class="i-code">0xe8d1</span></div>
<div title="Code: 0xe8d2" class="the-icons span3"><i class="icon-circle-empty"></i> <span class="i-name">icon-circle-empty</span><span class="i-code">0xe8d2</span></div>
<div title="Code: 0xe8d3" class="the-icons span3"><i class="icon-asterisk"></i> <span class="i-name">icon-asterisk</span><span class="i-code">0xe8d3</span></div>
</div>
<div class="row">
<div title="Code: 0xe8d4" class="the-icons span3"><i class="icon-gift"></i> <span class="i-name">icon-gift</span><span class="i-code">0xe8d4</span></div>
<div title="Code: 0xe8d5" class="the-icons span3"><i class="icon-fire"></i> <span class="i-name">icon-fire</span><span class="i-code">0xe8d5</span></div>
<div title="Code: 0xe8d6" class="the-icons span3"><i class="icon-magnet"></i> <span class="i-name">icon-magnet</span><span class="i-code">0xe8d6</span></div>
<div title="Code: 0xe8d8" class="the-icons span3"><i class="icon-ticket"></i> <span class="i-name">icon-ticket</span><span class="i-code">0xe8d8</span></div>
</div>
<div class="row">
<div title="Code: 0xe965" class="the-icons span3"><i class="icon-credit-card"></i> <span class="i-name">icon-credit-card</span><span class="i-code">0xe965</span></div>
<div title="Code: 0xe966" class="the-icons span3"><i class="icon-floppy"></i> <span class="i-name">icon-floppy</span><span class="i-code">0xe966</span></div>
<div title="Code: 0xe967" class="the-icons span3"><i class="icon-megaphone"></i> <span class="i-name">icon-megaphone</span><span class="i-code">0xe967</span></div>
<div title="Code: 0xe8d9" class="the-icons span3"><i class="icon-key"></i> <span class="i-name">icon-key</span><span class="i-code">0xe8d9</span></div>
</div>
<div class="row">
<div title="Code: 0xe82e" class="the-icons span3"><i class="icon-lock"></i> <span class="i-name">icon-lock</span><span class="i-code">0xe82e</span></div>
<div title="Code: 0xe82f" class="the-icons span3"><i class="icon-lock-open"></i> <span class="i-name">icon-lock-open</span><span class="i-code">0xe82f</span></div>
<div title="Code: 0xe84e" class="the-icons span3"><i class="icon-bell"></i> <span class="i-name">icon-bell</span><span class="i-code">0xe84e</span></div>
<div title="Code: 0xe836" class="the-icons span3"><i class="icon-bookmark"></i> <span class="i-name">icon-bookmark</span><span class="i-code">0xe836</span></div>
<div title="Code: 0xe8da" class="the-icons span3"><i class="icon-fork"></i> <span class="i-name">icon-fork</span><span class="i-code">0xe8da</span></div>
<div title="Code: 0xe8db" class="the-icons span3"><i class="icon-rocket"></i> <span class="i-name">icon-rocket</span><span class="i-code">0xe8db</span></div>
<div title="Code: 0xe8dc" class="the-icons span3"><i class="icon-bug"></i> <span class="i-name">icon-bug</span><span class="i-code">0xe8dc</span></div>
<div title="Code: 0xe8dd" class="the-icons span3"><i class="icon-certificate"></i> <span class="i-name">icon-certificate</span><span class="i-code">0xe8dd</span></div>
</div>
<div class="row">
<div title="Code: 0xe8d5" class="the-icons span3"><i class="icon-fire"></i> <span class="i-name">icon-fire</span><span class="i-code">0xe8d5</span></div>
<div title="Code: 0xe864" class="the-icons span3"><i class="icon-wrench"></i> <span class="i-name">icon-wrench</span><span class="i-code">0xe864</span></div>
<div title="Code: 0xe8f5" class="the-icons span3"><i class="icon-hammer"></i> <span class="i-name">icon-hammer</span><span class="i-code">0xe8f5</span></div>
<div title="Code: 0xe86c" class="the-icons span3"><i class="icon-clock"></i> <span class="i-name">icon-clock</span><span class="i-code">0xe86c</span></div>
<div title="Code: 0xe8de" class="the-icons span3"><i class="icon-tasks"></i> <span class="i-name">icon-tasks</span><span class="i-code">0xe8de</span></div>
<div title="Code: 0xe8df" class="the-icons span3"><i class="icon-filter"></i> <span class="i-name">icon-filter</span><span class="i-code">0xe8df</span></div>
<div title="Code: 0xe8e0" class="the-icons span3"><i class="icon-beaker"></i> <span class="i-name">icon-beaker</span><span class="i-code">0xe8e0</span></div>
<div title="Code: 0xe8e1" class="the-icons span3"><i class="icon-magic"></i> <span class="i-name">icon-magic</span><span class="i-code">0xe8e1</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e2" class="the-icons span3"><i class="icon-truck"></i> <span class="i-name">icon-truck</span><span class="i-code">0xe8e2</span></div>
<div title="Code: 0xe86e" class="the-icons span3"><i class="icon-block"></i> <span class="i-name">icon-block</span><span class="i-code">0xe86e</span></div>
<div title="Code: 0xe8e3" class="the-icons span3"><i class="icon-money"></i> <span class="i-name">icon-money</span><span class="i-code">0xe8e3</span></div>
<div title="Code: 0xe8e4" class="the-icons span3"><i class="icon-euro"></i> <span class="i-name">icon-euro</span><span class="i-code">0xe8e4</span></div>
<div title="Code: 0xe8e5" class="the-icons span3"><i class="icon-pound"></i> <span class="i-name">icon-pound</span><span class="i-code">0xe8e5</span></div>
</div>
<div class="row">
<div title="Code: 0xe8e6" class="the-icons span3"><i class="icon-dollar"></i> <span class="i-name">icon-dollar</span><span class="i-code">0xe8e6</span></div>
<div title="Code: 0xe8e7" class="the-icons span3"><i class="icon-rupee"></i> <span class="i-name">icon-rupee</span><span class="i-code">0xe8e7</span></div>
<div title="Code: 0xe8e8" class="the-icons span3"><i class="icon-yen"></i> <span class="i-name">icon-yen</span><span class="i-code">0xe8e8</span></div>
<div title="Code: 0xe8e9" class="the-icons span3"><i class="icon-renminbi"></i> <span class="i-name">icon-renminbi</span><span class="i-code">0xe8e9</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ea" class="the-icons span3"><i class="icon-won"></i> <span class="i-name">icon-won</span><span class="i-code">0xe8ea</span></div>
<div title="Code: 0xe8eb" class="the-icons span3"><i class="icon-bitcoin"></i> <span class="i-name">icon-bitcoin</span><span class="i-code">0xe8eb</span></div>
<div title="Code: 0xe8ec" class="the-icons span3"><i class="icon-sort"></i> <span class="i-name">icon-sort</span><span class="i-code">0xe8ec</span></div>
<div title="Code: 0xe8ed" class="the-icons span3"><i class="icon-sort-down"></i> <span class="i-name">icon-sort-down</span><span class="i-code">0xe8ed</span></div>
</div>
<div class="row">
<div title="Code: 0xe8ee" class="the-icons span3"><i class="icon-sort-up"></i> <span class="i-name">icon-sort-up</span><span class="i-code">0xe8ee</span></div>
<div title="Code: 0xe8ef" class="the-icons span3"><i class="icon-sort-alt-up"></i> <span class="i-name">icon-sort-alt-up</span><span class="i-code">0xe8ef</span></div>
<div title="Code: 0xe8f0" class="the-icons span3"><i class="icon-sort-alt-down"></i> <span class="i-name">icon-sort-alt-down</span><span class="i-code">0xe8f0</span></div>
<div title="Code: 0xe8f1" class="the-icons span3"><i class="icon-sort-name-up"></i> <span class="i-name">icon-sort-name-up</span><span class="i-code">0xe8f1</span></div>
</div>
<div class="row">
<div title="Code: 0xe8f2" class="the-icons span3"><i class="icon-sort-name-down"></i> <span class="i-name">icon-sort-name-down</span><span class="i-code">0xe8f2</span></div>
<div title="Code: 0xe8f3" class="the-icons span3"><i class="icon-sort-number-up"></i> <span class="i-name">icon-sort-number-up</span><span class="i-code">0xe8f3</span></div>
<div title="Code: 0xe8f4" class="the-icons span3"><i class="icon-sort-number-down"></i> <span class="i-name">icon-sort-number-down</span><span class="i-code">0xe8f4</span></div>
<div title="Code: 0xe8f5" class="the-icons span3"><i class="icon-hammer"></i> <span class="i-name">icon-hammer</span><span class="i-code">0xe8f5</span></div>
</div>
<div class="row">
<div title="Code: 0xe8f6" class="the-icons span3"><i class="icon-gauge"></i> <span class="i-name">icon-gauge</span><span class="i-code">0xe8f6</span></div>
<div title="Code: 0xe8f7" class="the-icons span3"><i class="icon-sitemap"></i> <span class="i-name">icon-sitemap</span><span class="i-code">0xe8f7</span></div>
<div title="Code: 0xe8f8" class="the-icons span3"><i class="icon-spinner"></i> <span class="i-name">icon-spinner</span><span class="i-code">0xe8f8</span></div>
<div title="Code: 0xe8f9" class="the-icons span3"><i class="icon-coffee"></i> <span class="i-name">icon-coffee</span><span class="i-code">0xe8f9</span></div>
</div>
<div class="row">
<div title="Code: 0xe8fa" class="the-icons span3"><i class="icon-food"></i> <span class="i-name">icon-food</span><span class="i-code">0xe8fa</span></div>
<div title="Code: 0xe8fb" class="the-icons span3"><i class="icon-beer"></i> <span class="i-name">icon-beer</span><span class="i-code">0xe8fb</span></div>
<div title="Code: 0xe8fc" class="the-icons span3"><i class="icon-user-md"></i> <span class="i-name">icon-user-md</span><span class="i-code">0xe8fc</span></div>
<div title="Code: 0xe8fd" class="the-icons span3"><i class="icon-stethoscope"></i> <span class="i-name">icon-stethoscope</span><span class="i-code">0xe8fd</span></div>
</div>
<div class="row">
<div title="Code: 0xe8fe" class="the-icons span3"><i class="icon-ambulance"></i> <span class="i-name">icon-ambulance</span><span class="i-code">0xe8fe</span></div>
<div title="Code: 0xe8ff" class="the-icons span3"><i class="icon-medkit"></i> <span class="i-name">icon-medkit</span><span class="i-code">0xe8ff</span></div>
<div title="Code: 0xe900" class="the-icons span3"><i class="icon-h-sigh"></i> <span class="i-name">icon-h-sigh</span><span class="i-code">0xe900</span></div>
<div title="Code: 0xe901" class="the-icons span3"><i class="icon-hospital"></i> <span class="i-name">icon-hospital</span><span class="i-code">0xe901</span></div>
</div>
<div class="row">
<div title="Code: 0xe902" class="the-icons span3"><i class="icon-building"></i> <span class="i-name">icon-building</span><span class="i-code">0xe902</span></div>
<div title="Code: 0xe903" class="the-icons span3"><i class="icon-smile"></i> <span class="i-name">icon-smile</span><span class="i-code">0xe903</span></div>
<div title="Code: 0xe904" class="the-icons span3"><i class="icon-frown"></i> <span class="i-name">icon-frown</span><span class="i-code">0xe904</span></div>
<div title="Code: 0xe905" class="the-icons span3"><i class="icon-meh"></i> <span class="i-name">icon-meh</span><span class="i-code">0xe905</span></div>
</div>
<div class="row">
<div title="Code: 0xe906" class="the-icons span3"><i class="icon-anchor"></i> <span class="i-name">icon-anchor</span><span class="i-code">0xe906</span></div>
<div title="Code: 0xe907" class="the-icons span3"><i class="icon-terminal"></i> <span class="i-name">icon-terminal</span><span class="i-code">0xe907</span></div>
<div title="Code: 0xe908" class="the-icons span3"><i class="icon-eraser"></i> <span class="i-name">icon-eraser</span><span class="i-code">0xe908</span></div>
<div title="Code: 0xe909" class="the-icons span3"><i class="icon-puzzle"></i> <span class="i-name">icon-puzzle</span><span class="i-code">0xe909</span></div>
</div>
<div class="row">
<div title="Code: 0xe90a" class="the-icons span3"><i class="icon-shield"></i> <span class="i-name">icon-shield</span><span class="i-code">0xe90a</span></div>
<div title="Code: 0xe90b" class="the-icons span3"><i class="icon-extinguisher"></i> <span class="i-name">icon-extinguisher</span><span class="i-code">0xe90b</span></div>
<div title="Code: 0xe90c" class="the-icons span3"><i class="icon-bullseye"></i> <span class="i-name">icon-bullseye</span><span class="i-code">0xe90c</span></div>
<div title="Code: 0xe90d" class="the-icons span3"><i class="icon-resize-full"></i> <span class="i-name">icon-resize-full</span><span class="i-code">0xe90d</span></div>
</div>
<div class="row">
<div title="Code: 0xe8a7" class="the-icons span3"><i class="icon-target"></i> <span class="i-name">icon-target</span><span class="i-code">0xe8a7</span></div>
<div title="Code: 0xe829" class="the-icons span3"><i class="icon-layers"></i> <span class="i-name">icon-layers</span><span class="i-code">0xe829</span></div>
<div title="Code: 0xe90f" class="the-icons span3"><i class="icon-chart-bar"></i> <span class="i-name">icon-chart-bar</span><span class="i-code">0xe90f</span></div>
<div title="Code: 0xe912" class="the-icons span3"><i class="icon-share"></i> <span class="i-name">icon-share</span><span class="i-code">0xe912</span></div>
</div>
<div class="row">
<div title="Code: 0xe841" class="the-icons span3"><i class="icon-hdd"></i> <span class="i-name">icon-hdd</span><span class="i-code">0xe841</span></div>
<div title="Code: 0xe89f" class="the-icons span3"><i class="icon-trash"></i> <span class="i-name">icon-trash</span><span class="i-code">0xe89f</span></div>
<div title="Code: 0xe8d7" class="the-icons span3"><i class="icon-folder"></i> <span class="i-name">icon-folder</span><span class="i-code">0xe8d7</span></div>
<div title="Code: 0xe844" class="the-icons span3"><i class="icon-code"></i> <span class="i-name">icon-code</span><span class="i-code">0xe844</span></div>
</div>
<div class="row">
<div title="Code: 0xe81e" class="the-icons span3"><i class="icon-folder-open"></i> <span class="i-name">icon-folder-open</span><span class="i-code">0xe81e</span></div>
<div title="Code: 0xe88a" class="the-icons span3"><i class="icon-left-big"></i> <span class="i-name">icon-left-big</span><span class="i-code">0xe88a</span></div>
</div>
</div>
<div class="container footer">Generated by <a href="http://fontello.com">fontello.com</a></div>

View File

@ -1,329 +1,329 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Copyright (C) 2012 by original authors @ fontello.com</metadata>
<metadata>Copyright (C) 2013 by original authors @ fontello.com</metadata>
<defs>
<font id="fontello" horiz-adv-x="1000" >
<font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
<missing-glyph horiz-adv-x="1000" />
<glyph glyph-name="plus" unicode="&#xe81f;" d="M786 439l0-107q0-22-16-38t-38-16l-232 0 0-232q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 232-232 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l232 0 0 232q0 22 16 38t38 16l107 0q22 0 38-16t16-38l0-232 232 0q22 0 38-16t16-38z" horiz-adv-x="785.714" />
<glyph glyph-name="minus" unicode="&#xe823;" d="M786 439l0-107q0-22-16-38t-38-16l-679 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l679 0q22 0 38-16t16-38z" horiz-adv-x="785.714" />
<glyph glyph-name="left-big" unicode="&#xe88a;" d="M857 350l0-71q0-30-18-50t-47-21l-393 0 163-164q21-20 21-50t-21-50l-42-42q-21-21-50-21t-51 21l-363 364q-21 21-21 50t21 51l363 363q21 21 51 21 29 0 50-21l42-41q21-21 21-51t-21-51l-163-163 393 0q29 0 47-21t18-50z" horiz-adv-x="857.143" />
<glyph glyph-name="up-big" unicode="&#xe88c;" d="M899 308q0-28-21-50l-42-42q-21-21-51-21t-50 21l-164 163 0-393q0-29-21-47t-50-18l-71 0q-30 0-50 18t-21 47l0 393-164-163q-20-21-50-21t-50 21l-42 42q-21 21-21 50 0 30 21 51l363 363q20 21 50 21t51-21l363-363q21-22 21-51z" horiz-adv-x="928.571" />
<glyph glyph-name="right-big" unicode="&#xe88b;" d="M821 314q0-30-21-51l-363-363q-22-21-51-21-28 0-50 21l-42 42q-21 21-21 51t21 51l163 163-393 0q-29 0-47 21t-18 50l0 71q0 30 18 50t47 21l393 0-163 164q-21 20-21 50t21 50l42 42q21 21 50 21 30 0 51-21l363-363q21-20 21-50z" horiz-adv-x="857.143" />
<glyph glyph-name="down-big" unicode="&#xe889;" d="M899 386q0-30-21-50l-363-364q-22-21-51-21-30 0-50 21l-363 364q-21 20-21 50t21 51l41 42q22 21 51 21 30 0 50-21l164-164 0 393q0 29 21 50t50 21l71 0q29 0 50-21t21-50l0-393 164 164q21 21 50 21t51-21l42-42q21-22 21-51z" horiz-adv-x="928.571" />
<glyph glyph-name="home" unicode="&#xe93c;" d="M786 296l0-268q0-15-11-25t-25-11l-214 0 0 214-143 0 0-214-214 0q-15 0-25 11t-11 25l0 268q0 1 0 2t0 2l321 264 321-264q1-1 1-3z m124 39l-35-41q-4-5-12-6l-2 0q-7 0-12 4l-386 322-386-322q-7-4-13-4-7 1-12 6l-35 41q-4 6-4 13t6 12l401 334q18 15 42 15t42-15l136-114 0 109q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-228 122-102q6-4 6-12t-4-13z" horiz-adv-x="928.571" />
<glyph glyph-name="pause" unicode="&#xe800;" d="M857 743l0-786q0-15-11-25t-25-11l-286 0q-15 0-25 11t-11 25l0 786q0 15 11 25t25 11l286 0q15 0 25-11t11-25z m-500 0l0-786q0-15-11-25t-25-11l-286 0q-15 0-25 11t-11 25l0 786q0 15 11 25t25 11l286 0q15 0 25-11t11-25z" horiz-adv-x="857.143" />
<glyph glyph-name="fast-fw" unicode="&#xe8a4;" d="M25-71q-11-11-18-7t-7 18l0 821q0 15 7 18t18-7l396-396q4-4 7-11l0 396q0 15 7 18t18-7l396-396q11-11 11-25t-11-25l-396-396q-11-11-18-7t-7 18l0 396q-3-6-7-11z" horiz-adv-x="928.571" />
<glyph glyph-name="fast-bw" unicode="&#xe8a5;" d="M903 771q11 11 18 7t7-18l0-821q0-15-7-18t-18 7l-396 396q-4 5-7 11l0-396q0-15-7-18t-18 7l-396 396q-11 11-11 25t11 25l396 396q11 11 18 7t7-18l0-396q3 6 7 11z" horiz-adv-x="928.571" />
<glyph glyph-name="to-end" unicode="&#xe8a0;" d="M25-71q-11-11-18-7t-7 18l0 821q0 15 7 18t18-7l396-396q4-4 7-11l0 378q0 15 11 25t25 11l71 0q15 0 25-11t11-25l0-786q0-15-11-25t-25-11l-71 0q-15 0-25 11t-11 25l0 378q-3-6-7-11z" horiz-adv-x="571.429" />
<glyph glyph-name="to-start" unicode="&#xe8a2;" d="M546 771q11 11 18 7t7-18l0-821q0-15-7-18t-18 7l-396 396q-5 5-7 11l0-378q0-15-11-25t-25-11l-71 0q-15 0-25 11t-11 25l0 786q0 15 11 25t25 11l71 0q15 0 25-11t11-25l0-378q2 6 7 11z" horiz-adv-x="571.429" />
<glyph glyph-name="stop" unicode="&#xe89e;" d="M857 743l0-786q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 786q0 15 11 25t25 11l786 0q15 0 25-11t11-25z" horiz-adv-x="857.143" />
<glyph glyph-name="up-dir" unicode="&#xe94e;" d="M571 171q0-15-11-25t-25-11l-500 0q-15 0-25 11t-11 25 11 25l250 250q11 11 25 11t25-11l250-250q11-11 11-25z" horiz-adv-x="571.429" />
<glyph glyph-name="play" unicode="&#xe89b;" d="M772 333l-741-412q-13-7-22-2t-9 20l0 821q0 15 9 20t22-2l741-412q13-7 13-17t-13-17z" horiz-adv-x="785.714" />
<glyph glyph-name="right-dir" unicode="&#xe950;" d="M321 350q0-15-11-25l-250-250q-11-11-25-11t-25 11-11 25l0 500q0 15 11 25t25 11 25-11l250-250q11-11 11-25z" horiz-adv-x="357.143" />
<glyph glyph-name="down-dir" unicode="&#xe94d;" d="M571 457q0-15-11-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25 25 11l500 0q15 0 25-11t11-25z" horiz-adv-x="571.429" />
<glyph glyph-name="left-dir" unicode="&#xe94f;" d="M357 600l0-500q0-15-11-25t-25-11-25 11l-250 250q-11 11-11 25t11 25l250 250q11 11 25 11t25-11 11-25z" horiz-adv-x="357.143" />
<glyph glyph-name="cloud" unicode="&#xe8ad;" d="M1071 207q0-89-63-151t-151-63l-607 0q-103 0-177 73t-73 177q0 74 40 135t104 91q-1 16-1 24 0 118 84 202t202 84q88 0 160-49t105-128q39 35 93 35 59 0 101-42t42-101q0-42-23-77 72-17 119-75t47-134z" horiz-adv-x="1071.429" />
<glyph glyph-name="umbrella" unicode="&#xe8b0;" d="M500 388l0-324q0-58-42-100t-100-42-100 42-42 100q0 15 11 25t25 11 25-11 11-25q0-28 22-50t50-22 50 22 22 50l0 324q18 6 36 6t36-6z m429-15q0-7-5-13t-13-5q-6 0-13 6-27 26-52 39t-57 13q-38 0-71-21t-57-54q-4-6-10-16t-8-13q-6-9-16-9t-16 9q-2 3-8 13t-10 16q-24 33-57 54t-71 21-71-21-57-54q-4-6-10-16t-8-13q-6-9-16-9-9 0-16 9-2 3-8 13t-10 16q-24 33-57 54t-71 21q-32 0-57-13t-52-39q-7-6-13-6-7 0-13 5t-5 13q0 3 1 4 25 102 96 178t166 114 201 38q78 0 153-22t138-63 109-104 64-140q1-1 1-4z m-429 406l0-55q-23 1-36 1t-36-1l0 55q0 15 11 25t25 11 25-11 11-25z" horiz-adv-x="928.571" />
<glyph glyph-name="star" unicode="&#xe808;" d="M929 489q0-12-15-27l-203-198 48-279q1-4 1-11 0-12-6-20t-17-8q-11 0-22 7l-251 132-251-132q-12-7-22-7-12 0-18 8t-6 20q0 3 1 11l48 279-203 198q-14 15-14 27 0 21 31 26l280 41 126 254q11 23 27 23t27-23l126-254 280-41q31-5 31-26z" horiz-adv-x="928.571" />
<glyph glyph-name="star-empty" unicode="&#xe809;" d="M634 290l171 166-235 35-105 213-105-213-235-35 171-166-41-235 211 111 210-111z m294 199q0-12-15-27l-203-198 48-279q1-4 1-11 0-28-23-28-11 0-22 7l-251 132-251-132q-12-7-22-7-12 0-18 8t-6 20q0 3 1 11l48 279-203 198q-14 15-14 27 0 21 31 26l280 41 126 254q11 23 27 23t27-23l126-254 280-41q31-5 31-26z" horiz-adv-x="928.571" />
<glyph glyph-name="check" unicode="&#xe8cf;" d="M786 331l0-177q0-66-47-114t-114-47l-464 0q-66 0-114 47t-47 114l0 464q0 66 47 114t114 47l464 0q35 0 65-14 8-4 10-13t-5-16l-27-27q-6-6-13-6-2 0-5 1-13 3-25 3l-464 0q-37 0-63-26t-26-63l0-464q0-37 26-63t63-26l464 0q37 0 63 26t26 63l0 142q0 7 5 12l36 36q6 6 13 6 3 0 7-2 11-4 11-16z m129 273l-454-454q-13-13-32-13t-32 13l-240 240q-13 13-13 32t13 32l61 61q13 13 32 13t32-13l147-147 361 361q13 13 32 13t32-13l61-61q13-13 13-32t-13-32z" horiz-adv-x="928.571" />
<glyph glyph-name="left-hand" unicode="&#xe88e;" d="M768 64l18 0 0 357-18 0q-20 0-38 7t-35 21-28 26-27 30q-1 2-2 3t-2 3-3 3q-40 45-62 81-8 12-21 38-1 2-6 13t-10 20-11 20-12 17-10 6q-40 0-64-17t-25-54q0-24 8-47t18-38 18-31 8-27l-321 0q-28 0-50-21t-22-50q0-29 21-50t50-21l185 0q-8-9-14-27t-6-31q0-39 30-66-10-18-10-39t10-41 27-29q-2-13-2-31 0-47 27-70t76-23q47 0 102 18t108 36 93 18z m161 36q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 321l0-357q0-30-21-50t-50-21l-161 0q-33 0-124-33-106-39-177-39-79 0-128 43t-49 121l1 3q-34 42-34 99 0 12 2 24-18 32-21 66l-94 0q-59 0-101 42t-42 101q0 57 42 100t100 42l209 0q-12 33-12 71 0 68 45 105t115 37q21 0 39-10t31-28 23-35 21-40 18-35q20-31 56-72 1-2 8-9t11-12 11-12 13-13 13-10 13-8 12-3l161 0q30 0 50-21t21-50z" horiz-adv-x="1000" />
<glyph glyph-name="up-hand" unicode="&#xe88f;" d="M714-43q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 426q0 105-93 105-15 0-31-3-9 17-29 27t-41 10-39-10q-28 30-66 30-14 0-31-6t-27-14l0 185q0 29-21 50t-50 21q-28 0-50-22t-21-50l0-321q-11 0-27 8t-31 18-38 18-47 8q-37 0-54-25t-17-64q0-13 78-50 25-13 36-21 36-22 81-62t59-56q32-39 32-78l0-18 357 0 0 18q0 40 18 93t36 108 18 100z m71 3q0-74-39-180-33-92-33-124l0-161q0-30-21-50t-50-21l-357 0q-30 0-50 21t-21 50l0 161q0 6-3 12t-8 13-10 13-13 13-12 11-12 11-9 8q-41 36-72 56-12 7-35 18t-40 21-35 23-28 31-10 39q0 70 37 115t105 45q38 0 71-12l0 209q0 58 42 100t100 42q59 0 101-42t42-101l0-94q35-2 66-21 12 2 24 2 56 0 99-33 78 1 122-47t45-127z" horiz-adv-x="857.143" />
<glyph glyph-name="right-hand" unicode="&#xe88d;" d="M143 100q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m786 321q0 28-22 50t-50 21l-321 0q0 11 8 27t18 31 18 38 8 47q0 37-25 54t-64 17q-13 0-50-78-13-25-21-36-22-36-62-81t-56-59q-39-32-78-32l-18 0 0-357 18 0q40 0 93-18t108-36 100-18q105 0 105 93 0 15-3 31 17 9 27 29t10 41-10 39q30 28 30 66 0 14-6 31t-14 27l185 0q29 0 50 21t21 50z m71 1q0-59-42-101t-101-42l-94 0q-2-35-21-66 2-12 2-24 0-56-33-99 1-78-47-122t-127-45q-74 0-180 39-92 33-124 33l-161 0q-30 0-50 21t-21 50l0 357q0 30 21 50t50 21l161 0q6 0 12 3t13 8 13 10 13 13 11 12 11 12 8 9q36 41 56 72 7 12 18 35t21 40 23 35 31 28 39 10q70 0 115-37t45-105q0-38-12-71l209 0q58 0 100-42t42-100z" horiz-adv-x="1000" />
<glyph glyph-name="down-hand" unicode="&#xe890;" d="M786 314q0 47-18 102t-36 108-18 93l0 18-357 0 0-18q0-20-7-38t-21-35-26-28-30-27q-5-4-8-7-45-40-81-62-12-8-38-21-2-1-13-6t-20-10-20-11-17-12-6-10q0-40 17-64t54-25q24 0 47 8t38 18 31 18 27 8l0-321q0-28 21-50t50-22q29 0 50 21t21 50l0 185q26-20 57-20 39 0 66 30 18-10 39-10t41 10 29 27q13-2 31-2 47 0 70 27t23 76z m-71 429q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m143-426q0-79-43-128t-121-49l-3 1q-42-34-99-34-12 0-24 2-30-17-66-21l0-94q0-59-42-101t-101-42q-57 0-100 42t-42 100l0 209q-30-12-71-12-68 0-105 45t-38 115q0 21 10 39t28 31 35 23 40 21 35 18q31 20 72 56 2 1 9 8t12 11 12 11 13 13 10 13 8 13 3 12l0 161q0 30 21 50t50 21l357 0q30 0 50-21t21-50l0-161q0-33 33-124 39-106 39-177z" horiz-adv-x="857.143" />
<glyph glyph-name="th-list" unicode="&#xe817;" d="M286 154l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m714-286l0-107q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l536 0q22 0 38-16t16-38z m-714 571l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m714-286l0-107q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l536 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l536 0q22 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="heart-empty" unicode="&#xe807;" d="M929 517q0 45-12 80t-31 55-45 33-52 17-55 4-62-14-62-36-48-40-33-34q-10-12-27-12t-27 12q-13 16-33 34t-48 40-62 36-62 14-55-4-52-17-45-33-31-55-12-80q0-94 104-198l324-312 324 312q105 105 105 199z m71 0q0-123-128-251l-348-335q-10-10-25-10t-25 10l-348 336q-6 4-15 15t-31 37-38 54-30 68-13 77q0 123 71 192t196 69q35 0 71-12t67-32 53-38 42-38q20 20 42 38t53 38 67 32 71 12q125 0 196-69t71-192z" horiz-adv-x="1000" />
<glyph glyph-name="heart" unicode="&#xe806;" d="M500-79q-15 0-25 10l-348 336q-6 4-15 15t-31 37-38 54-30 68-13 77q0 123 71 192t196 69q35 0 71-12t67-32 53-38 42-38q20 20 42 38t53 38 67 32 71 12q125 0 196-69t71-192q0-123-128-251l-348-335q-10-10-25-10z" horiz-adv-x="1000" />
<glyph glyph-name="music" unicode="&#xe802;" d="M857 725l0-625q0-28-19-50t-48-34-58-18-54-6-54 6-58 18-48 34-19 50 19 50 48 34 58 18 54 6q59 0 107-22l0 300-429-132 0-396q0-28-19-50t-48-34-58-18-54-6-54 6-58 18-48 34-19 50 19 50 48 34 58 18 54 6q59 0 107-22l0 540q0 17 11 32t27 20l464 143q7 2 16 2 22 0 38-16t16-38z" horiz-adv-x="857.143" />
<glyph glyph-name="th" unicode="&#xe816;" d="M286 154l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m357-286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m-357 571l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m357-286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m357-286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m-357 571l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m357-286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l179 0q22 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="flag" unicode="&#xe838;" d="M179 707q0-40-36-61l0-706q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 706q-36 21-36 61 0 30 21 50t50 21 50-21 21-50z m821-36l0-426q0-14-7-21t-22-15q-120-65-206-65-34 0-69 12t-61 27-64 27-80 12q-107 0-259-81-9-5-18-5-15 0-25 11t-11 25l0 414q0 18 17 31 12 8 44 24 132 67 235 67 60 0 112-16t122-49q21-11 49-11 30 0 66 12t61 26 49 26 30 12q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="cog" unicode="&#xe862;" d="M571 350q0 59-42 101t-101 42-101-42-42-101 42-101 101-42 101 42 42 101z m286 61l0-124q0-7-4-13t-11-7l-103-16q-11-30-22-51 20-28 60-77 6-7 6-14t-5-13q-15-21-55-60t-52-40q-7 0-15 5l-77 60q-25-13-51-21-9-76-16-104-4-16-20-16l-124 0q-8 0-14 5t-6 12l-16 103q-27 9-50 21l-79-60q-6-5-14-5t-14 6q-70 64-92 94-4 6-4 13t4 13q8 12 28 37t30 39q-15 28-23 55l-102 15q-7 1-12 7t-4 13l0 124q0 7 4 13t11 7l104 16q8 26 22 51-22 32-60 77-6 7-6 13t5 13q15 20 55 60t53 40q7 0 15-6l77-60q25 13 51 21 9 76 16 104 4 16 20 16l124 0q8 0 14-5t6-12l16-103q27-9 50-21l79 60q5 5 13 5 7 0 14-6 72-66 92-95 4-4 4-12 0-7-4-13-8-12-28-37t-30-39q15-28 23-55l102-16q7-1 12-7t4-13z" horiz-adv-x="857.143" />
<glyph glyph-name="attention" unicode="&#xe851;" d="M571 83l0 106q0 8-5 13t-13 5l-107 0q-7 0-13-5t-5-13l0-106q0-8 5-13t13-5l107 0q7 0 13 5t5 13z m-1 209l10 256q0 7-6 11-7 6-13 6l-123 0q-6 0-13-6-6-4-6-12l9-255q0-6 6-9t13-4l103 0q8 0 13 4t6 9z m-8 521l429-786q20-35-1-70-9-16-26-26t-35-9l-857 0q-19 0-35 9t-26 26q-21 35-1 70l429 786q9 17 26 27t36 10 36-10 26-27z" horiz-adv-x="1000" />
<glyph glyph-name="flash" unicode="&#xe8ae;" d="M494 534q10-11 4-25l-301-646q-7-14-23-14-2 0-8 1-9 3-14 11t-3 17l110 451-227-56q-2-1-7-1-10 0-17 6-10 8-7 22l112 460q2 8 9 13t16 5l183 0q11 0 18-7t7-16q0-4-3-10l-95-258 221 55q4 1 7 1 11 0 19-8z" horiz-adv-x="500" />
<glyph glyph-name="cog-alt" unicode="&#xe863;" d="M500 350q0 59-42 101t-101 42-101-42-42-101 42-101 101-42 101 42 42 101z m429-286q0 29-21 50t-50 21-50-21-21-50q0-30 21-50t50-21 50 21 21 50z m0 571q0 29-21 50t-50 21-50-21-21-50q0-30 21-50t50-21 50 21 21 50z m-214-235l0-103q0-6-4-11t-9-6l-86-13q-6-20-18-42 19-27 50-64 4-6 4-11 0-7-4-11-13-17-46-50t-44-33q-6 0-12 4l-64 50q-21-11-43-17-6-60-13-86-4-13-17-13l-104 0q-6 0-11 4t-6 10l-13 85q-19 6-42 17l-66-50q-4-4-11-4-6 0-12 4-80 74-80 89 0 5 4 11 6 8 23 30t26 34q-13 25-20 46l-85 13q-6 1-9 5t-4 11l0 103q0 6 4 11t9 6l86 13q6 20 18 42-19 27-50 64-4 6-4 11 0 7 4 11 12 17 46 50t44 33q6 0 12-4l64-50q19 10 43 18 6 60 13 86 4 13 17 13l104 0q6 0 11-4t6-10l13-85q19-6 42-17l66 50q4 4 11 4 6 0 12-4 80-74 80-89 0-5-4-11-7-9-23-30t-25-33q13-27 19-46l85-13q6-1 9-6t4-11z m357-297l0-78q0-9-83-17-7-15-17-29 28-63 28-77 0-2-2-4-68-40-69-40-4 0-26 26t-29 38q-11-1-17-1t-17 1q-8-12-29-38t-26-26q-1 0-69 40-2 2-2 4 0 14 28 77-10 14-17 29-83 8-83 17l0 78q0 9 83 17 7 16 17 29-28 63-28 77 0 2 2 4 2 1 20 11t33 19 17 9q4 0 26-26t29-38q11 1 17 1t17-1q28 40 51 62l3 1q2 0 69-39 2-2 2-4 0-14-28-77 9-13 17-29 83-8 83-17z m0 571l0-78q0-9-83-17-7-15-17-29 28-63 28-77 0-2-2-4-68-40-69-40-4 0-26 26t-29 38q-11-1-17-1t-17 1q-8-12-29-38t-26-26q-1 0-69 40-2 2-2 4 0 14 28 77-10 14-17 29-83 8-83 17l0 78q0 9 83 17 7 16 17 29-28 63-28 77 0 2 2 4 2 1 20 11t33 19 17 9q4 0 26-26t29-38q11 1 17 1t17-1q28 40 51 62l3 1q2 0 69-39 2-2 2-4 0-14-28-77 9-13 17-29 83-8 83-17z" horiz-adv-x="1071.429" />
<glyph glyph-name="scissors" unicode="&#xe8c5;" d="M536 350q15 0 25-11t11-25-11-25-25-11-25 11-11 25 11 25 25 11z m167-36l283-222q16-11 14-31-3-20-20-28l-71-36q-7-4-16-4t-17 4l-385 216-61-37q-4-2-7-3 8-27 6-54-4-43-31-82t-74-69q-74-47-155-47-76 0-124 44-50 47-44 116 4 42 31 82t73 69q74 47 155 47 46 0 84-17 5 7 12 12l68 41-68 41q-7 5-12 12-38-17-84-17-81 0-155 47-46 30-73 69t-31 82q-3 33 9 63t35 52q47 44 124 44 81 0 155-47 46-29 74-69t31-83q2-27-6-54 2-1 7-3l61-37 385 216q8 4 17 4t16-4l71-36q17-9 20-28 2-20-14-31z m-380 145q26 23 12 60t-59 65q-51 33-107 33-41 0-63-20-26-23-12-60t59-65q51-33 107-33 41 0 63 20z m-47-416q45 28 59 65t-12 60q-22 20-63 20-56 0-107-33-45-28-59-65t12-60q22-20 63-20 56 0 107 33z m99 342l54-32 0 6q0 20 18 31l8 4-44 26-15-15q-2-2-6-6t-7-7q-1-1-2-2t-2-1z m125-125l54-18 411 321-71 36-429-240 0-63-89-54 5-4q1-1 4-3 2-2 6-7t6-7l15-15z m393-232l71 36-290 228-99-77q-1-2-7-4z" horiz-adv-x="1000" />
<glyph glyph-name="flight" unicode="&#xe8b1;" d="M768 761q25-29 7-83t-60-96l-90-90 89-388q3-11-7-18l-71-54q-4-3-11-3-2 0-4 1-8 2-12 9l-156 283-145-145 30-108q3-9-4-17l-54-54q-5-5-13-5l-1 0q-8 1-13 7l-105 141-141 105q-6 4-7 13-1 7 5 14l54 54q5 5 13 5 3 0 4-1l108-30 145 145-283 156q-8 4-9 13t5 15l71 71q8 7 17 4l371-89 89 89q42 42 96 60t83-7z" horiz-adv-x="785.714" />
<glyph glyph-name="mail" unicode="&#xe804;" d="M929 11l0 429q-18-20-39-37-150-115-238-189-28-24-46-37t-48-27-57-14l-1 0q-27 0-57 14t-48 27-46 37q-88 74-238 189-21 17-39 37l0-429q0-7 5-13t13-5l821 0q7 0 13 5t5 13z m0 586l0 14t0 7-2 7-3 5-5 4-8 1l-821 0q-7 0-13-5t-5-13q0-94 82-158 108-85 224-177 3-3 20-16t26-21 25-18 28-15 24-5l1 0q11 0 24 5t28 15 25 18 26 21 20 16q116 92 224 177 30 24 56 64t26 73z m71 21l0-607q0-37-26-63t-63-26l-821 0q-37 0-63 26t-26 63l0 607q0 37 26 63t63 26l821 0q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="edit" unicode="&#xe941;" d="M496 189l65 65-85 85-65-65 0-31 54 0 0-54 31 0z m246 402q-9 9-18-1l-195-195q-9-9-1-18t18 1l195 195q9 9 1 18z m45-331l0-106q0-66-47-114t-114-47l-464 0q-66 0-114 47t-47 114l0 464q0 66 47 114t114 47l464 0q35 0 65-14 8-4 10-13t-5-16l-27-27q-8-8-18-4-13 3-25 3l-464 0q-37 0-63-26t-26-63l0-464q0-37 26-63t63-26l464 0q37 0 63 26t26 63l0 70q0 7 5 12l36 36q8 8 20 4t11-16z m-54 412l161-161-375-375-161 0 0 161z m248-74l-51-51-161 161 51 51q16 16 38 16t38-16l85-85q16-16 16-38t-16-38z" horiz-adv-x="1000" />
<glyph glyph-name="pencil" unicode="&#xe847;" d="M203-7l51 51-131 131-51-51 0-60 71 0 0-71 60 0z m292 518q0 12-12 12-6 0-9-4l-302-302q-4-4-4-9 0-12 12-12 6 0 9 4l302 302q4 4 4 9z m-30 107l232-232-464-464-232 0 0 232z m381-54q0-30-21-50l-93-93-232 232 93 92q20 21 50 21t51-21l131-131q21-22 21-51z" horiz-adv-x="857.143" />
<glyph glyph-name="ok" unicode="&#xe818;" d="M932 534q0-22-16-38l-404-404-76-76q-16-16-38-16t-38 16l-76 76-202 202q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q16-16 16-38z" horiz-adv-x="1000" />
<glyph glyph-name="ok-circled" unicode="&#xe819;" d="M716 440q0 16-10 26l-51 50q-11 11-25 11t-25-11l-228-227-126 126q-11 11-25 11t-25-11l-51-50q-10-10-10-26 0-15 10-25l202-202q11-11 25-11 15 0 26 11l303 303q10 10 10 25z m141-90q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="cancel" unicode="&#xe81c;" d="M724 112q0-22-16-38l-76-76q-16-16-38-16t-38 16l-164 164-164-164q-16-16-38-16t-38 16l-76 76q-16 16-16 38t16 38l164 164-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164 164 164q16 16 38 16t38-16l76-76q16-16 16-38t-16-38l-164-164 164-164q16-16 16-38z" horiz-adv-x="785.714" />
<glyph glyph-name="cancel-circled" unicode="&#xe81d;" d="M641 224q0 15-11 25l-101 101 101 101q11 11 11 25 0 15-11 26l-50 50q-11 11-26 11t-25-11l-101-101-101 101q-11 11-25 11-15 0-26-11l-50-50q-11-11-11-26t11-25l101-101-101-101q-11-11-11-25 0-15 11-26l50-50q11-11 26-11t25 11l101 101 101-101q11-11 25-11 15 0 26 11l50 50q11 11 11 26z m216 126q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="asterisk" unicode="&#xe8d3;" d="M827 264q26-15 33-43t-7-54l-36-61q-15-26-43-33t-54 7l-148 85 0-171q0-29-21-50t-50-21l-71 0q-29 0-50 21t-21 50l0 171-148-85q-26-15-54-7t-43 33l-36 61q-15 26-7 54t33 43l148 86-148 86q-26 15-33 43t7 54l36 61q15 26 43 33t54-7l148-85 0 171q0 29 21 50t50 21l71 0q29 0 50-21t21-50l0-171 148 85q26 15 54 7t43-33l36-61q15-26 7-54t-33-43l-148-86z" horiz-adv-x="928.571" />
<glyph glyph-name="attention-circled" unicode="&#xe852;" d="M429 779q117 0 215-57t156-156 57-215-57-215-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57z m71-696l0 106q0 8-5 13t-12 5l-107 0q-7 0-13-6t-6-13l0-106q0-7 6-13t13-6l107 0q7 0 12 5t5 13z m-1 192l10 347q0 7-6 10-6 4-13 4l-123 0q-8 0-13-4-6-3-6-10l9-347q0-6 6-10t13-4l103 0q8 0 13 4t6 10z" horiz-adv-x="857.143" />
<glyph glyph-name="plus-circled" unicode="&#xe820;" d="M679 314l0 71q0 15-11 25t-25 11l-143 0 0 143q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-143-143 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l143 0 0-143q0-15 11-25t25-11l71 0q15 0 25 11t11 25l0 143 143 0q15 0 25 11t11 25z m179 36q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="minus-circled" unicode="&#xe824;" d="M679 314l0 71q0 15-11 25t-25 11l-429 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l429 0q15 0 25 11t11 25z m179 36q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="forward" unicode="&#xe856;" d="M1000 493q0-15-11-25l-286-286q-11-11-25-11t-25 11-11 25l0 143-125 0q-55 0-98-3t-86-12-74-24-59-39-45-56-27-77-10-101q0-31 3-69 0-3 1-13t1-15q0-8-5-14t-13-6q-9 0-16 9-4 5-7 12t-8 17-6 13q-71 159-71 252 0 111 30 186 90 225 488 225l125 0 0 143q0 15 11 25t25 11 25-11l286-286q11-11 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="ccw" unicode="&#xe896;" d="M857 350q0-87-34-166t-92-137-137-92-166-34q-96 0-182 40t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 111 23t91 61 61 91 23 111-23 111-61 91-91 61-111 23q-55 0-105-20t-89-57l76-77q17-17 8-39t-33-22l-250 0q-15 0-25 11t-11 25l0 250q0 23 22 33 22 9 39-8l73-72q60 56 136 87t159 31q87 0 166-34t137-92 92-137 34-166z" horiz-adv-x="857.143" />
<glyph glyph-name="cw" unicode="&#xe895;" d="M857 707l0-250q0-15-11-25t-25-11l-250 0q-23 0-33 22-9 22 8 39l77 77q-83 76-195 76-58 0-111-23t-91-61-61-91-23-111 23-111 61-91 91-61 111-23q66 0 126 29t100 82q4 6 13 7 8 0 14-5l76-77q5-4 5-11t-4-13q-61-74-147-114t-182-40q-87 0-166 34t-137 92-92 137-34 166 34 166 92 137 137 92 166 34q82 0 159-31t136-87l73 72q16 17 39 8 22-9 22-33z" horiz-adv-x="857.143" />
<glyph glyph-name="resize-vertical" unicode="&#xe872;" d="M393 671q0-15-11-25t-25-11l-71 0 0-571 71 0q15 0 25-11t11-25-11-25l-143-143q-11-11-25-11t-25 11l-143 143q-11 11-11 25t11 25 25 11l71 0 0 571-71 0q-15 0-25 11t-11 25 11 25l143 143q11 11 25 11t25-11l143-143q11-11 11-25z" horiz-adv-x="428.571" />
<glyph glyph-name="resize-horizontal" unicode="&#xe873;" d="M1000 350q0-15-11-25l-143-143q-11-11-25-11t-25 11-11 25l0 71-571 0 0-71q0-15-11-25t-25-11-25 11l-143 143q-11 11-11 25t11 25l143 143q11 11 25 11t25-11 11-25l0-71 571 0 0 71q0 15 11 25t25 11 25-11l143-143q11-11 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="eject" unicode="&#xe8a6;" d="M8 304l396 396q11 11 25 11t25-11l396-396q11-11 7-18t-18-7l-821 0q-15 0-18 7t7 18z m814-311l-786 0q-15 0-25 11t-11 25l0 143q0 15 11 25t25 11l786 0q15 0 25-11t11-25l0-143q0-15-11-25t-25-11z" horiz-adv-x="858.259" />
<glyph glyph-name="trash" unicode="&#xe89f;" d="M0 633l0 141 289 0 0 76 246 0 0-76 289 0 0-141-824 0z m43-783l0 676 738 0 0-676-738 0z" horiz-adv-x="824" />
<glyph glyph-name="folder" unicode="&#xe8d7;" d="M0-52l0 715 139 0 68 90 217 0 68-90 508 0 0-715-1000 0z" horiz-adv-x="1000" />
<glyph glyph-name="star-half" unicode="&#xe80a;" d="M464 832l0-747-251-132q-12-7-22-7-12 0-18 8t-6 20q0 3 1 11l48 279-203 198q-14 15-14 27 0 21 31 26l280 41 126 254q11 23 27 23z" horiz-adv-x="500" />
<glyph glyph-name="ok-circled2" unicode="&#xe81a;" d="M653 396l-235-235q-11-11-25-11t-25 11l-164 164q-11 11-11 25t11 25l57 57q11 11 25 11t25-11l82-82 153 153q11 11 25 11t25-11l57-57q11-11 11-25t-11-25z m79-46q0 83-41 152t-110 110-152 41-152-41-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152z m125 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="cancel-circled2" unicode="&#xe86f;" d="M612 248l-81-81q-6-6-13-6t-13 6l-76 76-76-76q-6-6-13-6t-13 6l-81 81q-6 6-6 13t6 13l76 76-76 76q-6 6-6 13t6 13l81 81q6 6 13 6t13-6l76-76 76 76q6 6 13 6t13-6l81-81q6-6 6-13t-6-13l-76-76 76-76q6-6 6-13t-6-13z m120 102q0 83-41 152t-110 110-152 41-152-41-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152z m125 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="help-circled" unicode="&#xe939;" d="M500 82l0 107q0 8-5 13t-13 5l-107 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l107 0q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-8-13 4-23l74-56q4-3 11-3 9 0 14 7 30 38 48 51 19 13 48 13 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-64-48t-29-70l0-20q0-8 5-13t13-5l107 0q8 0 13 5t5 13q0 11 12 28t30 28q18 10 27 16t26 20 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="info-circled" unicode="&#xe93a;" d="M571 82l0 89q0 8-5 13t-13 5l-54 0 0 286q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-89q0-8 5-13t13-5l54 0 0-179-54 0q-8 0-13-5t-5-13l0-89q0-8 5-13t13-5l250 0q8 0 13 5t5 13z m-71 500l0 89q0 8-5 13t-13 5l-107 0q-8 0-13-5t-5-13l0-89q0-8 5-13t13-5l107 0q8 0 13 5t5 13z m357-232q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="th-large" unicode="&#xe815;" d="M429 279l0-214q0-29-21-50t-50-21l-286 0q-29 0-50 21t-21 50l0 214q0 29 21 50t50 21l286 0q29 0 50-21t21-50z m0 429l0-214q0-29-21-50t-50-21l-286 0q-29 0-50 21t-21 50l0 214q0 29 21 50t50 21l286 0q29 0 50-21t21-50z m500-429l0-214q0-29-21-50t-50-21l-286 0q-29 0-50 21t-21 50l0 214q0 29 21 50t50 21l286 0q29 0 50-21t21-50z m0 429l0-214q0-29-21-50t-50-21l-286 0q-29 0-50 21t-21 50l0 214q0 29 21 50t50 21l286 0q29 0 50-21t21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="eye" unicode="&#xe832;" d="M929 314q-85 132-213 197 34-58 34-126 0-103-73-177t-177-73-177 73-73 177q0 68 34 126-128-65-213-197 74-114 186-182t242-68 242 68 186 182z m-402 214q0 11-8 19t-19 8q-70 0-120-50t-50-120q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m473-214q0-19-11-39-78-128-210-206t-279-77-279 78-210 205q-11 20-11 39t11 39q78 128 210 205t279 78 279-78 210-205q11-20 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="eye-off" unicode="&#xe833;" d="M310 105l44 79q-49 35-76 89t-27 113q0 68 34 126-128-65-213-197 93-144 238-209z m217 424q0 11-8 19t-19 8q-70 0-120-50t-50-120q0-11 8-19t19-8 19 8 8 19q0 48 34 82t82 34q11 0 19 8t8 19z m203 107q0-4-1-5-59-105-176-316t-176-316l-27-50q-6-9-16-9-7 0-75 39-9 6-9 16 0 7 25 49-80 36-147 97t-116 137q-11 17-11 39t11 39q85 131 212 207t277 76q50 0 100-9l30 54q6 9 16 9 3 0 10-3t17-9 18-10 18-10 11-6q9-6 9-15z m21-249q0-78-44-141t-117-92l156 280q4-25 4-47z m250-71q0-20-11-39-22-36-61-81-84-96-194-149t-234-53l41 74q118 10 219 76t168 171q-64 100-157 164l35 62q53-36 102-85t81-103q11-19 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="tag" unicode="&#xe834;" d="M250 600q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m595-321q0-30-21-50l-274-275q-22-21-51-21-30 0-50 21l-399 400q-21 21-36 56t-15 65l0 232q0 29 21 50t50 21l232 0q30 0 65-15t57-36l399-398q21-22 21-51z" horiz-adv-x="857.143" />
<glyph glyph-name="tags" unicode="&#xe835;" d="M250 600q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m595-321q0-30-21-50l-274-275q-22-21-51-21-30 0-50 21l-399 400q-21 21-36 56t-15 65l0 232q0 29 21 50t50 21l232 0q30 0 65-15t57-36l399-398q21-22 21-51z m214 0q0-30-21-50l-274-275q-22-21-51-21-20 0-33 8t-30 25l262 262q21 21 21 50t-21 51l-399 398q-21 21-57 36t-65 15l125 0q30 0 65-15t57-36l399-398q21-22 21-51z" horiz-adv-x="1071.429" />
<glyph glyph-name="camera-alt" unicode="&#xe814;" d="M518 386q0 8-5 13t-13 5q-37 0-63-26t-26-63q0-8 5-13t13-5 13 5 5 13q0 22 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m-571-320l857 0 0 71-857 0 0-71z m643 320q0 89-63 151t-151 63-151-63-63-151 63-151 151-63 151 63 63 151z m-571 358l214 0 0 71-214 0 0-71z m-71-107l857 0 0 143-462 0-36-71-359 0 0-71z m929 143l0-714q0-30-21-50t-50-21l-857 0q-30 0-50 21t-21 50l0 714q0 30 21 50t50 21l857 0q30 0 50-21t21-50z" horiz-adv-x="1000" />
<glyph glyph-name="code" unicode="&#xe844;" d="M1000 849l500-500-500-500-154 154 346 346-346 346z m-692-500l346-346-154-154-500 500 500 500 154-154z" horiz-adv-x="1500" />
<glyph glyph-name="print" unicode="&#xe942;" d="M214-7l500 0 0 143-500 0 0-143z m0 357l500 0 0 214-89 0q-22 0-38 16t-16 38l0 89-357 0 0-357z m643-36q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 0l0-232q0-7-5-13t-13-5l-125 0 0-89q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 89-125 0q-7 0-13 5t-5 13l0 232q0 44 32 76t76 32l36 0 0 304q0 22 16 38t38 16l375 0q22 0 49-11t42-27l85-85q16-16 27-42t11-49l0-143 36 0q44 0 76-32t32-76z" horiz-adv-x="928.571" />
<glyph glyph-name="retweet" unicode="&#xe943;" d="M714 11q0-7-5-13t-13-5l-536 0q-4 0-8 1t-5 4-3 4-2 6-1 6l0 335-107 0q-15 0-25 11t-11 25q0 13 8 23l179 214q11 12 27 12t27-12l179-214q8-9 8-23 0-15-11-25t-25-11l-107 0 0-214 321 0q9 0 14-6l89-107q4-6 4-12z m357 232q0-13-8-23l-179-214q-11-13-27-13t-27 13l-179 214q-8 9-8 23 0 15 11 25t25 11l107 0 0 214-321 0q-9 0-14 7l-89 107q-4 5-4 11 0 7 5 13t13 5l536 0q4 0 8-1t5-4 3-4 2-6 1-6l0-335 107 0q15 0 25-11t11-25z" horiz-adv-x="1071.429" />
<glyph glyph-name="comment" unicode="&#xe84a;" d="M1000 350q0-97-67-179t-182-130-251-48q-39 0-81 4-110-98-257-135-27-8-64-12-9-1-17 5t-10 16l0 1q-2 2 0 7t1 6 3 5l3 5t4 5 4 5q4 4 17 19t19 21 17 22 18 28 15 33 15 42q-88 50-138 123t-50 157q0 73 40 139t107 114 160 76 194 28q136 0 251-48t182-130 67-179z" horiz-adv-x="1000" />
<glyph glyph-name="chat" unicode="&#xe84b;" d="M786 421q0-78-52-143t-143-104-197-38q-48 0-98 9-69-49-155-71-20-5-48-9l-2 0q-6 0-11 4t-6 12q-1 2-1 4t0 4 1 3l1 3t2 3 2 3 3 3 2 3q3 3 13 14t15 16 13 16 14 21 11 25q-69 40-109 99t-40 125q0 78 52 143t143 104 197 38 197-38 143-104 52-143z m214-143q0-67-40-125t-109-98q6-13 11-25t14-21 13-16 15-16 13-14q1-1 2-3t3-3 2-3 2-3l1-3t1-3 0-4-1-4q-2-8-7-12t-12-4q-28 4-48 9-86 22-155 71-50-9-98-9-151 0-263 74 32-2 49-2 90 0 172 25t147 72q70 51 107 118t37 142q0 43-13 85 72-40 114-99t42-128z" horiz-adv-x="1000" />
<glyph glyph-name="location" unicode="&#xe853;" d="M429 493q0 59-42 101t-101 42-101-42-42-101 42-101 101-42 101 42 42 101z m143 0q0-61-18-100l-203-432q-9-18-27-29t-38-11-38 11-26 29l-204 432q-18 39-18 100 0 118 84 202t202 84 202-84 84-202z" horiz-adv-x="571.429" />
<glyph glyph-name="archive" unicode="&#xe859;" d="M1217 806l0-131q0-18-13-31t-31-13l-1131 0q-17 0-30 13t-13 31l0 131q0 17 13 30t30 13l1131 0q18 0 31-13t13-30z m-43-305l0-609q0-17-13-30t-31-13l-1043 0q-18 0-31 13t-13 30l0 609q0 18 13 31t31 13l1043 0q18 0 31-13t13-31z m-304-152q0 27-20 46t-47 19l-391 0q-27 0-46-19t-19-46 19-46 46-19l391 0q27 0 47 19t20 46z" horiz-adv-x="1217" />
<glyph glyph-name="basket" unicode="&#xe865;" d="M357-7q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m500 0q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m71 607l0-286q0-13-9-24t-23-12l-583-68q1-4 3-12t3-15 1-12q0-9-13-36l513 0q15 0 25-11t11-25-11-25-25-11l-571 0q-15 0-25 11t-11 25q0 8 6 22t16 33 11 21l-99 459-114 0q-15 0-25 11t-11 25 11 25 25 11l143 0q9 0 16-4t11-9 7-14 4-15 3-16 3-14l670 0q15 0 25-11t11-25z" horiz-adv-x="928.571" />
<glyph glyph-name="login" unicode="&#xe868;" d="M661 350q0-15-11-25l-304-304q-11-11-25-11t-25 11-11 25l0 161-250 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l250 0 0 161q0 15 11 25t25 11 25-11l304-304q11-11 11-25z m196 196l0-393q0-66-47-114t-114-47l-179 0q-7 0-13 5t-5 13q0 2-1 11t0 15 2 13 6 11 11 4l179 0q37 0 63 26t26 63l0 393q0 37-26 63t-63 26l-174 0t-6 1-6 2-4 3-4 5-1 8q0 2-1 11t0 15 2 13 6 11 11 4l179 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="logout" unicode="&#xe949;" d="M357 46q0-2 1-11t0-15-2-13-6-11-11-4l-179 0q-66 0-114 47t-47 114l0 393q0 66 47 114t114 47l179 0q7 0 13-5t5-13q0-2 1-11t0-15-2-13-6-11-11-4l-179 0q-37 0-63-26t-26-63l0-393q0-37 26-63t63-26l174 0t6-1 6-2 4-3 4-5 1-8z m518 304q0-15-11-25l-304-304q-11-11-25-11t-25 11-11 25l0 161-250 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l250 0 0 161q0 15 11 25t25 11 25-11l304-304q11-11 11-25z" horiz-adv-x="928.571" />
<glyph glyph-name="resize-full" unicode="&#xe90d;" d="M784 111l127 128 0-335-335 0 128 129-128 127 79 79z m-431 686l-129-127 128-127-80-80-126 128-128-129 0 335 335 0z m0-637l-129-127 129-129-335 0 0 335 128-128 128 128z m558 637l0-335-127 129-128-128-79 80 127 127-128 127 335 0z" horiz-adv-x="928" />
<glyph glyph-name="resize-small" unicode="&#xe871;" d="M429 314l0-250q0-15-11-25t-25-11-25 11l-80 80-185-185q-6-6-13-6t-13 6l-64 64q-6 6-6 13t6 13l185 185-80 80q-11 11-11 25t11 25 25 11l250 0q15 0 25-11t11-25z m421 375q0-7-6-13l-185-185 80-80q11-11 11-25t-11-25-25-11l-250 0q-15 0-25 11t-11 25l0 250q0 15 11 25t25 11 25-11l80-80 185 185q6 6 13 6t13-6l64-64q6-6 6-13z" horiz-adv-x="857.143" />
<glyph glyph-name="zoom-in" unicode="&#xe875;" d="M571 404l0-36q0-7-5-13t-13-5l-125 0 0-125q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 125-125 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l125 0 0 125q0 7 5 13t13 5l36 0q7 0 13-5t5-13l0-125 125 0q7 0 13-5t5-13z m71-18q0 103-73 177t-177 73-177-73-73-177 73-177 177-73 177 73 73 177z m286-464q0-30-21-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-126 84-84 126-31 153 31 153 84 126 126 84 153 31 153-31 126-84 84-126 31-153q0-123-69-223l191-191q21-21 21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="zoom-out" unicode="&#xe876;" d="M571 404l0-36q0-7-5-13t-13-5l-321 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l321 0q7 0 13-5t5-13z m71-18q0 103-73 177t-177 73-177-73-73-177 73-177 177-73 177 73 73 177z m286-464q0-30-21-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-126 84-84 126-31 153 31 153 84 126 126 84 153 31 153-31 126-84 84-126 31-153q0-123-69-223l191-191q21-21 21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="down-circled2" unicode="&#xe877;" d="M625 332q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 196q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-196 107 0q8 0 13-5t5-13z m-196 321q-83 0-152-41t-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152-41 152-110 110-152 41z m429-304q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="up-circled2" unicode="&#xe878;" d="M624 361q-4-11-17-11l-107 0 0-196q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 196-107 0q-8 0-13 5t-5 13q0 7 6 13l178 178q6 5 13 5t13-5l179-179q8-9 4-20z m-195 292q-83 0-152-41t-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152-41 152-110 110-152 41z m429-304q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="down-open" unicode="&#xe879;" d="M899 457q0-30-21-50l-363-363q-21-21-51-21t-50 21l-363 363q-21 20-21 50t21 51l41 42q22 21 51 21 30 0 50-21l271-271 271 271q21 21 50 21t51-21l42-42q21-22 21-51z" horiz-adv-x="928.571" />
<glyph glyph-name="left-open" unicode="&#xe87a;" d="M414-28l-364 363q-21 21-21 50t21 50l364 363q21 21 50 21t50-21l42-42q21-21 21-50t-21-50l-271-271 271-271q21-21 21-51t-21-50l-42-42q-21-21-50-21t-50 21z" horiz-adv-x="642.857" />
<glyph glyph-name="right-open" unicode="&#xe87b;" d="M613 386q0-29-21-51l-364-363q-21-21-50-21t-50 21l-42 42q-21 22-21 51 0 30 21 50l271 271-271 271q-21 22-21 51 0 30 21 50l42 42q20 21 50 21t50-21l364-363q21-21 21-50z" horiz-adv-x="642.857" />
<glyph glyph-name="up-open" unicode="&#xe87c;" d="M899 171q0-30-21-50l-42-42q-21-21-51-21t-50 21l-271 271-271-271q-20-21-50-21t-50 21l-42 42q-21 20-21 50t21 51l363 363q21 21 50 21t51-21l363-363q21-21 21-51z" horiz-adv-x="928.571" />
<glyph glyph-name="refresh" unicode="&#xe897;" d="M843 261q0-3-1-4-36-150-150-242t-267-93q-81 0-158 31t-136 88l-72-72q-11-11-25-11t-25 11-11 25l0 250q0 15 11 25t25 11l250 0q15 0 25-11t11-25-11-25l-76-76q40-37 90-57t104-20q75 0 140 36t104 100q6 9 30 65 4 13 17 13l107 0q7 0 13-5t5-13z m14 446l0-250q0-15-11-25t-25-11l-250 0q-15 0-25 11t-11 25 11 25l77 77q-83 76-195 76-75 0-140-36t-104-100q-6-9-30-65-4-13-17-13l-111 0q-7 0-13 5t-5 13l0 4q36 150 151 242t268 93q81 0 158-31t137-87l73 72q11 11 25 11t25-11 11-25z" horiz-adv-x="857.143" />
<glyph glyph-name="play-circled2" unicode="&#xe89d;" d="M661 350q0-21-18-31l-304-179q-8-5-18-5-9 0-18 4-18 11-18 31l0 357q0 21 18 31t36-1l304-179q18-10 18-31z m71 0q0 83-41 152t-110 110-152 41-152-41-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152z m125 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="to-end-alt" unicode="&#xe8a1;" d="M25-71q-11-11-18-7t-7 18l0 821q0 15 7 18t18-7l396-396q4-4 7-11l0 396q0 15 7 18t18-7l396-396q4-4 7-11l0 378q0 15 11 25t25 11l71 0q15 0 25-11t11-25l0-786q0-15-11-25t-25-11l-71 0q-15 0-25 11t-11 25l0 378q-3-6-7-11l-396-396q-11-11-18-7t-7 18l0 396q-3-6-7-11z" horiz-adv-x="1000" />
<glyph glyph-name="to-start-alt" unicode="&#xe8a3;" d="M975 771q11 11 18 7t7-18l0-821q0-15-7-18t-18 7l-396 396q-5 5-7 11l0-396q0-15-7-18t-18 7l-396 396q-5 5-7 11l0-378q0-15-11-25t-25-11l-71 0q-15 0-25 11t-11 25l0 786q0 15 11 25t25 11l71 0q15 0 25-11t11-25l0-378q2 6 7 11l396 396q11 11 18 7t7-18l0-396q2 6 7 11z" horiz-adv-x="1000" />
<glyph glyph-name="inbox" unicode="&#xe8aa;" d="M571 314l176 0q-1 2-1 4t-1 4l-118 277-395 0-118-277q-1-1-1-4t-1-4l176 0 53-107 179 0z m286-17l0-269q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 269q0 35 14 69l133 308q6 14 20 23t29 9l464 0q15 0 29-9t20-23l133-308q14-34 14-69z" horiz-adv-x="857.143" />
<glyph glyph-name="font" unicode="&#xe8b6;" d="M405 538l-95-251q41-1 86-1t66-1 29 0l16 1q-18 53-51 134-30 74-51 118z m-393-617l-12 0 1 44q12 4 45 10 50 9 61 17 11 9 27 38l132 344 156 404 71 0 6-12 114-268q57-135 69-166 22-57 54-131 15-32 36-92 13-37 36-83 12-27 20-32 12-11 39-13 26-3 57-15 3-22 3-32 0-8-1-15-45 0-107 4-52 4-105 4-44 0-75-1l-112-6-32-1q0 25 2 44l73 16q31 7 38 13 7 7 7 15t-3 18l-26 64-51 127-251 1q-16-36-58-153-13-36-13-47 0-17 9-24 15-12 57-18 2 0 8-1t17-3 23-3q1-16 1-32 0-9-1-15-37 0-195 11l-27-4q-45-8-93-8z" horiz-adv-x="928.571" />
<glyph glyph-name="bold" unicode="&#xe8b5;" d="M310 1q42-18 78-18 73 0 121 23t68 63q21 39 21 101 0 64-23 100-32 52-79 70-45 18-138 18-41 0-56-6l0-80-1-97 2-151q0-8 7-25z m-8 416q24-4 61-4 98 0 147 36t50 125q0 62-47 104t-142 42q-29 0-73-7 0-25 1-43 4-68 3-156l-1-55q0-24 1-43z m-302-496l1 52q25 5 38 7 43 7 69 17 9 15 12 28 5 37 5 108l-1 277q-3 143-5 225-1 49-6 61-1 2-7 7-10 7-39 8-17 1-64 7l-2 46 145 3 212 7 25 1q3 0 8 0t8 0q1 0 12 0t23 0l41 0q49 0 107-15 24-7 54-22 32-16 57-42t36-58 12-68q0-39-18-71t-53-59q-15-11-84-43 99-23 149-81 51-59 51-132 0-42-16-90-12-35-40-65-37-40-78-60t-113-33q-46-8-110-6l-110 2q-47 1-166-6-18-2-152-6z" horiz-adv-x="785.714" />
<glyph glyph-name="italic" unicode="&#xe8b4;" d="M0-77l9 47q2 1 43 11 42 11 65 22 16 21 23 56l15 78 31 150 7 36q4 25 9 47t9 37 7 26 5 17 2 6l16 88 9 35 12 75 4 28 0 21q-23 12-80 16-16 1-21 2l11 57 177-8q22-1 41-1 37 0 119 5 18 1 38 3t20 1q-1-11-3-21-4-16-7-28-31-11-61-17-36-9-56-17-7-17-13-49-5-25-7-46-25-111-37-171l-34-174-21-88-24-131-7-25q-1-4 1-15 36-8 66-12 20-3 37-6-1-16-4-32-4-17-5-23-10 0-13-1-13-1-23-1-5 0-16 2t-81 9l-110 1q-23 1-97-6-41-4-55-5z" horiz-adv-x="571.429" />
<glyph glyph-name="text-height" unicode="&#xe8b7;" d="M45 778l30-15q11-3 118-3l73 0 11 2 64 1 120-1 163 0 19-1q8-1 16 4t12 9l4 4 23 1q8 0 16-1l0-58t1-73l1-56-1-32q0-18-2-28-22-8-38-10-14 24-30 71-4 13-9 35t-6 37-3 16q-7 8-15 11-4 1-24 1t-58-1-62-1q-19 0-37-3-6-54-4-76l1-85 0-185 2-200-1-82q-1-26 6-47 27-14 50-18 1 0 10-3t25-7 24-7q17-4 28-10 3-25 3-28 0-6-2-16-8-1-19-1-61 0-104 6-40 4-133 4-49 0-130-8-27-2-39-2-1 12-1 15l-1 15 0 5q12 18 44 27 78 21 89 28 5 12 7 31 4 107 3 242l-3 239q-1 35 0 66t0 57-1 32-3 8q-3 3-8 3-21 3-83 3-24 0-56-8t-41-14q-7-5-12-18t-12-42-13-47q-3-11-11-18t-11-7q-25 15-31 25l0 214z m928-714q18 0 23-10t-6-25l-70-90q-11-15-27-15t-27 15l-70 90q-11 15-6 25t23 10l45 0 0 571-45 0q-18 0-23 10t6 25l70 90q11 15 27 15t27-15l70-90q11-15 6-25t-23-10l-45 0 0-571 45 0z" horiz-adv-x="1000" />
<glyph glyph-name="text-width" unicode="&#xe8b8;" d="M45 778l30-15q11-3 118-3l73 0 11 2 64 1 249-1 177 0 19-1q8-1 16 4t12 9l4 4 23 1q8 0 16-1l0-58t1-73l1-56-1-32q0-18-2-28-22-8-38-10-14 24-30 71-4 13-9 35t-6 37-3 16q-7 8-15 11-4 1-33 1t-77-1-71-1q-52 0-71-3-6-54-4-76l1-85 0 29 2-200-1-82q-1-26 6-47 27-14 50-18 1 0 10-3t25-7 24-7q17-4 28-10 3-25 3-28 0-6-2-16-8-1-19-1-61 0-104 6-40 4-133 4-46 0-130-7-25-3-39-3-1 12-1 15l-1 15 0 5q12 18 44 27 78 21 89 28 5 12 7 31 3 76 3 242l-3 25q0 148-1 155-1 6-3 8-3 3-8 3-21 3-83 3-28 0-94-8t-74-13q-7-5-12-18t-12-42-13-47q-3-11-11-18t-11-7q-25 15-31 25l0 214z m795-722q15-11 15-27t-15-27l-90-70q-15-11-25-6t-10 23l0 45-571 0 0-45q0-18-10-23t-25 6l-90 70q-15 11-15 27t15 27l90 70q15 11 25 6t10-23l0-45 571 0 0 45q0 18 10 23t25-6z" horiz-adv-x="857.143" />
<glyph glyph-name="align-left" unicode="&#xe95d;" d="M1000 100l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m-214 214l0-71q0-15-11-25t-25-11l-714 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l714 0q15 0 25-11t11-25z m143 214l0-71q0-15-11-25t-25-11l-857 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l857 0q15 0 25-11t11-25z m-214 214l0-71q0-15-11-25t-25-11l-643 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l643 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-center" unicode="&#xe95e;" d="M1000 100l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m-214 214l0-71q0-15-11-25t-25-11l-500 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l500 0q15 0 25-11t11-25z m143 214l0-71q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l786 0q15 0 25-11t11-25z m-214 214l0-71q0-15-11-25t-25-11l-357 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l357 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-right" unicode="&#xe95f;" d="M1000 100l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-714 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l714 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-857 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l857 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-643 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l643 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-justify" unicode="&#xe960;" d="M1000 100l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 214l0-71q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l929 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="list" unicode="&#xe8b9;" d="M143 118l0-107q0-7-5-13t-13-5l-107 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l107 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-107 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l107 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-107 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l107 0q7 0 13-5t5-13z m857-429l0-107q0-7-5-13t-13-5l-750 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l750 0q7 0 13-5t5-13z m-857 643l0-107q0-7-5-13t-13-5l-107 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l107 0q7 0 13-5t5-13z m857-429l0-107q0-7-5-13t-13-5l-750 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l750 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-750 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l750 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-750 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l750 0q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="indent-left" unicode="&#xe8ba;" d="M214 546l0-321q0-7-5-13t-13-5q-8 0-13 5l-161 161q-5 5-5 13t5 13l161 161q5 5 13 5 7 0 13-5t5-13z m786-429l0-107q0-7-5-13t-13-5l-964 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l964 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-607 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l607 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-607 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l607 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-964 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l964 0q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="indent-right" unicode="&#xe8bb;" d="M196 386q0-8-5-13l-161-161q-5-5-13-5-7 0-13 5t-5 13l0 321q0 7 5 13t13 5q8 0 13-5l161-161q5-5 5-13z m804-268l0-107q0-7-5-13t-13-5l-964 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l964 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-607 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l607 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-607 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l607 0q7 0 13-5t5-13z m0 214l0-107q0-7-5-13t-13-5l-964 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l964 0q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="off" unicode="&#xe963;" d="M857 350q0-87-34-166t-92-137-137-92-166-34-166 34-137 92-92 137-34 166q0 102 45 191t126 151q24 18 53 14t47-28q18-23 14-53t-28-47q-55-41-85-101t-30-127q0-58 23-111t61-91 91-61 111-23 111 23 91 61 61 91 23 111q0 68-30 127t-85 101q-23 18-28 47t14 53q17 24 47 28t53-14q81-61 126-151t45-191z m-357 429l0-357q0-29-21-50t-50-21-50 21-21 50l0 357q0 29 21 50t50 21 50-21 21-50z" horiz-adv-x="857.143" />
<glyph glyph-name="road" unicode="&#xe964;" d="M620 294l0 2-13 179q-1 7-6 13t-13 5l-104 0q-7 0-13-5t-6-13l-13-179 0-2q-1-7 4-11t12-4l136 0q7 0 12 4t4 11z m424-261q0-41-26-41l-393 0q7 0 12 5t4 13l-11 143q-1 7-6 13t-13 5l-152 0q-7 0-13-5t-6-13l-11-143q-1-7 4-13t12-5l-393 0q-26 0-26 41 0 30 15 65l233 583q4 11 15 18t21 8l189 0q-7 0-13-5t-6-13l-8-107q-1-8 4-13t12-5l93 0q7 0 12 5t4 13l-8 107q-1 7-6 13t-13 5l189 0q11 0 21-8t15-18l233-583q15-35 15-65z" horiz-adv-x="1071.429" />
<glyph glyph-name="list-alt" unicode="&#xe8c9;" d="M214 189l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m643-286l0-36q0-7-5-13t-13-5l-536 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l536 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-536 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l536 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-536 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l536 0q7 0 13-5t5-13z m71-393l0 464q0 7-5 13t-13 5l-821 0q-7 0-13-5t-5-13l0-464q0-7 5-13t13-5l821 0q7 0 13 5t5 13z m71 607l0-607q0-37-26-63t-63-26l-821 0q-37 0-63 26t-26 63l0 607q0 37 26 63t63 26l821 0q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="qrcode" unicode="&#xe8ca;" d="M214 207l0-71-71 0 0 71 71 0z m0 429l0-71-71 0 0 71 71 0z m429 0l0-71-71 0 0 71 71 0z m-571-571l214 0 0 214-214 0 0-214z m0 428l214 0 0 214-214 0 0-214z m429 0l214 0 0 214-214 0 0-214z m-143-143l0-357-357 0 0 357 357 0z m286-286l0-71-71 0 0 71 71 0z m143 0l0-71-71 0 0 71 71 0z m0 286l0-214-214 0 0 71-71 0 0-214-71 0 0 357 214 0 0-71 71 0 0 71 71 0z m-429 429l0-357-357 0 0 357 357 0z m429 0l0-357-357 0 0 357 357 0z" horiz-adv-x="785.714" />
<glyph glyph-name="barcode" unicode="&#xe8cb;" d="M35-7l-35 0 0 786 35 0 0-786z m35 1l-18 0 0 785 18 0 0-785z m52 0l-17 0 0 785 17 0 0-785z m88 0l-17 0 0 785 17 0 0-785z m88 0l-35 0 0 785 35 0 0-785z m70 0l-17 0 0 785 17 0 0-785z m35 0l-17 0 0 785 17 0 0-785z m35 0l-17 0 0 785 17 0 0-785z m88 0l-35 0 0 785 35 0 0-785z m88 0l-35 0 0 785 35 0 0-785z m70 0l-35 0 0 785 35 0 0-785z m70 0l-35 0 0 785 35 0 0-785z m52 0l-35 0 0 785 35 0 0-785z m105 0l-52 0 0 785 52 0 0-785z m35 0l-18 0 0 785 18 0 0-785z m52-1l-35 0 0 786 35 0 0-786z" horiz-adv-x="1000" />
<glyph glyph-name="ajust" unicode="&#xe8cd;" d="M429 46l0 607q-83 0-152-41t-110-110-41-152 41-152 110-110 152-41z m429 304q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="tint" unicode="&#xe8ce;" d="M286 207q0 20-11 39-1 1-9 13t-14 21-14 25-12 28q-2 9-12 9t-12-9q-4-13-12-28t-14-25-14-21-9-13q-11-18-11-39 0-30 21-50t50-21 50 21 21 50z m286 71q0-118-84-202t-202-84-202 84-84 202q0 81 45 153 3 5 35 50t56 84 56 99 46 112q5 17 19 26t28 9 29-9 19-26q16-52 46-112t56-99 56-84 35-50q45-71 45-153z" horiz-adv-x="571.429" />
<glyph glyph-name="layers" unicode="&#xe829;" d="M18 183l446-112 447 112 0-112-447-111-446 111 0 112z m0 223l446-112 447 112 0-112-447-111-446 111 0 112z m0 223l446 112 447-112 0-111-447-112-446 112 0 111z" horiz-adv-x="928" />
<glyph glyph-name="magnet" unicode="&#xe8d6;" d="M857 386l0-71q0-112-55-202t-153-140-221-50-221 50-153 140-55 202l0 71q0 15 11 25t25 11l214 0q15 0 25-11t11-25l0-71q0-29 13-50t30-32 40-17 36-7 25-1 25 1 36 7 40 17 30 32 13 50l0 71q0 15 11 25t25 11l214 0q15 0 25-11t11-25z m-571 357l0-214q0-15-11-25t-25-11l-214 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l214 0q15 0 25-11t11-25z m571 0l0-214q0-15-11-25t-25-11l-214 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l214 0q15 0 25-11t11-25z" horiz-adv-x="857.143" />
<glyph glyph-name="move" unicode="&#xe874;" d="M1000 350q0-15-11-25l-143-143q-11-11-25-11t-25 11-11 25l0 71-214 0 0-214 71 0q15 0 25-11t11-25-11-25l-143-143q-11-11-25-11t-25 11l-143 143q-11 11-11 25t11 25 25 11l71 0 0 214-214 0 0-71q0-15-11-25t-25-11-25 11l-143 143q-11 11-11 25t11 25l143 143q11 11 25 11t25-11 11-25l0-71 214 0 0 214-71 0q-15 0-25 11t-11 25 11 25l143 143q11 11 25 11t25-11l143-143q11-11 11-25t-11-25-25-11l-71 0 0-214 214 0 0 71q0 15 11 25t25 11 25-11l143-143q11-11 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="link" unicode="&#xe83f;" d="M8 96q-17 66 0 132t67 115l131 131q49 49 115 67t132 0 115-67q20-20 20-50t-20-50-50-20-50 20q-34 34-82 34t-81-34l-131-131q-33-34-33-82t33-82q34-33 81-33t81 33l27 27q78-38 164-35l-91-91q-49-49-115-67t-132 0-115 67-67 115z m291 179q0 29 21 50 20 20 50 20t50-20q33-34 81-34t82 34l131 131q34 34 34 82t-34 81q-33 34-81 34t-82-34l-27-26q-77 37-163 35l91 91q49 49 115 66t132 0 115-66q49-49 67-115t0-132-67-115l-131-131q-49-49-115-67t-132 0-114 67q-21 20-21 50z" horiz-adv-x="887.207" />
<glyph glyph-name="share" unicode="&#xe912;" d="M0 90l0 490q0 70 50 119t119 50l129 0q28 0 48-20t20-47q0-28-20-48t-48-20l-129 0q-15 0-25-10t-10-25l0-490q0-14 10-25t25-10l588 0q15 0 25 10t10 25l0 60q0 27 20 47t47 20q28 0 47-20t20-47l0-60q0-70-49-119t-119-49l-588 0q-70 0-119 49t-50 119z m244 90q45 81 121 132t168 59q42 2 73-2l0-103q0-22 11-30t27 4l283 207q10 8 10 20 0 5-2 10t-5 7l-2 2-283 206q-15 12-27 5t-11-30l0-85q-6 0-20-1-72-6-136-41t-110-88-71-125-25-148z" horiz-adv-x="937.5" />
<glyph glyph-name="hdd" unicode="&#xe841;" d="M0 171l0 200q0 26 17 45l93 122q21 30 58 30l66 0q112 30 269 30t268-30l66 0q37 0 58-30l93-122q17-20 17-45l0-200q0-29-20-49t-49-20l-864 0q-29 0-50 20t-20 49z m99 60q0-16 11-27t27-11l88 0q15 0 26 11t11 27-11 27-26 11l-88 0q-16 0-27-11t-11-27z m73 236q0-22 44-41t120-30 166-11 166 11 120 30 44 41-44 41-120 30-166 11-166-11-120-30-44-41z m146-236q0-16 11-27t27-11l11 0q15 0 26 11t11 27-11 27-26 11l-11 0q-16 0-27-11t-11-27z m85 236q0 10 29 17t70 8q40 0 69-8t29-17-29-17-69-7q-41 0-70 7t-29 17z" horiz-adv-x="1004.395" />
<glyph glyph-name="link-ext" unicode="&#xe82b;" d="M786 332l0-179q0-66-47-114t-114-47l-464 0q-66 0-114 47t-47 114l0 464q0 66 47 114t114 47l393 0q8 0 13-5t5-13l0-36q0-8-5-13t-13-5l-393 0q-37 0-63-26t-26-63l0-464q0-37 26-63t63-26l464 0q37 0 63 26t26 63l0 179q0 8 5 13t13 5l36 0q8 0 13-5t5-13z m214 482l0-286q0-15-11-25t-25-11-25 11l-98 98-364-364q-6-6-13-6t-13 6l-64 64q-6 6-6 13t6 13l364 364-98 98q-11 11-11 25t11 25 25 11l286 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="check-empty" unicode="&#xe8d0;" d="M625 707l-464 0q-37 0-63-26t-26-63l0-464q0-37 26-63t63-26l464 0q37 0 63 26t26 63l0 464q0 37-26 63t-63 26z m161-89l0-464q0-66-47-114t-114-47l-464 0q-66 0-114 47t-47 114l0 464q0 66 47 114t114 47l464 0q66 0 114-47t47-114z" horiz-adv-x="785.714" />
<glyph glyph-name="bookmark-empty" unicode="&#xe837;" d="M643 707l-571 0 0-693 236 227 50 47 50-47 236-227 0 693z m7 71q13 0 25-5 18-7 29-23t11-35l0-719q0-19-11-35t-29-23q-11-4-25-4-27 0-46 18l-246 237-246-237q-20-18-46-18-13 0-25 5-18 7-29 23t-11 35l0 719q0 19 11 35t29 23q12 5 25 5l585 0z" horiz-adv-x="714.286" />
<glyph glyph-name="phone-squared" unicode="&#xe860;" d="M714 184q0 6-1 9-2 4-21 16t-49 28l-30 16q-3 2-11 7t-14 8-12 3q-10 0-26-18t-32-37-25-18q-4 0-9 2t-9 4-9 5-8 5q-55 31-95 71t-71 95q-1 2-5 8t-5 9-4 9-2 9q0 7 11 19t25 21 25 22 11 20q0 6-3 12t-8 14-7 11q-2 3-8 16t-14 25-15 27-14 23-9 10-9 1q-27 0-56-12-26-12-45-53t-19-73q0-9 1-19t3-17 5-18 6-16 7-18 6-17q33-92 121-179t179-121q3-1 17-6t18-7 16-6 18-5 17-3 19-1q32 0 73 19t53 45q12 30 12 56z m143 434l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="rss" unicode="&#xe85d;" d="M214 100q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m286-69q1-16-9-27-10-12-26-12l-75 0q-14 0-24 9t-11 23q-12 128-103 218t-218 103q-14 1-23 11t-9 24l0 75q0 16 12 26 9 9 24 9l3 0q89-7 171-45t145-101q64-63 101-145t45-171z m286-1q1-15-10-26-10-11-26-11l-80 0q-15 0-25 10t-11 24q-7 120-56 228t-129 187-187 129-228 57q-14 1-24 11t-10 24l0 80q0 16 11 26 10 10 25 10l2 0q146-7 280-67t237-164q104-104 164-237t67-280z" horiz-adv-x="785.714" />
<glyph glyph-name="certificate" unicode="&#xe8dd;" d="M768 350l77-75q17-16 11-39-7-23-29-28l-105-27 30-104q7-23-11-39-16-17-39-11l-104 30-27-105q-6-22-28-29-7-1-11-1-17 0-28 12l-75 77-75-77q-16-17-39-11t-28 29l-27 105-104-30q-23-7-39 11-17 16-11 39l30 104-105 27q-22 6-29 28-6 23 11 39l77 75-77 75q-17 16-11 39 7 23 29 28l105 27-30 104q-7 23 11 39 16 17 39 11l104-30 27 105q6 23 28 28 23 7 39-11l75-78 75 78q16 17 39 11t28-28l27-105 104 30q23 7 39-11 17-16 11-39l-30-104 105-27q22-6 29-28 6-23-11-39z" horiz-adv-x="857.143" />
<glyph glyph-name="left-circled" unicode="&#xe891;" d="M714 314l0 71q0 15-11 25t-25 11l-280 0 105 105q11 11 11 25t-11 25l-51 51q-10 10-25 10t-25-10l-202-202-51-51q-10-10-10-25t10-25l51-51 202-202q10-10 25-10t25 10l51 51q10 10 10 25t-10 25l-105 105 280 0q15 0 25 11t11 25z m143 36q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="right-circled" unicode="&#xe892;" d="M717 350q0 15-10 25l-51 51-202 202q-10 10-25 10t-25-10l-51-51q-10-10-10-25t10-25l105-105-280 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l280 0-105-105q-11-11-11-25t11-25l51-51q10-10 25-10t25 10l202 202 51 51q10 10 10 25z m140 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="up-circled" unicode="&#xe893;" d="M716 351q0 15-10 25l-202 202-51 51q-10 10-25 10t-25-10l-51-51-202-202q-10-10-10-25t10-25l51-51q10-10 25-10t25 10l105 105 0-280q0-15 11-25t25-11l71 0q15 0 25 11t11 25l0 280 105-105q11-11 25-11t25 11l51 51q10 10 10 25z m141-1q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="down-circled" unicode="&#xe894;" d="M716 349q0 15-10 25l-51 51q-10 10-25 10t-25-10l-105-105 0 280q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-280-105 105q-11 11-25 11t-25-11l-51-51q-10-10-10-25t10-25l202-202 51-51q10-10 25-10t25 10l51 51 202 202q10 10 10 25z m141 1q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="tasks" unicode="&#xe8de;" d="M571 64l357 0 0 71-357 0 0-71z m-214 286l571 0 0 71-571 0 0-71z m357 286l214 0 0 71-214 0 0-71z m286-464l0-143q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 143q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 286l0-143q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 143q0 15 11 25t25 11l929 0q15 0 25-11t11-25z m0 286l0-143q0-15-11-25t-25-11l-929 0q-15 0-25 11t-11 25l0 143q0 15 11 25t25 11l929 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="filter" unicode="&#xe8df;" d="M783 685q9-23-8-39l-275-275 0-414q0-23-22-33-7-3-14-3-15 0-25 11l-143 143q-11 11-11 25l0 271-275 275q-17 16-8 39 9 22 33 22l714 0q23 0 33-22z" horiz-adv-x="785.714" />
<glyph glyph-name="resize-full-alt" unicode="&#xe870;" d="M716 548l-198-198 198-198 80 80q16 17 39 8 22-9 22-33l0-250q0-15-11-25t-25-11l-250 0q-23 0-33 22-9 22 8 39l80 80-198 198-198-198 80-80q17-17 8-39t-33-22l-250 0q-15 0-25 11t-11 25l0 250q0 23 22 33 22 9 39-8l80-80 198 198-198 198-80-80q-11-11-25-11-7 0-13 3-22 9-22 33l0 250q0 15 11 25t25 11l250 0q23 0 33-22 9-22-8-39l-80-80 198-198 198 198-80 80q-17 17-8 39t33 22l250 0q15 0 25-11t11-25l0-250q0-23-22-33-7-3-14-3-15 0-25 11z" horiz-adv-x="857.143" />
<glyph glyph-name="beaker" unicode="&#xe8e0;" d="M852 42q31-50 12-85t-78-35l-643 0q-59 0-78 35t12 85l281 442 0 223-36 0q-15 0-25 11t-11 25 11 25 25 11l286 0q15 0 25-11t11-25-11-25-25-11l-36 0 0-223z m-435 405l-152-239 397 0-152 239-11 17 0 243-71 0 0-243z" horiz-adv-x="928.571" />
<glyph glyph-name="docs" unicode="&#xe858;" d="M946 636q22 0 38-16t16-38l0-679q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 161-304 0q-22 0-38 16t-16 38l0 375q0 22 11 49t27 42l228 228q16 16 42 27t49 11l232 0q22 0 38-16t16-38l0-183q38 22 71 22l232 0z m-304-119l-167-167 167 0 0 167z m-357 214l-167-167 167 0 0 167z m109-361l176 176 0 232-214 0 0-232q0-22-16-38t-38-16l-232 0 0-357 286 0 0 143q0 22 11 49t27 42z m533-449l0 643-214 0 0-232q0-22-16-38t-38-16l-232 0 0-357 500 0z" horiz-adv-x="1000" />
<glyph glyph-name="menu" unicode="&#xe861;" d="M857 100l0-71q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l786 0q15 0 25-11t11-25z m0 286l0-71q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l786 0q15 0 25-11t11-25z m0 286l0-71q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l786 0q15 0 25-11t11-25z" horiz-adv-x="857.143" />
<glyph glyph-name="list-bullet" unicode="&#xe8bc;" d="M214 64q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m0 286q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m786-232l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l679 0q7 0 13-5t5-13z m-786 518q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m786-232l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l679 0q7 0 13-5t5-13z m0 286l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l679 0q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="list-numbered" unicode="&#xe8bd;" d="M213-54q0-45-30-70t-76-26q-59 0-96 37l32 49q27-25 59-25 16 0 28 8t12 24q0 36-59 31l-15 31q4 6 18 24t24 30 21 21l0 1q-9 0-27-1t-27-1l0-30-59 0 0 85 186 0 0-49-53-64q28-7 45-27t17-49z m1 350l0-89-202 0q-3 20-3 30 0 28 13 52t32 38 37 27 32 24 13 25q0 14-8 21t-22 8q-26 0-45-32l-47 33q13 28 40 44t59 16q41 0 69-23t28-63q0-28-19-51t-42-36-42-28-20-29l71 0 0 33 59 0z m786-178l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 8 5 13t13 5l679 0q7 0 13-5t5-13z m-786 502l0-55-187 0 0 55 60 0q0 23 0 68t0 68l0 7-1 0q-4-9-28-30l-40 42 76 71 59 0 0-225 60 0z m786-216l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 8 5 13t13 5l679 0q7 0 13-5t5-13z m0 286l0-107q0-7-5-13t-13-5l-679 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l679 0q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="strike" unicode="&#xe8be;" d="M982 350q8 0 13-5t5-13l0-36q0-8-5-13t-13-5l-964 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l964 0z m-713 36q-16 20-28 45-27 54-27 105 0 101 75 172 74 71 219 71 28 0 93-11 37-7 99-27 6-21 12-66 8-69 8-102 0-10-3-25l-7-2-47 3-8 1q-28 83-57 114-49 51-117 51-64 0-102-33-37-32-37-81 0-41 37-78t156-72q39-11 97-37 32-16 53-29l-415 0z m283-143l229 0q4-22 4-51 0-62-23-118-13-31-40-58-21-20-61-45-45-27-85-37-45-12-113-12-64 0-109 13l-78 22q-32 9-40 16-4 4-4 12l0 7q0 60-1 87-1 17 0 38l1 21 0 25 57 1q8-19 17-40t13-31 7-15q20-32 45-52 24-20 59-32 33-12 74-12 36 0 78 15 43 15 68 48 26 34 26 72 0 47-45 88-19 16-76 40z" horiz-adv-x="1000" />
<glyph glyph-name="underline" unicode="&#xe8bf;" d="M27 726q-21 1-25 2l-2 49q7 1 22 1 33 0 62-2 74-4 93-4 48 0 94 2 65 2 81 3 31 0 48 1l-1-8 1-36 0-5q-33-5-69-5-33 0-44-14-7-8-7-74 0-7 0-18t0-14l1-128 8-156q3-69 28-113 20-33 54-51 49-26 99-26 58 0 107 16 31 10 55 28 27 20 36 36 20 31 30 64 12 41 12 128 0 44-2 71t-6 68-8 89l-2 33q-3 37-13 49-19 20-43 19l-56-1-8 2 1 48 47 0 114-6q42-2 109 6l10-1q3-21 3-28 0-4-2-17-25-7-47-7-41-6-44-9-8-8-8-23 0-4 1-15t1-17q4-11 12-221 3-109-8-170-8-42-23-68-21-36-62-69-42-32-102-50-61-18-142-18-93 0-158 26-66 26-100 68t-46 109q-9 45-9 132l0 186q0 105-9 119-14 20-82 22z m830-786l0 36q0 8-5 13t-13 5l-821 0q-8 0-13-5t-5-13l0-36q0-8 5-13t13-5l821 0q8 0 13 5t5 13z" horiz-adv-x="857.143" />
<glyph glyph-name="table" unicode="&#xe8c2;" d="M286 82l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m0 214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m286-214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m-286 429l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m286-214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m286-214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m-286 429l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m286-214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m0 214l0 107q0 8-5 13t-13 5l-179 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l179 0q8 0 13 5t5 13z m71 179l0-607q0-37-26-63t-63-26l-750 0q-37 0-63 26t-26 63l0 607q0 37 26 63t63 26l750 0q37 0 63-26t26-63z" horiz-adv-x="928.571" />
<glyph glyph-name="magic" unicode="&#xe8e1;" d="M664 526l163 163-60 60-163-163z m249 163q0-15-10-25l-718-718q-10-10-25-10t-25 10l-110 110q-10 10-10 25t10 25l718 718q10 10 25 10t25-10l110-110q10-10 10-25z m-754 106l55-17-55-17-17-55-17 55-55 17 55 17 17 55z m195-90l109-33-109-33-33-109-33 109-109 33 109 33 33 109z m519-267l55-17-55-17-17-55-17 55-55 17 55 17 17 55z m-357 357l55-17-55-17-17-55-17 55-55 17 55 17 17 55z" horiz-adv-x="928.571" />
<glyph glyph-name="money" unicode="&#xe8e3;" d="M429 207l214 0 0 54-71 0 0 250-64 0-83-76 43-45q23 21 31 32l1 0 0-161-71 0 0-54z m286 143q0-39-12-79t-33-75-57-56-77-22-77 22-57 56-33 75-12 79 12 79 33 75 57 56 77 22 77-22 57-56 33-75 12-79z m286-143l0 286q-59 0-101 42t-42 101l-643 0q0-59-42-101t-101-42l0-286q59 0 101-42t42-101l643 0q0 59 42 101t101 42z m71 464l0-643q0-15-11-25t-25-11l-1000 0q-15 0-25 11t-11 25l0 643q0 15 11 25t25 11l1000 0q15 0 25-11t11-25z" horiz-adv-x="1071.429" />
<glyph glyph-name="columns" unicode="&#xe8c3;" d="M89-7l339 0 0 643-357 0 0-625q0-7 5-13t13-5z m768 18l0 625-357 0 0-643 339 0q7 0 13 5t5 13z m71 679l0-679q0-37-26-63t-63-26l-750 0q-37 0-63 26t-26 63l0 679q0 37 26 63t63 26l750 0q37 0 63-26t26-63z" horiz-adv-x="928.571" />
<glyph glyph-name="sort" unicode="&#xe8ec;" d="M571 243q0-15-11-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25 25 11l500 0q15 0 25-11t11-25z m0 214q0-15-11-25t-25-11l-500 0q-15 0-25 11t-11 25 11 25l250 250q11 11 25 11t25-11l250-250q11-11 11-25z" horiz-adv-x="571.429" />
<glyph glyph-name="sort-down" unicode="&#xe8ed;" d="M571 243q0-15-11-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25 25 11l500 0q15 0 25-11t11-25z" horiz-adv-x="571.429" />
<glyph glyph-name="sort-up" unicode="&#xe8ee;" d="M571 457q0-15-11-25t-25-11l-500 0q-15 0-25 11t-11 25 11 25l250 250q11 11 25 11t25-11l250-250q11-11 11-25z" horiz-adv-x="571.429" />
<glyph glyph-name="mail-alt" unicode="&#xe805;" d="M1000 454l0-443q0-37-26-63t-63-26l-821 0q-37 0-63 26t-26 63l0 443q25-27 56-49 202-137 277-193 32-23 52-37t53-27 61-14l1 0q28 0 61 14t53 27 52 37q95 69 278 193 32 22 56 49z m0 164q0-44-27-84t-68-69q-210-146-261-181-6-4-24-17t-30-21-29-18-32-15-28-5l-1 0q-13 0-28 5t-32 15-29 18-30 21-24 17q-51 36-146 102t-114 80q-35 23-65 64t-31 76q0 44 23 73t66 29l821 0q36 0 63-26t27-63z" horiz-adv-x="1000" />
<glyph glyph-name="gauge" unicode="&#xe8f6;" d="M214 207q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m107 250q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m239-268l56 213q3 15-4 27t-21 16-27-4-17-22l-56-213q-33-3-60-24t-35-55q-11-43 11-81t65-50 81 11 50 65q9 33-3 65t-40 51z m368 18q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m-357 357q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m250-107q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m179-250q0-146-79-270-11-16-30-16l-782 0q-20 0-30 16-79 123-79 270 0 102 40 194t107 160 160 107 194 40 194-40 160-107 107-160 40-194z" horiz-adv-x="1000" />
<glyph glyph-name="comment-empty" unicode="&#xe84c;" d="M500 636q-114 0-213-39t-157-105-58-142q0-62 40-119t112-98l49-28-15-54q-13-51-39-96 85 35 153 95l24 21 32-3q39-4 73-4 114 0 213 39t157 105 58 142-58 142-157 105-213 39z m500-286q0-97-67-179t-182-130-251-48q-39 0-81 4-110-98-257-135-27-8-64-12l-3 0q-8 0-15 6t-9 15l0 1q-2 2 0 7t1 6 3 5l3 5t4 5 4 5q4 4 17 19t19 21 17 22 18 28 15 33 15 42q-88 50-138 123t-50 157q0 97 67 179t182 130 251 48 251-48 182-130 67-179z" horiz-adv-x="1000" />
<glyph glyph-name="chat-empty" unicode="&#xe84d;" d="M393 636q-85 0-160-29t-118-79-44-107q0-46 30-88t83-74l54-31-20-47q19 11 35 22l25 17 30-6q44-8 85-8 85 0 160 29t118 79 44 107-44 107-118 79-160 29z m0 71q107 0 197-38t143-104 52-143-52-143-143-104-197-38q-48 0-98 9-69-49-155-71-20-5-48-9l-2 0q-6 0-11 4t-6 12q-1 2-1 4t0 4 1 3l1 3t2 3 2 3 3 3 2 3q3 3 13 14t15 16 13 16 14 21 11 25q-69 40-109 99t-40 125q0 78 52 143t143 104 197 38z m459-652q6-13 11-25t14-21 13-16 15-16 13-14q1-1 2-3t3-3 2-3 2-3l1-3t1-3 0-4-1-4q-2-8-7-12t-12-4q-28 4-48 9-86 22-155 71-50-9-98-9-151 0-263 74 32-2 49-2 90 0 172 25t147 72q70 51 107 118t37 142q0 43-13 85 72-40 114-99t42-128q0-67-40-125t-109-98z" horiz-adv-x="1000" />
<glyph glyph-name="sitemap" unicode="&#xe8f7;" d="M1000 154l0-179q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l54 0 0 107-286 0 0-107 54 0q22 0 38-16t16-38l0-179q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l54 0 0 107-286 0 0-107 54 0q22 0 38-16t16-38l0-179q0-22-16-38t-38-16l-179 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l54 0 0 107q0 29 21 50t50 21l286 0 0 107-54 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l179 0q22 0 38-16t16-38l0-179q0-22-16-38t-38-16l-54 0 0-107 286 0q29 0 50-21t21-50l0-107 54 0q22 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="paste" unicode="&#xe8c6;" d="M429-79l500 0 0 357-232 0q-22 0-38 16t-16 38l0 232-214 0 0-643z m143 804l0 36q0 7-5 13t-13 5l-393 0q-7 0-13-5t-5-13l0-36q0-7 5-13t13-5l393 0q7 0 13 5t5 13z m143-375l167 0-167 167 0-167z m286-71l0-375q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 89-304 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l607 0q22 0 38-16t16-38l0-183q12-7 20-16l228-228q16-16 27-42t11-49z" horiz-adv-x="1000" />
<glyph glyph-name="lightbulb" unicode="&#xe86d;" d="M411 529q0-7-5-13t-13-5-13 5-5 13q0 26-30 40t-59 14q-7 0-13 5t-5 13 5 13 13 5q28 0 56-9t49-30 21-50z m89 0q0 40-19 75t-50 57-69 35-76 13-76-13-69-35-50-57-19-75q0-56 38-100 6-6 17-18t17-18q71-85 79-166l127 0q7 81 79 166 6 6 17 18t17 18q38 44 38 100z m71 0q0-86-57-150-25-27-42-49t-33-53-19-60q26-16 26-46 0-21-14-36 14-15 14-36 0-29-25-45 7-13 7-26 0-26-18-40t-43-14q-11-25-33-39t-49-15-49 15-33 39q-26 0-43 14t-18 40q0 13 7 26-25 16-25 45 0 21 14 36-14 15-14 36 0 30 26 46-2 28-19 60t-33 53-42 49q-57 63-57 150 0 55 25 103t65 79 92 50 104 18 104-18 92-50 65-79 25-103z" horiz-adv-x="571.429" />
<glyph glyph-name="exchange" unicode="&#xe957;" d="M1000 189l0-107q0-7-5-13t-13-5l-768 0 0-107q0-7-5-13t-13-5q-7 0-13 6l-178 179q-5 5-5 12 0 8 5 13l179 179q5 5 13 5 7 0 13-5t5-13l0-107 768 0q7 0 13-5t5-13z m0 304q0-8-5-13l-179-179q-5-5-13-5-7 0-13 5t-5 13l0 107-768 0q-7 0-13 5t-5 13l0 107q0 7 5 13t13 5l768 0 0 107q0 8 5 13t13 5q7 0 13-6l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="download-cloud" unicode="&#xe83d;" d="M714 332q0 8-5 13t-13 5l-125 0 0 196q0 7-5 13t-13 5l-107 0q-7 0-13-5t-5-13l0-196-125 0q-7 0-13-5t-5-13q0-8 5-13l196-196q5-5 13-5t13 5l196 196q6 7 6 13z m357-125q0-89-63-151t-151-63l-607 0q-103 0-177 73t-73 177q0 73 39 134t105 92q-1 17-1 24 0 118 84 202t202 84q87 0 159-49t105-129q40 35 93 35 59 0 101-42t42-101q0-42-23-77 73-17 119-76t47-133z" horiz-adv-x="1071.429" />
<glyph glyph-name="upload-cloud" unicode="&#xe83e;" d="M714 368q0 8-5 13l-196 196q-5 5-13 5t-13-5l-196-196q-6-7-6-13 0-8 5-13t13-5l125 0 0-196q0-7 5-13t13-5l107 0q7 0 13 5t5 13l0 196 125 0q7 0 13 5t5 13z m357-161q0-89-63-151t-151-63l-607 0q-103 0-177 73t-73 177q0 73 39 134t105 92q-1 17-1 24 0 118 84 202t202 84q87 0 159-49t105-129q40 35 93 35 59 0 101-42t42-101q0-42-23-77 73-17 119-76t47-133z" horiz-adv-x="1071.429" />
<glyph glyph-name="user-md" unicode="&#xe8fc;" d="M214 100q0-15-11-25t-25-11-25 11-11 25 11 25 25 11 25-11 11-25z m571-34q0-68-41-106t-108-39l-488 0q-68 0-108 39t-41 106q0 38 3 73t13 77 27 74 45 57 67 34q-12-29-12-67l0-113q-32-11-52-39t-20-62q0-45 31-76t76-31 76 31 31 76q0 34-20 62t-52 39l0 113q0 35 14 52 74-58 165-58t165 58q14-17 14-52l0-36q-59 0-101-42t-42-101l0-50q-18-16-18-40 0-22 16-38t38-16 38 16 16 38q0 23-18 40l0 50q0 29 21 50t50 21 50-21 21-50l0-50q-18-16-18-40 0-22 16-38t38-16 38 16 16 38q0 23-18 40l0 50q0 38-19 71t-52 52q0 6 0 24t0 27-1 23-4 26-7 22q38-8 67-34t45-57 27-74 13-77 3-73z m-179 498q0-89-63-151t-151-63-151 63-63 151 63 151 151 63 151-63 63-151z" horiz-adv-x="785.714" />
<glyph glyph-name="stethoscope" unicode="&#xe8fd;" d="M714 457q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 0q0-35-20-62t-52-39l0-220q0-89-73-151t-177-63-177 63-73 151l0 74q-92 11-153 71t-61 141l0 286q0 15 11 25t25 11q3 0 9-1 9 17 26 27t36 10q30 0 50-21t21-50-21-50-50-21q-18 0-36 10l0-224q0-59 52-101t126-42 126 42 52 101l0 224q-17-10-36-10-30 0-50 21t-21 50 21 50 50 21q20 0 36-10t26-27q6 1 9 1 15 0 25-11t11-25l0-286q0-80-61-141t-153-71l0-74q0-59 52-101t126-42 126 42 52 101l0 220q-32 12-52 39t-20 62q0 45 31 76t76 31 76-31 31-76z" horiz-adv-x="785.714" />
<glyph glyph-name="suitcase" unicode="&#xe8c8;" d="M357 636l286 0 0 71-286 0 0-71z m-196 0l0-714-36 0q-51 0-88 37t-37 88l0 464q0 51 37 88t88 37l36 0z m625 0l0-714-571 0 0 714 71 0 0 89q0 22 16 38t38 16l321 0q22 0 38-16t16-38l0-89 71 0z m214-125l0-464q0-51-37-88t-88-37l-36 0 0 714 36 0q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="bell-alt" unicode="&#xe84f;" d="M473-96q0 9-9 9-33 0-57 24t-24 57q0 9-9 9t-9-9q0-41 29-69t69-29q9 0 9 9z m455 161q0-29-21-50t-50-21l-250 0q0-59-42-101t-101-42-101 42-42 101l-250 0q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 65q-4 10-4 21 0 22 16 38t38 16 38-16 16-38q0-11-4-21 94-11 147-65t54-146q0-146 54-278t160-222z" horiz-adv-x="928.571" />
<glyph glyph-name="coffee" unicode="&#xe8f9;" d="M929 493q0 45-31 76t-76 31l-36 0 0-214 36 0q45 0 76 31t31 76z m-929-429l1000 0q0-59-42-101t-101-42l-714 0q-59 0-101 42t-42 101z m1036 429q0-89-63-151t-151-63l-36 0 0-18q0-51-37-88t-88-37l-393 0q-51 0-88 37t-37 88l0 411q0 15 11 25t25 11l643 0q89 0 151-63t63-151z" horiz-adv-x="1071.429" />
<glyph glyph-name="food" unicode="&#xe8fa;" d="M357 814l0-357q0-34-20-62t-52-39l0-435q0-29-21-50t-50-21l-71 0q-29 0-50 21t-21 50l0 435q-32 11-52 39t-20 62l0 357q0 15 11 25t25 11 25-11 11-25l0-232q0-15 11-25t25-11 25 11 11 25l0 232q0 15 11 25t25 11 25-11 11-25l0-232q0-15 11-25t25-11 25 11 11 25l0 232q0 15 11 25t25 11 25-11 11-25z m429 0l0-893q0-29-21-50t-50-21l-71 0q-29 0-50 21t-21 50l0 286-125 0q-7 0-13 5t-5 13l0 446q0 74 52 126t126 52l143 0q15 0 25-11t11-25z" horiz-adv-x="785.714" />
<glyph glyph-name="doc-text" unicode="&#xe945;" d="M571 189l0-36q0-8-5-13t-13-5l-393 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l393 0q8 0 13-5t5-13z m0 143l0-36q0-8-5-13t-13-5l-393 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l393 0q8 0 13-5t5-13z m-500-339l571 0 0 429-232 0q-22 0-38 16t-16 38l0 232-286 0 0-714z m357 500l210 0q-6 16-12 23l-175 175q-7 7-23 12l0-210z m286-18l0-500q0-22-16-38t-38-16l-607 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l357 0q22 0 49-11t42-27l174-174q16-16 27-42t11-49z" horiz-adv-x="714.286" />
<glyph glyph-name="building" unicode="&#xe902;" d="M214 118l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m143 0l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m429-286l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m429-286l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m429-286l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m286-143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m143 0l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143-768l214 0 0 857-643 0 0-857 214 0 0 125q0 7 5 13t13 5l179 0q7 0 13-5t5-13l0-125z m286 893l0-929q0-15-11-25t-25-11l-714 0q-15 0-25 11t-11 25l0 929q0 15 11 25t25 11l714 0q15 0 25-11t11-25z" horiz-adv-x="785.714" />
<glyph glyph-name="hospital" unicode="&#xe901;" d="M214 118l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m0 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m143 0l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m429-286l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m286-143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143 143l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m143 0l0-36q0-7-5-13t-13-5l-36 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l36 0q7 0 13-5t5-13z m-143-482l214 0 0 643-143 0 0-18q0-22-16-38t-38-16l-250 0q-22 0-38 16t-16 38l0 18-143 0 0-643 214 0 0 125q0 7 5 13t13 5l179 0q7 0 13-5t5-13l0-125z m0 661l0 179q0 7-5 13t-13 5l-36 0q-7 0-13-5t-5-13l0-54-71 0 0 54q0 7-5 13t-13 5l-36 0q-7 0-13-5t-5-13l0-179q0-7 5-13t13-5l36 0q7 0 13 5t5 13l0 54 71 0 0-54q0-7 5-13t13-5l36 0q7 0 13 5t5 13z m286 18l0-714q0-15-11-25t-25-11l-714 0q-15 0-25 11t-11 25l0 714q0 15 11 25t25 11l179 0 0 161q0 22 16 38t38 16l250 0q22 0 38-16t16-38l0-161 179 0q15 0 25-11t11-25z" horiz-adv-x="785.714" />
<glyph glyph-name="ambulance" unicode="&#xe8fe;" d="M357 64q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m-214 286l214 0 0 143-88 0q-8-1-12-5l-109-109q-4-7-5-12l0-17z m714-286q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m71 375l0 107q0 8-5 13t-13 5l-125 0 0 125q0 8-5 13t-13 5l-107 0q-8 0-13-5t-5-13l0-125-125 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l125 0 0-125q0-8 5-13t13-5l107 0q8 0 13 5t5 13l0 125 125 0q8 0 13 5t5 13z m143 304l0-643q0-15-11-25t-25-11l-107 0q0-59-42-101t-101-42-101 42-42 101l-214 0q0-59-42-101t-101-42-101 42-42 101l-71 0q-15 0-25 11t-11 25 11 25 25 11l0 232q0 15 7 32t18 28l110 110q11 11 28 18t32 7l89 0 0 179q0 15 11 25t25 11l643 0q15 0 25-11t11-25z" horiz-adv-x="1071.429" />
<glyph glyph-name="medkit" unicode="&#xe8ff;" d="M714 225l0 107q0 8-5 13t-13 5l-125 0 0 125q0 8-5 13t-13 5l-107 0q-8 0-13-5t-5-13l0-125-125 0q-8 0-13-5t-5-13l0-107q0-8 5-13t13-5l125 0 0-125q0-8 5-13t13-5l107 0q8 0 13 5t5 13l0 125 125 0q8 0 13 5t5 13z m-357 411l286 0 0 71-286 0 0-71z m-214 0l0-714-18 0q-51 0-88 37t-37 88l0 464q0 51 37 88t88 37l18 0z m661 0l0-714-607 0 0 714 89 0 0 89q0 22 16 38t38 16l321 0q22 0 38-16t16-38l0-89 89 0z m196-125l0-464q0-51-37-88t-88-37l-18 0 0 714 18 0q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="fighter-jet" unicode="&#xe8b2;" d="M1071 314q-1-18-161-54l-196-18-125-36-36 0-163-196 39 0q15 0 25-3t11-6-11-6-25-3l-179 0 0 18 36 0 0 232-89 0-107-125-54 0-18 18 0 107 18 0 0 18 71 0 0 4-107 13 0 71 107 13 0 4-71 0 0 18-18 0 0 107 18 18 54 0 107-125 89 0 0 232-36 0 0 18 179 0q15 0 25-3t11-6-11-6-25-3l-39 0 163-196 36 0 125-36 196-18q146-32 160-52z" horiz-adv-x="1071.429" />
<glyph glyph-name="beer" unicode="&#xe8fb;" d="M357 350l0 214-143 0 0-143q0-30 21-50t50-21l71 0z m571-250l0-107-643 0 0 107 71 107-71 0q-89 0-151 63t-63 151l0 179-36 36 18 71 268 0 18 71 536 0 18-107-36-18 0-446z" horiz-adv-x="928.571" />
<glyph glyph-name="h-sigh" unicode="&#xe900;" d="M714 100l0 500q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-179-286 0 0 179q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-500q0-15 11-25t25-11l71 0q15 0 25 11t11 25l0 179 286 0 0-179q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m143 518l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="plus-squared" unicode="&#xe821;" d="M714 314l0 71q0 15-11 25t-25 11l-179 0 0 179q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-179-179 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l179 0 0-179q0-15 11-25t25-11l71 0q15 0 25 11t11 25l0 179 179 0q15 0 25 11t11 25z m143 304l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="angle-double-left" unicode="&#xe885;" d="M350 82q0-7-6-13l-28-28q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l28-28q6-6 6-13t-6-13l-219-219 219-219q6-6 6-13z m214 0q0-7-6-13l-28-28q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l28-28q6-6 6-13t-6-13l-219-219 219-219q6-6 6-13z" horiz-adv-x="571.429" />
<glyph glyph-name="angle-double-right" unicode="&#xe886;" d="M332 314q0-7-6-13l-260-260q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l219 219-219 219q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l260-260q6-6 6-13z m214 0q0-7-6-13l-260-260q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l219 219-219 219q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l260-260q6-6 6-13z" horiz-adv-x="571.429" />
<glyph glyph-name="angle-double-up" unicode="&#xe887;" d="M600 118q0-7-6-13l-28-28q-6-6-13-6t-13 6l-219 219-219-219q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l260-260q6-6 6-13z m0 214q0-7-6-13l-28-28q-6-6-13-6t-13 6l-219 219-219-219q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l260-260q6-6 6-13z" horiz-adv-x="642.857" />
<glyph glyph-name="angle-double-down" unicode="&#xe888;" d="M600 368q0-7-6-13l-260-260q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l219-219 219 219q6 6 13 6t13-6l28-28q6-6 6-13z m0 214q0-7-6-13l-260-260q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l219-219 219 219q6 6 13 6t13-6l28-28q6-6 6-13z" horiz-adv-x="642.857" />
<glyph glyph-name="angle-left" unicode="&#xe87d;" d="M350 546q0-7-6-13l-219-219 219-219q6-6 6-13t-6-13l-28-28q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l28-28q6-6 6-13z" horiz-adv-x="357.143" />
<glyph glyph-name="angle-right" unicode="&#xe87e;" d="M332 314q0-7-6-13l-260-260q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l219 219-219 219q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l260-260q6-6 6-13z" horiz-adv-x="357.143" />
<glyph glyph-name="angle-up" unicode="&#xe87f;" d="M600 189q0-7-6-13l-28-28q-6-6-13-6t-13 6l-219 219-219-219q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l260-260q6-6 6-13z" horiz-adv-x="642.857" />
<glyph glyph-name="angle-down" unicode="&#xe880;" d="M600 439q0-7-6-13l-260-260q-6-6-13-6t-13 6l-260 260q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l219-219 219 219q6 6 13 6t13-6l28-28q6-6 6-13z" horiz-adv-x="642.857" />
<glyph glyph-name="desktop" unicode="&#xe95a;" d="M1000 296l0 464q0 7-5 13t-13 5l-893 0q-7 0-13-5t-5-13l0-464q0-7 5-13t13-5l893 0q7 0 13 5t5 13z m71 464l0-607q0-37-26-63t-63-26l-304 0q0-21 9-43t18-40 9-24q0-15-11-25t-25-11l-286 0q-15 0-25 11t-11 25q0 8 9 25t18 39 9 44l-304 0q-37 0-63 26t-26 63l0 607q0 37 26 63t63 26l893 0q37 0 63-26t26-63z" horiz-adv-x="1071.429" />
<glyph glyph-name="laptop" unicode="&#xe90e;" d="M232 136q-37 0-63 26t-26 63l0 393q0 37 26 63t63 26l607 0q37 0 63-26t26-63l0-393q0-37-26-63t-63-26l-607 0z m-18 482l0-393q0-7 5-13t13-5l607 0q7 0 13 5t5 13l0 393q0 7-5 13t-13 5l-607 0q-7 0-13-5t-5-13z m768-518l89 0 0-54q0-22-26-38t-63-16l-893 0q-37 0-63 16t-26 38l0 54 982 0z m-402-54q9 0 9 9t-9 9l-89 0q-9 0-9-9t9-9l89 0z" horiz-adv-x="1071.429" />
<glyph glyph-name="tablet" unicode="&#xe95c;" d="M357 64q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m214 89l0 536q0 7-5 13t-13 5l-464 0q-7 0-13-5t-5-13l0-536q0-7 5-13t13-5l464 0q7 0 13 5t5 13z m71 536l0-607q0-37-26-63t-63-26l-464 0q-37 0-63 26t-26 63l0 607q0 37 26 63t63 26l464 0q37 0 63-26t26-63z" horiz-adv-x="642.857" />
<glyph glyph-name="mobile" unicode="&#xe8a9;" d="M259 64q0 18-13 32t-32 13-32-13-13-32 13-32 32-13 32 13 13 32z m116 89l0 393q0 7-5 13t-13 5l-286 0q-7 0-13-5t-5-13l0-393q0-7 5-13t13-5l286 0q7 0 13 5t5 13z m-107 473q0 9-9 9l-89 0q-9 0-9-9t9-9l89 0q9 0 9 9z m161 9l0-571q0-29-21-50t-50-21l-286 0q-29 0-50 21t-21 50l0 571q0 29 21 50t50 21l286 0q29 0 50-21t21-50z" horiz-adv-x="428.571" />
<glyph glyph-name="circle-empty" unicode="&#xe8d2;" d="M429 654q-83 0-152-41t-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152-41 152-110 110-152 41z m429-304q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="quote-left" unicode="&#xe842;" d="M429 314l0-214q0-45-31-76t-76-31l-214 0q-45 0-76 31t-31 76l0 393q0 58 23 111t61 91 91 61 111 23l36 0q15 0 25-11t11-25l0-71q0-15-11-25t-25-11l-36 0q-59 0-101-42t-42-101l0-18q0-22 16-38t38-16l125 0q45 0 76-31t31-76z m500 0l0-214q0-45-31-76t-76-31l-214 0q-45 0-76 31t-31 76l0 393q0 58 23 111t61 91 91 61 111 23l36 0q15 0 25-11t11-25l0-71q0-15-11-25t-25-11l-36 0q-59 0-101-42t-42-101l0-18q0-22 16-38t38-16l125 0q45 0 76-31t31-76z" horiz-adv-x="928.571" />
<glyph glyph-name="quote-right" unicode="&#xe843;" d="M429 671l0-393q0-58-23-111t-61-91-91-61-111-23l-36 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l36 0q59 0 101 42t42 101l0 18q0 22-16 38t-38 16l-125 0q-45 0-76 31t-31 76l0 214q0 45 31 76t76 31l214 0q45 0 76-31t31-76z m500 0l0-393q0-58-23-111t-61-91-91-61-111-23l-36 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l36 0q59 0 101 42t42 101l0 18q0 22-16 38t-38 16l-125 0q-45 0-76 31t-31 76l0 214q0 45 31 76t76 31l214 0q45 0 76-31t31-76z" horiz-adv-x="928.571" />
<glyph glyph-name="spinner" unicode="&#xe8f8;" d="M277 100q0-33-24-57t-57-23q-33 0-57 23t-23 57 23 57 57 23q33 0 57-23t24-57z m241-107q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m-339 357q0-37-26-63t-63-26-63 26-26 63 26 63 63 26 63-26 26-63z m580-250q0-26-18-44t-44-18-44 18-18 44 18 44 44 18 44-18 18-44z m-464 500q0-41-29-69t-69-29-69 29-29 69 29 69 69 29 69-29 29-69z m259 107q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m304-357q0-22-16-38t-38-16-38 16-16 38 16 38 38 16 38-16 16-38z m-116 250q0-18-13-32t-32-13-32 13-13 32 13 32 32 13 32-13 13-32z" horiz-adv-x="875" />
<glyph glyph-name="circle" unicode="&#xe8d1;" d="M857 350q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="reply" unicode="&#xe845;" d="M1000 225q0-93-71-252-2-4-6-13t-8-17-7-12q-7-9-16-9-8 0-13 6t-5 14q0 5 1 15t1 13q3 38 3 69 0 56-10 101t-27 77-45 56-59 39-74 24-86 12-98 3l-125 0 0-143q0-15-11-25t-25-11-25 11l-286 286q-11 11-11 25t11 25l286 286q11 11 25 11t25-11 11-25l0-143 125 0q398 0 488-225 30-75 30-186z" horiz-adv-x="1000" />
<glyph glyph-name="folder-empty" unicode="&#xe85a;" d="M857 118l0 393q0 22-16 38t-38 16l-393 0q-22 0-38 16t-16 38l0 36q0 22-16 38t-38 16l-179 0q-22 0-38-16t-16-38l0-536q0-22 16-38t38-16l679 0q22 0 38 16t16 38z m71 393l0-393q0-51-37-88t-88-37l-679 0q-51 0-88 37t-37 88l0 536q0 51 37 88t88 37l179 0q51 0 88-37t37-88l0-18 375 0q51 0 88-37t37-88z" horiz-adv-x="928.571" />
<glyph glyph-name="folder-open-empty" unicode="&#xe85b;" d="M994 330q0 20-30 20l-607 0q-22 0-48-12t-40-29l-164-203q-10-13-10-22 0-20 30-20l607 0q22 0 48 12t40 30l164 203q10 12 10 22z m-637 91l429 0 0 89q0 22-16 38t-38 16l-321 0q-22 0-38 16t-16 38l0 36q0 22-16 38t-38 16l-179 0q-22 0-38-16t-16-38l0-476 143 176q25 30 65 49t78 19z m708-91q0-35-26-67l-165-203q-24-30-65-49t-78-19l-607 0q-51 0-88 37t-37 88l0 536q0 51 37 88t88 37l179 0q51 0 88-37t37-88l0-18 304 0q51 0 88-37t37-88l0-89 107 0q30 0 55-14t37-39q8-18 8-38z" horiz-adv-x="1071.429" />
<glyph glyph-name="plus-squared-small" unicode="&#xe822;" d="M500 332l0-36q0-8-5-13t-13-5l-125 0 0-125q0-8-5-13t-13-5l-36 0q-8 0-13 5t-5 13l0 125-125 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l125 0 0 125q0 8 5 13t13 5l36 0q8 0 13-5t5-13l0-125 125 0q8 0 13-5t5-13z m71-214l0 393q0 22-16 38t-38 16l-393 0q-22 0-38-16t-16-38l0-393q0-22 16-38t38-16l393 0q22 0 38 16t16 38z m71 393l0-393q0-51-37-88t-88-37l-393 0q-52 0-88 37t-37 88l0 393q0 52 37 88t88 37l393 0q52 0 88-37t37-88z" horiz-adv-x="642.857" />
<glyph glyph-name="minus-squared-small" unicode="&#xe827;" d="M518 636q52 0 88-37t37-88l0-393q0-51-37-88t-88-37l-393 0q-52 0-88 37t-37 88l0 393q0 52 37 88t88 37l393 0z m54-518l0 393q0 22-16 38t-38 16l-393 0q-22 0-38-16t-16-38l0-393q0-22 16-38t38-16l393 0q22 0 38 16t16 38z m-89 232q8 0 13-5t5-13l0-36q0-8-5-13t-13-5l-321 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l321 0z" horiz-adv-x="642.857" />
<glyph glyph-name="smile" unicode="&#xe903;" d="M633 250q-21-68-77-109t-127-41-127 41-77 109q-4 14 2 27t21 18q14 4 27-2t18-21q14-45 52-72t85-28 85 28 52 72q4 15 18 21t27 2 21-18 2-27z m-276 243q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m286 0q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m143-143q0 73-28 139t-76 114-114 76-139 28-139-28-114-76-76-114-28-139 28-139 76-114 114-76 139-28 139 28 114 76 76 114 28 139z m71 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="frown" unicode="&#xe904;" d="M633 164q4-14-2-27t-21-18-27 2-18 21q-14 45-52 72t-85 28-85-28-52-72q-4-15-18-21t-27-2q-15 4-21 18t-2 27q21 68 77 109t127 41 127-41 77-109z m-276 329q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m286 0q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m143-143q0 73-28 139t-76 114-114 76-139 28-139-28-114-76-76-114-28-139 28-139 76-114 114-76 139-28 139 28 114 76 76 114 28 139z m71 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="meh" unicode="&#xe905;" d="M643 243q0-15-11-25t-25-11l-357 0q-15 0-25 11t-11 25 11 25 25 11l357 0q15 0 25-11t11-25z m-286 250q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m286 0q0-30-21-50t-50-21-50 21-21 50 21 50 50 21 50-21 21-50z m143-143q0 73-28 139t-76 114-114 76-139 28-139-28-114-76-76-114-28-139 28-139 76-114 114-76 139-28 139 28 114 76 76 114 28 139z m71 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="gamepad" unicode="&#xe849;" d="M464 243l0 71q0 8-5 13t-13 5l-107 0 0 107q0 8-5 13t-13 5l-71 0q-8 0-13-5t-5-13l0-107-107 0q-8 0-13-5t-5-13l0-71q0-8 5-13t13-5l107 0 0-107q0-8 5-13t13-5l71 0q8 0 13 5t5 13l0 107 107 0q8 0 13 5t5 13z m321-36q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m143 143q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m143-71q0-118-84-202t-202-84q-107 0-189 71l-123 0q-81-71-189-71-118 0-202 84t-84 202 84 202 202 84l500 0q118 0 202-84t84-202z" horiz-adv-x="1071.429" />
<glyph glyph-name="keyboard" unicode="&#xe944;" d="M214 198l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m71 143l0-54q0-9-9-9l-125 0q-9 0-9 9l0 54q0 9 9 9l125 0q9 0 9-9z m-71 143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m571-286l0-54q0-9-9-9l-482 0q-9 0-9 9l0 54q0 9 9 9l482 0q9 0 9-9z m-357 143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m-71 143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m214-143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m-71 143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m214-143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m214-143l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m-286 286l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m143 0l0-54q0-9-9-9l-54 0q-9 0-9 9l0 54q0 9 9 9l54 0q9 0 9-9z m143 0l0-196q0-9-9-9l-125 0q-9 0-9 9l0 54q0 9 9 9l62 0 0 134q0 9 9 9l54 0q9 0 9-9z m71-420l0 500-929 0 0-500 929 0z m71 500l0-500q0-30-21-50t-50-21l-929 0q-30 0-50 21t-21 50l0 500q0 30 21 50t50 21l929 0q30 0 50-21t21-50z" horiz-adv-x="1071.429" />
<glyph glyph-name="flag-empty" unicode="&#xe93d;" d="M929 267l0 344q-94-51-171-51-46 0-81 18-56 27-103 43t-99 15q-97 0-225-71l0-334q137 63 242 63 31 0 58-4t55-15 43-17 46-22l16-8q25-12 56-12 67 0 163 51z m-750 440q0-20-10-36t-26-26l0-706q0-8-5-13t-13-5l-36 0q-8 0-13 5t-5 13l0 706q-16 9-26 26t-10 36q0 30 21 50t50 21 50-21 21-50z m821-36l0-426q0-22-20-32-6-3-9-5-122-65-206-65-49 0-88 20l-16 8q-36 18-55 27t-51 16-64 8q-57 0-131-25t-128-57q-8-5-18-5-9 0-18 4-18 11-18 31l0 414q0 20 17 31 20 12 44 24t64 29 85 28 86 11q62 0 117-17t117-48q21-11 50-11 68 0 173 62 12 7 17 9 17 9 35-1 17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="flag-checkered" unicode="&#xe93e;" d="M464 292l0 107q-101-9-214-65l0-103q114 54 214 61z m0 233l0 110q-96-4-214-70l0-105q120 62 214 66z m464-258l0 103q-131-65-214-40l0 125q-11 3-22 8-3 2-18 9t-19 9-18 8-19 9-18 7-20 7-20 5-22 4-22 2-25 1q-13 0-27-2l0-124 11 0q57 0 107-16t110-46q11-5 22-8l0-105q23-9 51-9 67 0 163 51z m0 238l0 105q-94-51-171-51-25 0-44 4l0-109q83-23 214 50z m-750 202q0-20-10-36t-26-26l0-706q0-8-5-13t-13-5l-36 0q-8 0-13 5t-5 13l0 706q-16 9-26 26t-10 36q0 30 21 50t50 21 50-21 21-50z m821-36l0-426q0-22-20-32-6-3-9-5-122-65-206-65-49 0-88 20l-16 8q-36 18-55 27t-51 16-64 8q-57 0-131-25t-128-57q-8-5-18-5-9 0-18 4-18 11-18 31l0 414q0 20 17 31 20 12 44 24t64 29 85 28 86 11q62 0 117-17t117-48q21-11 50-11 68 0 173 62 12 7 17 9 17 9 35-1 17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="terminal" unicode="&#xe907;" d="M326 301l-260-260q-6-6-13-6t-13 6l-28 28q-6 6-6 13t6 13l219 219-219 219q-6 6-6 13t6 13l28 28q6 6 13 6t13-6l260-260q6-6 6-13t-6-13z m602-255l0-36q0-8-5-13t-13-5l-536 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l536 0q8 0 13-5t5-13z" horiz-adv-x="928.571" />
<glyph glyph-name="reply-all" unicode="&#xe840;" d="M357 246l0-39q0-23-22-33-7-3-14-3-15 0-25 11l-286 286q-11 11-11 25t11 25l286 286q16 17 39 8 22-9 22-33l0-39-222-222q-11-11-11-25t11-25z m643-21q0-32-9-74t-21-77-27-70-23-50l-11-22q-4-9-16-9-3 0-5 1-14 4-13 19 24 223-59 315-36 40-95 62t-149 29l0-140q0-23-22-33-7-3-14-3-15 0-25 11l-286 286q-11 11-11 25t11 25l286 286q16 17 39 8 22-9 22-33l0-146q229-16 334-123 94-97 94-284z" horiz-adv-x="1000" />
<glyph glyph-name="star-half-alt" unicode="&#xe80b;" d="M662 316l143 140-199 29-37 6-17 33-89 180 0-537 33-17 177-94-33 198-7 37z m252 146l-203-198 48-279q3-18-3-29t-19-10q-9 0-22 7l-251 132-251-132q-13-7-22-7-13 0-19 10t-3 29l48 279-203 198q-18 18-13 33t30 19l280 41 126 254q11 23 27 23t27-23l126-254 280-41q25-4 30-19t-13-33z" horiz-adv-x="928.571" />
<glyph glyph-name="direction" unicode="&#xe854;" d="M782 655l-357-714q-9-20-32-20-3 0-8 1-12 3-20 13t-8 22l0 321-321 0q-12 0-22 8t-13 20 2 23 16 17l714 357q7 4 16 4 15 0 25-11 8-8 10-19t-4-22z" horiz-adv-x="785.714" />
<glyph glyph-name="crop" unicode="&#xe8c4;" d="M311 136l332 0 0 332z m-25 25l332 332-332 0 0-332z m643-43l0-107q0-8-5-13t-13-5l-125 0 0-125q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 125-482 0q-8 0-13 5t-5 13l0 482-125 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l125 0 0 125q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-125 475 0 137 138q6 5 13 5t13-5q5-6 5-13t-5-13l-138-137 0-475 125 0q8 0 13-5t5-13z" horiz-adv-x="928.571" />
<glyph glyph-name="fork" unicode="&#xe8da;" d="M161 29q0 22-16 38t-38 16-38-16-16-38 16-38 38-16 38 16 16 38z m0 643q0 22-16 38t-38 16-38-16-16-38 16-38 38-16 38 16 16 38z m357-71q0 22-16 38t-38 16-38-16-16-38 16-38 38-16 38 16 16 38z m54 0q0-29-15-54t-39-39q-1-160-126-231-38-21-113-45-71-22-95-40t-23-56l0-15q25-14 39-39t15-54q0-45-31-76t-76-31-76 31-31 76q0 29 15 54t39 39l0 458q-25 14-39 39t-15 54q0 45 31 76t76 31 76-31 31-76q0-29-15-54t-39-39l0-277q30 15 86 32 31 9 49 16t39 17 33 22 23 28 16 39 5 51q-25 14-39 39t-15 54q0 45 31 76t76 31 76-31 31-76z" horiz-adv-x="571.429" />
<glyph glyph-name="unlink" unicode="&#xe82a;" d="M245 141l-143-143q-6-5-13-5t-13 5q-5 6-5 13t5 13l143 143q6 5 13 5t13-5q5-6 5-13t-5-13z m94-23l0-179q0-8-5-13t-13-5-13 5-5 13l0 179q0 8 5 13t13 5 13-5 5-13z m-125 125q0-8-5-13t-13-5l-179 0q-8 0-13 5t-5 13 5 13 13 5l179 0q8 0 13-5t5-13z m705-71q0-67-47-113l-82-81q-46-46-113-46-68 0-114 47l-186 187q-12 12-23 31l133 10 152-153q15-15 38-15t38 15l82 81q16 16 16 37 0 22-16 38l-153 153 10 133q20-12 31-23l187-187q47-48 47-114z m-344 404l-133-10-152 153q-16 16-38 16t-38-15l-82-81q-16-16-16-37 0-22 16-38l153-153-10-134q-20 12-31 23l-187 187q-47 48-47 114 0 67 47 113l82 81q46 46 113 46 68 0 114-47l186-187q12-12 23-31z m353-47q0-8-5-13t-13-5l-179 0q-8 0-13 5t-5 13 5 13 13 5l179 0q8 0 13-5t5-13z m-304 304l0-179q0-8-5-13t-13-5-13 5-5 13l0 179q0 8 5 13t13 5 13-5 5-13z m227-84l-143-143q-6-5-13-5t-13 5q-5 6-5 13t5 13l143 143q6 5 13 5t13-5q5-6 5-13t-5-13z" horiz-adv-x="928.571" />
<glyph glyph-name="help" unicode="&#xe828;" d="M393 149l0-134q0-9-7-16t-16-7l-134 0q-9 0-16 7t-7 16l0 134q0 9 7 16t16 7l134 0q9 0 16-7t7-16z m176 335q0-30-9-56t-20-43-31-33-32-24-34-20q-23-13-38-36t-15-37q0-9-7-18t-16-9l-134 0q-8 0-14 10t-6 21l0 25q0 46 36 87t80 61q33 15 47 31t14 42q0 23-26 41t-60 18q-36 0-60-16-20-14-60-64-7-9-17-9-7 0-14 4l-92 70q-7 6-9 14t3 16q89 148 259 148 45 0 90-17t81-46 59-71 23-88z" horiz-adv-x="571.429" />
<glyph glyph-name="info" unicode="&#xe93b;" d="M357 100l0-71q0-15-11-25t-25-11l-286 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l36 0 0 214-36 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l214 0q15 0 25-11t11-25l0-321 36 0q15 0 25-11t11-25z m-71 643l0-107q0-15-11-25t-25-11l-143 0q-15 0-25 11t-11 25l0 107q0 15 11 25t25 11l143 0q15 0 25-11t11-25z" horiz-adv-x="357.143" />
<glyph glyph-name="attention-alt" unicode="&#xe850;" d="M286 154l0-125q0-15-11-25t-25-11l-143 0q-15 0-25 11t-11 25l0 125q0 15 11 25t25 11l143 0q15 0 25-11t11-25z m17 589l-16-429q-1-15-11-25t-25-11l-143 0q-15 0-25 11t-11 25l-16 429q-1 15 10 25t25 11l179 0q15 0 25-11t10-25z" horiz-adv-x="357.143" />
<glyph glyph-name="superscript" unicode="&#xe8c0;" d="M501 86l0-93-138 0-89 141-13 23q-4 5-6 12l-2 0-5-12q-6-11-14-25l-86-140-144 0 0 93 71 0 110 162-103 152-76 0 0 94 154 0 78-127q1-2 13-23 4-5 6-12l2 0q2 5 6 12l14 23 78 127 143 0 0-94-70 0-103-149 114-165 61 0z m355 379l0-115-287 0-2 15q-2 16-2 26 0 36 15 65t36 48 47 36 47 30 36 30 15 36q0 21-16 35t-39 14q-28 0-54-22-8-6-20-21l-59 51q15 21 35 37 46 36 105 36 61 0 99-33t38-88q0-31-14-57t-35-43-45-33-46-28-37-29-17-35l129 0 0 45 70 0z" horiz-adv-x="857.143" />
<glyph glyph-name="subscript" unicode="&#xe8c1;" d="M501 86l0-93-138 0-89 141-13 23q-4 5-6 12l-2 0-5-12q-6-11-14-25l-86-140-144 0 0 93 71 0 110 162-103 152-76 0 0 94 154 0 78-127q1-2 13-23 4-5 6-12l2 0q2 5 6 12l14 23 78 127 143 0 0-94-70 0-103-149 114-165 61 0z m357-121l0-115-287 0-2 15q-2 25-2 26 0 36 15 65t36 48 47 36 47 30 36 30 15 36q0 21-16 35t-39 14q-28 0-54-22-8-6-20-21l-59 51q15 21 35 37 45 36 105 36 61 0 99-33t38-88q0-37-19-66t-47-48-56-35-49-35-23-41l129 0 0 45 70 0z" horiz-adv-x="857.143" />
<glyph glyph-name="eraser" unicode="&#xe908;" d="M500 64l187 214-429 0-187-214 429 0z m565 601q8-19 5-40t-17-37l-500-571q-21-25-54-25l-429 0q-21 0-39 11t-27 30q-8 19-5 40t17 37l500 571q21 25 54 25l429 0q21 0 39-11t27-30z" horiz-adv-x="1071.429" />
<glyph glyph-name="puzzle" unicode="&#xe909;" d="M929 237q0-45-25-75t-69-30q-23 0-43 10t-33 21-32 21-40 10q-61 0-61-69 0-22 9-64t8-64l0-3q-12 0-18-1-19-2-54-6t-64-8-55-3q-34 0-57 15t-23 47q0 21 10 40t21 32 21 33 10 43q0 44-30 69t-75 25q-47 0-80-25t-33-71q0-24 8-46t19-36 19-30 8-28q0-25-26-50-21-20-65-20-53 0-137 13-5 1-15 2t-15 2l-7 1q-1 0-2 1-1 0-1 1l0 571q1-1 10-2t19-3 12-2q84-13 137-13 45 0 65 20 26 25 26 50 0 12-8 28t-19 30-19 36-8 46q0 46 33 71t80 25q45 0 75-25t30-69q0-23-10-43t-21-33-21-32-10-40q0-32 23-47t57-15q36 0 100 8t91 9l0-1q-1-1-2-10t-3-19-2-12q-13-84-13-137 0-45 20-65 25-26 50-26 12 0 28 8t30 19 36 19 46 8q46 0 71-33t25-80z" horiz-adv-x="928.571" />
<glyph glyph-name="mic" unicode="&#xe94a;" d="M643 457l0-71q0-123-82-215t-203-105l0-74 143 0q15 0 25-11t11-25-11-25-25-11l-357 0q-15 0-25 11t-11 25 11 25 25 11l143 0 0 74q-121 13-203 105t-82 215l0 71q0 15 11 25t25 11 25-11 11-25l0-71q0-103 73-177t177-73 177 73 73 177l0 71q0 15 11 25t25 11 25-11 11-25z m-143 214l0-286q0-74-52-126t-126-52-126 52-52 126l0 286q0 74 52 126t126 52 126-52 52-126z" horiz-adv-x="642.857" />
<glyph glyph-name="mute" unicode="&#xe94b;" d="M151 323l-56-56q-23 57-23 119l0 71q0 15 11 25t25 11 25-11 11-25l0-71q0-30 8-63z m622 336l-201-201 0-71q0-74-52-126t-126-52q-31 0-61 11l-54-54q54-28 114-28 103 0 177 73t73 177l0 71q0 15 11 25t25 11 25-11 11-25l0-71q0-123-82-215t-203-105l0-74 143 0q15 0 25-11t11-25-11-25-25-11l-357 0q-15 0-25 11t-11 25 11 25 25 11l143 0 0 74q-70 7-131 45l-142-142q-6-6-13-6t-13 6l-46 46q-6 6-6 13t6 13l689 689q6 6 13 6t13-6l46-46q6-6 6-13t-6-13z m-212 74l-347-347 0 286q0 74 52 126t126 52q57 0 103-33t65-85z" horiz-adv-x="785.714" />
<glyph glyph-name="shield" unicode="&#xe90a;" d="M607 314l0 357-250 0 0-634q66 35 119 76 131 103 131 201z m107 429l0-429q0-48-19-95t-46-84-66-71-71-57-68-43-50-28-24-11q-7-3-15-3t-15 3q-9 4-24 11t-50 28-68 43-71 57-66 71-46 84-19 95l0 429q0 15 11 25t25 11l643 0q15 0 25-11t11-25z" horiz-adv-x="714.286" />
<glyph glyph-name="calendar-empty" unicode="&#xe867;" d="M71-79l786 0 0 571-786 0 0-571z m214 679l0 161q0 8-5 13t-13 5l-36 0q-8 0-13-5t-5-13l0-161q0-8 5-13t13-5l36 0q8 0 13 5t5 13z m429 0l0 161q0 8-5 13t-13 5l-36 0q-8 0-13-5t-5-13l0-161q0-8 5-13t13-5l36 0q8 0 13 5t5 13z m214 36l0-714q0-29-21-50t-50-21l-786 0q-29 0-50 21t-21 50l0 714q0 29 21 50t50 21l71 0 0 54q0 37 26 63t63 26l36 0q37 0 63-26t26-63l0-54 214 0 0 54q0 37 26 63t63 26l36 0q37 0 63-26t26-63l0-54 71 0q29 0 50-21t21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="extinguisher" unicode="&#xe90b;" d="M286 743q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m500 18l0-179q0-9-7-14-4-4-11-4-2 0-4 1l-250 54q-6 1-10 6t-4 11l-143 0 0-57q62-13 102-62t40-113l0-446q0-15-11-25t-25-11l-286 0q-15 0-25 11t-11 25l0 446q0 59 35 106t90 64l0 62-18 0q-33 0-64-13t-51-30-37-37-23-30-8-14q-9-20-32-20-9 0-16 4-13 7-18 21t2 27q3 6 8 15t21 30 34 39 47 37 61 29q-14 23-14 48 0 37 26 63t63 26 63-26 26-63q0-18-8-36l169 0q0 6 4 11t10 6l250 54q2 1 4 1 7 0 11-4 7-5 7-14z" horiz-adv-x="785.714" />
<glyph glyph-name="rocket" unicode="&#xe8db;" d="M804 600q0 22-16 38t-38 16-38-16-16-38 16-38 38-16 38 16 16 38z m125 161q0-139-42-240t-141-201q-45-45-109-98l-11-211q-1-9-9-15l-214-125q-4-2-9-2-7 0-13 5l-36 36q-7 8-4 18l47 154-157 157-154-47q-2-1-5-1-8 0-13 5l-36 36q-9 11-3 22l125 214q6 8 15 9l211 11q54 64 98 109 105 104 200 144t240 40q8 0 13-5t6-13z" horiz-adv-x="928.571" />
<glyph glyph-name="angle-circled-left" unicode="&#xe881;" d="M507 72l57 57q11 11 11 25t-11 25l-171 171 171 171q11 11 11 25t-11 25l-57 57q-11 11-25 11t-25-11l-253-253q-11-11-11-25t11-25l253-253q11-11 25-11t25 11z m350 278q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="angle-circled-right" unicode="&#xe882;" d="M400 72l253 253q11 11 11 25t-11 25l-253 253q-11 11-25 11t-25-11l-57-57q-11-11-11-25t11-25l171-171-171-171q-11-11-11-25t11-25l57-57q11-11 25-11t25 11z m457 278q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="angle-circled-up" unicode="&#xe883;" d="M650 214l57 57q11 11 11 25t-11 25l-253 253q-11 11-25 11t-25-11l-253-253q-11-11-11-25t11-25l57-57q11-11 25-11t25 11l171 171 171-171q11-11 25-11t25 11z m207 136q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="angle-circled-down" unicode="&#xe884;" d="M454 125l253 253q11 11 11 25t-11 25l-57 57q-11 11-25 11t-25-11l-171-171-171 171q-11 11-25 11t-25-11l-57-57q-11-11-11-25t11-25l253-253q11-11 25-11t25 11z m403 225q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="anchor" unicode="&#xe906;" d="M536 707q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m464-518l0-196q0-12-11-17-4-1-7-1-7 0-13 5l-52 52q-66-80-178-126t-240-47-240 47-178 126l-52-52q-5-5-13-5-2 0-7 1-11 4-11 17l0 196q0 8 5 13t13 5l196 0q12 0 17-11 4-11-4-20l-56-56q37-51 106-86t151-46l0 361-107 0q-15 0-25 11t-11 25l0 71q0 15 11 25t25 11l107 0 0 91q-32 19-52 52t-20 72q0 59 42 101t101 42 101-42 42-101q0-39-20-72t-52-52l0-91 107 0q15 0 25-11t11-25l0-71q0-15-11-25t-25-11l-107 0 0-361q83 11 151 46t106 86l-56 56q-8 9-4 20t17 11l196 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="lock-open-alt" unicode="&#xe830;" d="M589 421q22 0 38-16t16-38l0-321q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 321q0 22 16 38t38 16l18 0 0 179q0 103 73 177t177 73 177-73 73-177q0-15-11-25t-25-11l-36 0q-15 0-25 11t-11 25q0 59-42 101t-101 42-101-42-42-101l0-179 411 0z" horiz-adv-x="642.857" />
<glyph glyph-name="bullseye" unicode="&#xe90c;" d="M571 350q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m71 0q0 89-63 151t-151 63-151-63-63-151 63-151 151-63 151 63 63 151z m71 0q0-118-84-202t-202-84-202 84-84 202 84 202 202 84 202-84 84-202z m71 0q0 73-28 139t-76 114-114 76-139 28-139-28-114-76-76-114-28-139 28-139 76-114 114-76 139-28 139 28 114 76 76 114 28 139z m71 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="ellipsis" unicode="&#xe961;" d="M214 439l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z m286 0l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z m286 0l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z" horiz-adv-x="785.714" />
<glyph glyph-name="ellipsis-vert" unicode="&#xe962;" d="M214 154l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z m0 286l0-107q0-22-16-38t-38-16l-107 0q-22 0-38 16t-16 38l0 107q0 22 16 38t38 16l107 0q22 0 38-16t16-38z" horiz-adv-x="214.286" />
<glyph glyph-name="rss-squared" unicode="&#xe85e;" d="M286 136q0 30-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m196-52q-7 129-99 221t-221 99q-8 1-13-5t-6-13l0-71q0-7 5-12t12-6q86-6 147-68t68-147q1-7 6-12t12-5l71 0q7 0 13 6t5 13z m214-1q-3 86-31 166t-78 145-114 114-145 78-166 31q-8 1-13-5-6-6-6-13l0-71q0-7 5-12t12-6q114-4 211-62t155-155 62-211q1-7 6-12t12-5l71 0q7 0 13 6 6 5 5 13z m161 535l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="play-circled" unicode="&#xe89c;" d="M429 779q117 0 215-57t156-156 57-215-57-215-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57z m214-459q18 10 18 31t-18 31l-304 179q-17 11-36 1-18-11-18-31l0-357q0-21 18-31 9-4 18-4t18 5z" horiz-adv-x="857.143" />
<glyph glyph-name="ticket" unicode="&#xe8d8;" d="M571 598l176-176-319-319-176 176z m-118-546l345 345q11 11 11 25t-11 25l-202 202q-10 10-25 10t-25-10l-345-345q-11-11-11-25t11-25l202-202q10-10 25-10t25 10z m496 355l-506-507q-21-21-50-21t-50 21l-70 70q31 31 31 76t-31 76-76 31-76-31l-70 70q-21 21-21 50t21 50l506 506q21 21 50 21t50-21l70-70q-31-31-31-76t31-76 76-31 76 31l70-70q21-21 21-50t-21-50z" horiz-adv-x="1000" />
<glyph glyph-name="minus-squared" unicode="&#xe825;" d="M714 314l0 71q0 15-11 25t-25 11l-500 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l500 0q15 0 25 11t11 25z m143 304l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="minus-squared-alt" unicode="&#xe826;" d="M643 404l0-36q0-8-5-13t-13-5l-464 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l464 0q8 0 13-5t5-13z m71-250l0 464q0 37-26 63t-63 26l-464 0q-37 0-63-26t-26-63l0-464q0-37 26-63t63-26l464 0q37 0 63 26t26 63z m71 464l0-464q0-66-47-114t-114-47l-464 0q-66 0-114 47t-47 114l0 464q0 66 47 114t114 47l464 0q66 0 114-47t47-114z" horiz-adv-x="785.714" />
<glyph glyph-name="level-up" unicode="&#xe898;" d="M568 513q-10-21-32-21l-107 0 0-482q0-8-5-13t-13-5l-393 0q-12 0-16 10-4 11 2 20l89 107q5 6 14 6l179 0 0 357-107 0q-22 0-32 21-9 21 5 38l179 214q10 12 27 12t27-12l179-214q15-18 5-38z" horiz-adv-x="571.429" />
<glyph glyph-name="level-down" unicode="&#xe955;" d="M18 707l393 0q7 0 13-5t5-13l0-482 107 0q22 0 32-21t-5-39l-179-214q-10-12-27-12t-27 12l-179 214q-15 17-5 39 10 21 32 21l107 0 0 357-179 0q-8 0-14 6l-89 107q-7 8-2 19t16 11z" horiz-adv-x="571.429" />
<glyph glyph-name="ok-squared" unicode="&#xe81b;" d="M382 125l343 343q11 11 11 25t-11 25l-57 57q-11 11-25 11t-25-11l-261-261-118 118q-11 11-25 11t-25-11l-57-57q-11-11-11-25t11-25l200-200q11-11 25-11t25 11z m475 493l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="pencil-squared" unicode="&#xe848;" d="M225 232l85-85-29-29-31 0 0 54-54 0 0 31z m231 218q8-7-2-17l-162-162q-9-9-17-2t2 17l162 162q9 9 17 2z m-153-385l304 304-161 161-304-304 0-161 161 0z m339 339l51 51q16 16 16 38t-16 38l-85 85q-16 16-38 16t-38-16l-51-51z m214 214l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="link-ext-alt" unicode="&#xe82c;" d="M714 332l0 268q0 15-11 25t-25 11l-268 0q-23 0-33-22-9-23 8-39l80-80-298-298q-11-11-11-25t11-25l57-57q11-11 25-11t25 11l298 298 80-80q10-11 25-11 7 0 14 3 22 9 22 33z m143 286l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="export-alt" unicode="&#xe846;" d="M561 236l196 196q11 11 11 25t-11 25l-196 196q-17 17-39 8t-22-33l0-89q-66 0-121-11t-91-28-64-44-43-53-25-61-12-62-3-62q0-101 93-225 6-7 14-7 4 0 7 2 12 5 11 18-25 198 35 264 26 29 73 42t125 13l0-89q0-23 22-33 7-3 13-3 15 0 25 11z m296 382l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="compass" unicode="&#xe855;" d="M357 243l143 71-143 71 0-143z m214 330l0-302-286-143 0 302z m161-223q0 83-41 152t-110 110-152 41-152-41-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152z m125 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="collapse" unicode="&#xe958;" d="M639 473q10-20-3-37l-179-250q-11-15-29-15t-29 15l-179 250q-13 17-3 37 9 20 32 20l357 0q22 0 32-20z m75-391l0 536q0 7-5 13t-13 5l-536 0q-7 0-13-5t-5-13l0-536q0-7 5-13t13-5l536 0q7 0 13 5t5 13z m143 536l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="collapse-top" unicode="&#xe899;" d="M639 227q-9-20-32-20l-357 0q-22 0-32 20t3 37l179 250q11 15 29 15t29-15l179-250q13-17 3-37z m75-145l0 536q0 7-5 13t-13 5l-536 0q-7 0-13-5t-5-13l0-536q0-7 5-13t13-5l536 0q7 0 13 5t5 13z m143 536l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="expand" unicode="&#xe89a;" d="M607 350q0-18-15-29l-250-179q-17-13-37-3-20 9-20 32l0 357q0 22 20 32t37-3l250-179q15-11 15-29z m107-268l0 536q0 8-5 13t-13 5l-536 0q-8 0-13-5t-5-13l0-536q0-8 5-13t13-5l536 0q8 0 13 5t5 13z m143 536l0-536q0-66-47-114t-114-47l-536 0q-66 0-114 47t-47 114l0 536q0 66 47 114t114 47l536 0q66 0 114-47t47-114z" horiz-adv-x="857.143" />
<glyph glyph-name="euro" unicode="&#xe8e4;" d="M545 121l20-89q2-7-2-13t-9-8l-3-1q-2-1-6-2t-9-3-12-3-14-3-17-3-19-3-20-2-21-1q-131 0-228 73t-133 196l-53 0q-7 0-13 5t-5 13l0 63q0 7 5 13t13 5l37 0q-1 32 1 59l-37 0q-8 0-13 5t-5 13l0 64q0 8 5 13t13 5l55 0q37 117 136 189t223 71q57 0 108-13 6-2 11-8 3-6 2-13l-24-89q-2-7-8-11t-13-1l-2 1q-2 1-6 1l-10 2t-13 2-15 2-16 1-16 1q-70 0-126-36t-84-98l261 0q9 0 14-7 6-7 4-15l-13-64q-3-15-18-15l-272 0q-2-21 0-59l256 0q8 0 14-7 5-7 3-15l-13-62q-1-6-6-10t-11-4l-216 0q27-65 83-104t128-38q10 0 20 1t19 2 16 3 14 3 10 3l7 2 3 1q7 3 15-1 7-4 8-12z" horiz-adv-x="571.429" />
<glyph glyph-name="pound" unicode="&#xe8e5;" d="M569 215l0-205q0-8-5-13t-13-5l-533 0q-8 0-13 5t-5 13l0 84q0 7 5 13t13 5l54 0 0 214-53 0q-8 0-13 5t-5 13l0 73q0 8 5 13t13 5l53 0 0 124q0 95 69 157t175 62q103 0 187-70 5-4 6-11t-4-13l-57-71q-5-6-12-7t-13 4q-3 3-15 11t-39 18-52 10q-47 0-76-26t-29-69l0-120 170 0q7 0 13-5t5-13l0-73q0-7-5-13t-13-5l-170 0 0-211 231 0 0 101q0 7 5 13t13 5l90 0q8 0 13-5t5-13z" horiz-adv-x="571.429" />
<glyph glyph-name="dollar" unicode="&#xe8e6;" d="M546 189q0-85-56-147t-144-76l0-98q0-8-5-13t-13-5l-75 0q-7 0-13 5t-5 13l0 98q-37 5-71 17t-57 25-41 27-26 21-10 10q-9 12-1 23l57 75q4 6 13 7 8 1 13-5l1-1q63-55 136-70 21-4 41-4 45 0 80 24t34 68q0 16-8 30t-19 23-33 21-37 18-45 18q-22 9-34 14t-34 15-35 17-32 20-30 24-24 27-20 32-12 37-5 44q0 77 55 135t142 75l0 100q0 7 5 13t13 5l75 0q8 0 13-5t5-13l0-98q32-3 62-13t49-19 35-21 22-16 8-8q9-10 3-21l-45-81q-4-8-13-9-8-2-15 4-2 2-8 7t-22 15-33 18-42 15-48 6q-53 0-86-24t-33-62q0-15 5-27t16-23 22-18 31-17 34-15 39-15q30-11 45-18t42-20 42-24 35-28 30-35 18-43 7-52z" horiz-adv-x="571.429" />
<glyph glyph-name="rupee" unicode="&#xe8e7;" d="M501 588l0-57q0-8-5-13t-13-5l-94 0q-13-80-72-131t-154-61q93-99 256-299 8-9 2-19-4-10-16-10l-109 0q-9 0-14 7-171 205-278 319-5 5-5 12l0 71q0 7 5 13t13 5l62 0q74 0 119 24t57 70l-238 0q-8 0-13 5t-5 13l0 57q0 8 5 13t13 5l230 0q-32 63-150 63l-81 0q-7 0-13 5t-5 13l0 74q0 8 5 13t13 5l464 0q8 0 13-5t5-13l0-57q0-8-5-13t-13-5l-130 0q26-34 36-80l95 0q8 0 13-5t5-13z" horiz-adv-x="501.116" />
<glyph glyph-name="yen" unicode="&#xe8e8;" d="M336-7l-96 0q-7 0-13 5t-5 13l0 184-161 0q-7 0-13 5t-5 13l0 57q0 7 5 13t13 5l161 0 0 47-161 0q-7 0-13 5t-5 13l0 58q0 7 5 13t13 5l119 0-179 323q-4 9 0 18 6 9 16 9l108 0q11 0 16-10l120-237q11-21 31-70 6 13 17 38t15 34l107 234q4 11 16 11l107 0q9 0 15-9 5-8 1-17l-175-323 120 0q7 0 13-5t5-13l0-58q0-8-5-13t-13-5l-162 0 0-47 162 0q7 0 13-5t5-13l0-57q0-8-5-13t-13-5l-162 0 0-184q0-7-5-13t-13-5z" horiz-adv-x="573.103" />
<glyph glyph-name="renminbi" unicode="&#xe8e9;" d="M929 189l0-18q0-74-52-126t-126-52l-71 0q-74 0-126 52t-52 126l0 268-125 0q-1-57-8-106t-17-87-27-71-32-56-38-43-39-33-41-25-39-18-37-14q-2-1-18-7-4-1-7-1-12 0-17 11l-40 99q-3 7 0 14t9 9q4 2 11 4t10 4q17 7 26 10t25 11 25 15 23 18 23 24 19 30 17 38 13 47 9 57 4 69l-143 0q-8 0-13 5t-5 13l0 89q0 8 5 13t13 5l679 0q8 0 13-5t5-13l0-89q0-8-5-13t-13-5l-125 0 0-286q0-15 11-25t25-11l71 0q15 0 25 11t11 25l0 36q0 8 5 13t13 5l107 0q8 0 13-5t5-13z m-214 571l0-89q0-8-5-13t-13-5l-536 0q-8 0-13 5t-5 13l0 89q0 8 5 13t13 5l536 0q8 0 13-5t5-13z" horiz-adv-x="928.571" />
<glyph glyph-name="won" unicode="&#xe8ea;" d="M287 183l45 167-89 0 42-167q1-1 1-2t1-2q0 1 0 2t0 2z m65 238l20 71-163 0 18-71 126 0z m107 0l78 0-20 71-39 0z m251-239l44 167-90 0 45-167q0-1 0-2t1-2q0 1 0 2t0 2z m62 239l18 71-166 0 19-71 128 0z m229-18l0-36q0-8-5-13t-13-5l-119 0-92-344q-4-13-17-13l-89 0q-13 0-17 13l-93 344-117 0-93-344q-4-13-17-13l-89 0q-6 0-11 4t-6 9l-89 344-116 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l98 0-18 71-79 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l61 0-50 192q-3 8 3 16 6 7 15 7l76 0q15 0 17-13l50-201 200 0 54 201q4 13 17 13l70 0q13 0 17-13l55-201 204 0 52 201q3 13 17 13l76 0q9 0 15-7t3-16l-51-192 62 0q8 0 13-5t5-13l0-36q0-8-5-13t-13-5l-81 0-19-71 100 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="bitcoin" unicode="&#xe8eb;" d="M651 493q10-102-73-144 65-16 98-57t25-119q-4-40-18-70t-36-50-54-33-68-19-81-8l0-142-86 0 0 140q-45 0-68 1l0-141-86 0 0 142q-10 0-30 0t-31 0l-112 0 17 102 62 0q28 0 32 28l0 224 9 0q-3 1-9 1l0 160q-7 38-50 38l-62 0 0 92 118-1q36 0 54 1l0 141 86 0 0-138q46 1 68 1l0 137 86 0 0-141q44-4 78-13t63-25 46-44 20-64z m-120-304q0 20-8 36t-21 26-32 17-37 10-41 5-39 2-36-1-27-1l0-189q4 0 21 0t27 0 30 1 33 2 32 5 31 8 27 12 22 17 14 22 5 28z m-40 266q0 18-7 33t-17 23-27 16-31 9-34 4-32 1-30-1-22 0l0-171q3 0 19 0t26 0 28 1 31 3 29 6 27 10 21 15 15 21 5 28z" horiz-adv-x="714.286" />
<glyph glyph-name="file" unicode="&#xe946;" d="M714 421l0-446q0-22-16-38t-38-16l-607 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l304 0 0-304q0-22 16-38t38-16l304 0z m-2 71l-284 0 0 284q46-8 74-36l174-174q28-28 36-74z" horiz-adv-x="714.286" />
<glyph glyph-name="doc-text-inv" unicode="&#xe947;" d="M571 82l0 36q0 8-5 13t-13 5l-393 0q-8 0-13-5t-5-13l0-36q0-8 5-13t13-5l393 0q8 0 13 5t5 13z m0 143l0 36q0 8-5 13t-13 5l-393 0q-8 0-13-5t-5-13l0-36q0-8 5-13t13-5l393 0q8 0 13 5t5 13z m143 196l0-446q0-22-16-38t-38-16l-607 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l304 0 0-304q0-22 16-38t38-16l304 0z m-2 71l-284 0 0 284q46-8 74-36l174-174q28-28 36-74z" horiz-adv-x="714.286" />
<glyph glyph-name="sort-name-up" unicode="&#xe8f1;" d="M665 622l99 0-40 122-7 26q-1 9-1 11l-2 0-2-11q0-1-2-10t-4-16z m-254-576q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m466-66l0-130-326 0 0 50 206 295q7 10 12 15l6 5 0 2q-1 0-4 0t-4 0q-7-2-17-2l-129 0 0-64-67 0 0 128 316 0 0-50-206-296q-3-4-12-15l-6-6 0-1 8 1q5 1 17 1l138 0 0 66 68 0z m50 501l0-59-161 0 0 59 42 0-26 80-136 0-26-80 42 0 0-59-160 0 0 59 39 0 128 369 90 0 128-369 39 0z" horiz-adv-x="928.571" />
<glyph glyph-name="sort-name-down" unicode="&#xe8f2;" d="M665 51l99 0-40 122-7 26q-1 9-1 11l-2 0-2-11q0-1-2-10t-4-16z m-254-4q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m516-137l0-59-161 0 0 59 42 0-26 80-136 0-26-80 42 0 0-59-160 0 0 59 39 0 128 369 90 0 128-369 39 0z m-50 642l0-130-326 0 0 50 206 295q7 10 12 15l6 5 0 2q-1 0-4 0t-4 0q-7-2-17-2l-129 0 0-64-67 0 0 128 316 0 0-50-206-296q-3-4-12-15l-6-6 0-2 8 2q5 1 17 1l138 0 0 66 68 0z" horiz-adv-x="928.571" />
<glyph glyph-name="sort-alt-up" unicode="&#xe8ef;" d="M411 46q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m589-71l0-107q0-8-5-13t-13-5l-464 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l464 0q8 0 13-5t5-13z m-107 286l0-107q0-8-5-13t-13-5l-357 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l357 0q8 0 13-5t5-13z m-107 286l0-107q0-8-5-13t-13-5l-250 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l250 0q8 0 13-5t5-13z m-107 286l0-107q0-8-5-13t-13-5l-143 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l143 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-alt-down" unicode="&#xe8f0;" d="M679-25l0-107q0-8-5-13t-13-5l-143 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l143 0q8 0 13-5t5-13z m-268 71q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m375 214l0-107q0-8-5-13t-13-5l-250 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l250 0q8 0 13-5t5-13z m107 286l0-107q0-8-5-13t-13-5l-357 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l357 0q8 0 13-5t5-13z m107 286l0-107q0-8-5-13t-13-5l-464 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l464 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-number-up" unicode="&#xe8f3;" d="M751 117q0 35-25 65t-57 30q-29 0-46-21t-17-52 20-53 58-21q28 0 47 15t20 38z m-340-71q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m419 39q0-35-7-68t-23-64-38-53-55-37-71-14q-35 0-60 9-13 4-23 8l22 63q8-4 17-6 21-7 42-7 47 0 75 33t37 81l-1 0q-12-13-34-21t-47-8q-59 0-97 40t-37 96q0 59 40 99t101 41q69 0 114-53t46-141z m-17 400l0-64-262 0 0 64 93 0 0 241q0 4 0 11t0 9l0 9-1 0-4-7q-4-7-15-17l-35-32-46 48 107 103 69 0 0-365 92 0z" horiz-adv-x="857.143" />
<glyph glyph-name="sort-number-down" unicode="&#xe8f4;" d="M751 689q0 35-25 65t-57 30q-29 0-46-21t-17-52 20-53 58-21q28 0 47 15t20 38z m-340-642q0-7-6-13l-178-178q-6-5-13-5t-13 5l-179 179q-8 9-4 20t17 11l107 0 0 768q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-768 107 0q8 0 13-5t5-13z m402-133l0-64-262 0 0 64 93 0 0 241q0 4 0 11t0 9l0 9-1 0-4-7q-4-7-15-17l-35-32-46 48 107 103 69 0 0-365 92 0z m17 743q0-35-7-68t-23-64-38-53-55-37-71-14q-35 0-60 9-13 4-23 8l22 63q8-4 17-6 21-7 42-7 47 0 75 33t37 81l-1 0q-12-13-34-21t-47-8q-59 0-97 40t-37 96q0 59 40 99t101 41q69 0 114-53t46-141z" horiz-adv-x="857.143" />
<glyph glyph-name="thumbs-up-alt" unicode="&#xe839;" d="M143 100q0 15-11 25t-25 11q-15 0-25-11t-10-25q0-15 10-25t25-10q15 0 25 10t11 25z m89 286l0-357q0-15-11-25t-25-11l-161 0q-15 0-25 11t-11 25l0 357q0 15 11 25t25 11l161 0q15 0 25-11t11-25z m661 0q0-48-31-83 8-25 8-42 2-42-24-76 9-31 0-65-8-32-30-52 5-62-27-101-36-42-110-44l-72 0q-37 0-80 9t-68 16-67 22q-69 24-88 25-15 1-25 11t-11 25l0 358q0 14 10 24t24 11q13 1 42 33t56 68q38 49 56 67 10 10 17 27t10 27 8 34q4 22 7 34t11 29 19 28q11 11 25 11 26 0 46-6t33-15 22-23 13-25 7-28 3-25 0-22q0-21-5-42t-11-33-15-31q-2-3-6-10t-6-12-4-13l155 0q44 0 75-32t32-75z" horiz-adv-x="928.571" />
<glyph glyph-name="thumbs-down-alt" unicode="&#xe83a;" d="M143 529q0-15-11-25t-25-11q-15 0-25 11t-10 25q0 15 10 25t25 10q15 0 25-10t11-25z m89-286l0 357q0 15-11 25t-25 11l-161 0q-15 0-25-11t-11-25l0-357q0-15 11-25t25-11l161 0q15 0 25 11t11 25z m630 83q31-34 31-83-1-44-32-75t-75-32l-155 0q2-8 4-13t6-12 6-10q10-21 15-32t11-33 6-43q0-13 0-22t-3-25-7-28-13-25-22-23-33-15-46-6q-15 0-25 11-11 11-19 28t-11 29-7 34q-5 23-8 34t-10 27-17 27q-18 18-56 67-27 36-56 68t-42 33q-14 1-24 11t-10 24l0 358q0 15 11 25t25 11q20 1 88 25 43 15 67 22t68 16 80 9l72 0q74-1 110-44 32-39 27-101 22-21 30-52 9-34 0-65 26-34 24-76 0-18-8-42z" horiz-adv-x="928.571" />
<glyph glyph-name="down" unicode="&#xe951;" d="M427 125q4-11-3-20l-195-214q-6-6-13-6-8 0-13 6l-198 214q-7 9-3 20 5 11 16 11l125 0 0 696q0 8 5 13t13 5l107 0q8 0 13-5t5-13l0-696 125 0q12 0 16-11z" horiz-adv-x="428.571" />
<glyph glyph-name="up" unicode="&#xe954;" d="M427 575q-5-11-16-11l-125 0 0-696q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 696-125 0q-12 0-16 11t3 20l195 214q6 6 13 6 8 0 13-6l198-214q7-9 3-20z" horiz-adv-x="428.571" />
<glyph glyph-name="right" unicode="&#xe953;" d="M1000 404l0-107q0-8-5-13t-13-5l-696 0 0-125q0-12-11-16t-20 3l-214 195q-6 6-6 13 0 8 6 13l214 198q9 8 20 3t11-16l0-125 696 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="left" unicode="&#xe952;" d="M964 352q0-8-6-13l-214-198q-9-8-20-3t-11 16l0 125-696 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l696 0 0 125q0 12 11 16t20-3l214-195q6-6 6-13z" horiz-adv-x="1000" />
<glyph glyph-name="female" unicode="&#xe80f;" d="M714 261q0-22-16-38t-38-16q-28 0-45 24l-127 190-25 0 0-74 138-229q5-8 5-18 0-15-11-25t-25-11l-107 0 0-152q0-26-18-44t-44-18l-89 0q-26 0-44 18t-18 44l0 152-107 0q-15 0-25 11t-11 25q0 10 5 18l138 229 0 74-25 0-127-190q-16-24-45-24-22 0-38 16t-16 38q0 16 9 30l143 214q41 60 98 60l214 0q57 0 98-60l143-214q9-13 9-30z m-232 446q0-52-37-88t-88-37-88 37-37 88 37 88 88 37 88-37 37-88z" horiz-adv-x="714.286" />
<glyph glyph-name="male" unicode="&#xe80e;" d="M571 457l0-232q0-22-16-38t-38-16-38 16-16 38l0 196-36 0 0-509q0-26-18-44t-44-18-44 18-18 44l0 259-36 0 0-259q0-26-18-44t-44-18-44 18-18 44l0 509-36 0 0-196q0-22-16-38t-38-16-38 16-16 38l0 232q0 45 31 76t76 31l357 0q45 0 76-31t31-76z m-161 250q0-52-37-88t-88-37-88 37-37 88 37 88 88 37 88-37 37-88z" horiz-adv-x="571.429" />
<glyph glyph-name="sun" unicode="&#xe8ac;" d="M821 350q0 65-25 125t-69 103-103 69-125 25-125-25-103-69-69-103-25-125 25-125 69-103 103-69 125-25 125 25 103 69 69 103 25 125z m154-155q-2-8-11-11l-163-54 0-171q0-9-7-15-8-6-16-2l-163 52-100-138q-6-7-15-7t-15 7l-100 138-163-52q-8-3-16 2-7 6-7 15l0 171-163 54q-9 3-11 11-3 9 2 16l100 138-100 138q-5 7-2 16 2 8 11 11l163 54 0 171q0 9 7 15 8 6 16 2l163-52 100 138q5 7 15 7t15-7l100-138 163 52q8 3 16-2 7-6 7-15l0-171 163-54q9-3 11-11 3-9-2-16l-100-138 100-138q5-7 2-16z" horiz-adv-x="1000" />
<glyph glyph-name="moon" unicode="&#xe8af;" d="M704 123q-30-5-61-5-102 0-188 50t-137 137-50 188q0 107 58 199-112-33-183-128t-71-214q0-73 28-139t76-114 114-76 139-28q80 0 153 34t123 96z m113 47q-52-113-158-181t-231-68q-87 0-166 34t-137 92-92 137-34 166q0 85 32 163t87 135 131 92 162 38q25 1 34-22 10-23-8-40-48-44-73-101t-25-122q0-83 41-152t110-110 152-41q66 0 127 28 23 10 40-7 8-8 10-19t-3-21z" horiz-adv-x="857.143" />
<glyph glyph-name="box" unicode="&#xe85c;" d="M607 386q0 15-11 25t-25 11l-143 0q-15 0-25-11t-11-25 11-25 25-11l143 0q15 0 25 11t11 25z m321 107l0-536q0-15-11-25t-25-11l-786 0q-15 0-25 11t-11 25l0 536q0 15 11 25t25 11l786 0q15 0 25-11t11-25z m36 250l0-143q0-15-11-25t-25-11l-857 0q-15 0-25 11t-11 25l0 143q0 15 11 25t25 11l857 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="bug" unicode="&#xe8dc;" d="M911 314q0-15-11-25t-25-11l-125 0q0-95-37-162l116-117q11-11 11-25t-11-25q-10-11-25-11t-25 11l-110 110q-3-3-8-7t-23-16-36-20-46-16-54-7l0 500-71 0 0-500q-28 0-57 8t-49 18-37 22-24 18l-8 8-102-116q-11-12-27-12-13 0-24 9-11 10-11 25t9 26l113 127q-32 64-32 153l-125 0q-15 0-25 11t-11 25 11 25 25 11l125 0 0 164-97 97q-11 11-11 25t11 25 25 11 25-11l97-97 471 0 97 97q11 11 25 11t25-11 11-25-11-25l-97-97 0-164 125 0q15 0 25-11t11-25z m-268 321l-357 0q0 74 52 126t126 52 126-52 52-126z" horiz-adv-x="928.571" />
<glyph glyph-name="picture" unicode="&#xe812;" d="M357 529q0-45-31-76t-76-31-76 31-31 76 31 76 76 31 76-31 31-76z m571-214l0-250-786 0 0 107 179 179 89-89 286 286z m54 393l-893 0q-7 0-13-5t-5-13l0-679q0-7 5-13t13-5l893 0q7 0 13 5t5 13l0 679q0 7-5 13t-13 5z m89-18l0-679q0-37-26-63t-63-26l-893 0q-37 0-63 26t-26 63l0 679q0 37 26 63t63 26l893 0q37 0 63-26t26-63z" horiz-adv-x="1071.429" />
<glyph glyph-name="globe" unicode="&#xe8ab;" d="M429 779q117 0 215-57t156-156 57-215-57-215-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57z m153-291q-1-1-5-5t-8-5q1 0 3 3t3 6 2 4q3 4 12 8 8 3 29 7 19 4 28-6-1 1 5 7t8 7q2 1 8 3t8 4l1 12q-7-1-10 4t-4 12q0-1-3-4 0 4-3 4t-6-1-5-1q-6 2-8 4t-4 9-2 8q-1 3-5 6t-5 6q-1 1-1 3t-2 4-2 3-3 1-4-3-4-6-3-3q-2 1-3 1t-3-1-3-2-3-2q-2-1-5-2t-5-1q8 3-1 6-6 2-9 2 5 2 4 7t-5 8l3 0q-1 2-5 5t-10 5-7 3q-4 3-19 5t-18 0q-3-3-3-6t2-8 2-7q1-3-3-7t-4-7q0-4 8-9t6-12q-2-4-9-9t-9-7q-3-4-1-10t6-9q1-1 1-2t-2-3-3-2-4-2l-2-1q-6-3-11 3t-8 15q-4 14-9 17-13 4-16-1-3 7-23 15-14 5-32 2 3 1 0 8-4 8-11 7 2 3 2 10t1 8q2 7 7 13 1 1 4 5t5 8 0 3q20-2 28 6 3 3 6 9t6 9q5 3 8 3t8-3 8-3q8-1 9 6t-4 11q7-1 2 9-3 4-4 5-7 2-15-3-4-2 1-4-1 1-5-6t-9-10-9 3q-1 1-3 8t-5 8q-4 0-9-8 2 4-6 8t-13 4q11 7-4 15-4 2-11 3t-11-2q-3-4-3-6t3-4 6-3 6-2 5-2q8-6 4-8-1-1-5-2t-6-3-3-2q-2-2 0-8t-1-8q-3 3-5 10t-4 9q4-5-14-3l-6 1q-2 0-9-1t-11-1-8 4q-2 4 0 11 1 2 2 1-2 2-6 5t-6 5q-26-8-52-23 3-1 7 1 3 1 7 4t6 3q19 8 23 4l3 3q8-9 11-14-4 2-17 1-11-3-12-7 4-7 3-10-2 2-6 6t-8 6-8 3q-9 0-12-1-81-45-131-124 4-4 7-4 2-1 3-5t1-6 6 2q5-4 2-11 1 1 25-15 11-9 12-12 2-6-6-10-1 1-5 5t-5 2q-2-3 0-10t6-7q-4 0-5-9t-1-20-1-13l1-1q-2-7 3-19t12-11q-7-2 11-24 3-4 4-5 2-1 7-4t8-6 6-6q2-3 6-13t8-13q-1-3 5-11t6-13q-1 0-1-1t-1-1q2-4 9-8t9-7q1-2 1-6t2-6 4-1q1 11-13 35-8 14-9 16-2 3-3 9t-3 8q1 0 3-1t5-2 4-2 1-2q-2-4 1-10t7-10 9-11 7-7q3-3 8-11t0-8q5 0 11-6t9-11q3-4 4-15t3-13q1-4 5-8t7-5l9-4t7-4q3-1 10-6t12-6q6-2 9-2t8 1 8 2q8 1 16-8t12-12q20-11 31-6-1-1 0-4t4-9 5-8 3-5q3-3 10-8t10-8q3 2 4 5-2-4 4-11t10-6q8 2 8 18-17-8-27 10 0 1-1 3t-2 5-1 5 0 4 3 2q5 0 6 2t-1 7-2 7q-1 4-6 11t-7 8q-3-5-9-4t-9 5q0-1-1-3t-1-4q-7 0-8 1 1 2 1 10t2 13q1 2 3 7t4 8 2 7-3 5-10 1q-11-1-15-11-1-2-2-6t-3-6-5-4q-4-2-13-1t-13 3q-7 4-13 16t-5 21q0 6 1 15t2 14-3 14q2 1 5 5t6 6q1 1 3 1t3 0 2 1 2 3q-1 1-2 2-2 2-2 2 4-2 16 1t15-1q8-6 12 1 0 1-1 5t0 8q3-15 16-5 2-2 9-3t10-3q2-1 4-3t3-3 3 0 5 4q6-8 7-13 6-22 11-25 4-2 6-1t3 5 0 8-1 7l-1 4 0 10-1 4q-8 2-10 7t1 10 8 10q1 1 4 2t9 4 7 4q12 11 8 20 4 0 6 5-1 0-3 2t-4 3-3 1q5 3 1 9 3 2 4 6t4 6q5-7 12-1 4 4 1 9 3 4 11 6t10 5q4-1 4 1t1 7 2 7q2 3 8 5t7 3l9 6q2 2 0 2 10-1 17 6 6 6-3 11 2 3-2 5t-8 3q2 1 6 0t6 1q8 6-4 9-9 3-24-7z m-91-489q115 20 196 105-2 2-7 3t-7 2q-10 4-13 4 1 4-1 7t-4 5-7 4-6 4q-1 1-4 3t-4 3-4 3-5 1-6-1l-2-1q-2-1-3-1t-3-2-2-2 0-1q-12 9-20 12-3 1-6 3t-6 4-6 1-6-4q-3-3-3-8t-1-7q-4 3 0 10t1 10q-2 3-6 3t-7-3-6-5-5-4-5-3-5-4q-2-2-3-7t-3-6q-1 2-6 4t-5 3q1-6 2-20t3-21q4-17-7-27-15-14-16-22-2-12 7-15 0-4-4-11t-4-12q0-3 1-9z" horiz-adv-x="857.143" />
<glyph glyph-name="leaf" unicode="&#xe8b3;" d="M714 457q0 15-11 25t-25 11q-96 0-177-28t-145-75-131-122q-11-12-11-25 0-15 11-25t25-11q13 0 25 11 15 13 41 40t37 37q76 69 150 98t175 29q15 0 25 11t11 25z m286 110q0-53-11-108-26-125-103-214t-199-150q-119-60-244-60-83 0-160 26-8 3-49 23t-54 21q-9 0-22-18t-25-39-29-39-33-18q-17 0-28 6t-17 13-15 23q-1 2-3 6t-3 6-2 5-1 8q0 20 17 41t38 37 38 31 17 27q0 2-8 21t-9 25q-5 28-5 58 0 64 24 123t66 103 95 78 114 53q31 10 81 14t100 5 100 3 91 13 63 32l16 16t16 16 15 11 20 9 24 3q22 0 39-26t27-62 13-69 4-54z" horiz-adv-x="1000" />
<glyph glyph-name="glass" unicode="&#xe801;" d="M948 746q0-20-24-44l-353-353 0-429 179 0q15 0 25-11t11-25-11-25-25-11l-500 0q-15 0-25 11t-11 25 11 25 25 11l179 0 0 429-353 353q-24 24-24 44 0 13 10 20t21 10 24 2l786 0q13 0 24-2t21-10 10-20z" horiz-adv-x="1000" />
<glyph glyph-name="gift" unicode="&#xe8d4;" d="M518 93l0 400-179 0 0-400q0-14 10-21t26-8l107 0q16 0 26 8t10 21z m-254 471l109 0-70 90q-15 17-39 17-22 0-38-16t-16-38 16-38 38-16z m384 54q0 22-16 38t-38 16q-24 0-39-17l-70-90 108 0q22 0 38 16t16 38z m210-143l0-179q0-8-5-13t-13-5l-54 0 0-232q0-22-16-38t-38-16l-607 0q-22 0-38 16t-16 38l0 232-54 0q-8 0-13 5t-5 13l0 179q0 8 5 13t13 5l246 0q-52 0-88 37t-37 88 37 88 88 37q60 0 94-43l71-92 71 92q34 43 94 43 52 0 88-37t37-88-37-88-88-37l246 0q8 0 13-5t5-13z" horiz-adv-x="857.143" />
<glyph glyph-name="videocam" unicode="&#xe811;" d="M1000 654l0-607q0-23-22-33-7-3-14-3-15 0-25 11l-225 225 0-93q0-66-47-114t-114-47l-393 0q-66 0-114 47t-47 114l0 393q0 66 47 114t114 47l393 0q66 0 114-47t47-114l0-92 225 224q10 11 25 11 7 0 14-3 22-9 22-33z" horiz-adv-x="1000" />
<glyph glyph-name="headphones" unicode="&#xe86b;" d="M929 356q0-93-33-175l-11-27-103-18q-12-46-50-76t-87-30l0-18q0-8-5-13t-13-5l-36 0q-8 0-13 5t-5 13l0 321q0 8 5 13t13 5l36 0q8 0 13-5t5-13l0-18q40 0 73-20t52-53l38 7q16 53 16 108 0 83-49 156t-132 117-176 44-176-44-132-117-49-156q0-55 16-108l38-7q19 33 52 53t73 20l0 18q0 8 5 13t13 5l36 0q8 0 13-5t5-13l0-321q0-8-5-13t-13-5l-36 0q-8 0-13 5t-5 13l0 18q-49 0-87 30t-50 76l-103 18-11 27q-33 83-33 175 0 84 37 162t100 135 148 91 179 34 179-34 148-91 100-135 37-162z" horiz-adv-x="928.571" />
<glyph glyph-name="video" unicode="&#xe810;" d="M214-43l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m0 214l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m0 214l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m571-429l0 286q0 15-11 25t-25 11l-429 0q-15 0-25-11t-11-25l0-286q0-15 11-25t25-11l429 0q15 0 25 11t11 25z m-571 643l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m786-643l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m-214 429l0 286q0 15-11 25t-25 11l-429 0q-15 0-25-11t-11-25l0-286q0-15 11-25t25-11l429 0q15 0 25 11t11 25z m214-214l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m0 214l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m0 214l0 71q0 15-11 25t-25 11l-71 0q-15 0-25-11t-11-25l0-71q0-15 11-25t25-11l71 0q15 0 25 11t11 25z m71 89l0-750q0-37-26-63t-63-26l-893 0q-37 0-63 26t-26 63l0 750q0 37 26 63t63 26l893 0q37 0 63-26t26-63z" horiz-adv-x="1071.429" />
<glyph glyph-name="target" unicode="&#xe8a7;" d="M521 407l0 162q60-16 103-60t59-103l-162 0z m0-113l162 0q-16-59-59-103t-103-60l0 162z m-113 113l-162 0q16 59 59 103t103 60l0-162z m0-113l0-162q-60 16-103 60t-59 103l162 0z m113 390l0 113q152-19 261-128t130-263l-113 0q-18 107-95 183t-182 94z m-390-277l-113 0q19 152 128 262t263 129l0-113q-106-18-183-94t-95-183z m277-390l0-113q-154 19-263 129t-128 262l113 0q18-107 95-183t183-94z m390 277l113 0q-21-153-130-262t-261-128l0 113q105 18 182 94t95 183z" horiz-adv-x="928" />
<glyph glyph-name="award" unicode="&#xe959;" d="M256 357q-41 90-41 207l-143 0 0-54q0-44 53-90t131-63z m602 153l0 54-143 0q0-117-41-207 79 16 131 63t53 90z m71 71l0-71q0-40-23-80t-62-73-97-54-120-25q-23-30-53-53-21-19-29-40t-8-50q0-30 17-51t54-21q42 0 74-25t33-64l0-36q0-8-5-13t-13-5l-464 0q-8 0-13 5t-5 13l0 36q0 39 33 64t74 25q37 0 54 21t17 51q0 28-8 50t-29 40q-30 23-53 53-63 3-120 25t-97 54-62 73-23 80l0 71q0 22 16 38t38 16l161 0 0 54q0 37 26 63t63 26l321 0q37 0 63-26t26-63l0-54 161 0q22 0 38-16t16-38z" horiz-adv-x="928.571" />
<glyph glyph-name="thumbs-up" unicode="&#xe93f;" d="M143 100q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m643 321q0 28-22 50t-50 21l-196 0q0 32 27 89t27 90q0 55-18 81t-71 26q-15-15-21-47t-17-70-33-61q-12-13-43-51-2-3-13-17t-18-23-19-24-22-25-21-20-22-15-20-5l-18 0 0-357 18 0q7 0 18-2t18-4 21-6 20-6 20-7 16-6q118-41 191-41l68 0q107 0 107 93 0 15-3 31 17 9 27 29t10 41-10 39q30 28 30 66 0 14-6 31t-14 27q18 1 30 26t12 45z m71 1q0-50-27-91 5-18 5-39 0-43-21-80 2-12 2-24 0-56-33-99 1-78-47-122t-127-45l-72 0q-54 0-106 13t-121 37q-65 22-77 22l-161 0q-30 0-50 21t-21 50l0 357q0 30 21 50t50 21l153 0q20 13 76 86 32 42 60 71 13 14 20 48t17 71 35 60q22 21 50 21 47 0 84-18t57-57 20-104q0-52-27-107l98 0q58 0 100-42t42-100z" horiz-adv-x="857.143" />
<glyph glyph-name="thumbs-down" unicode="&#xe940;" d="M143 600q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m643-321q0 20-12 45t-30 26q8 9 14 27t6 31q0 39-30 66 10 18 10 39t-10 41-27 29q3 17 3 31 0 47-27 70t-76 23l-71 0q-73 0-191-41-3-1-16-6t-20-7-20-6-21-6-18-4-18-2l-18 0 0-357 18 0q9 0 20-5t22-15 21-20 22-25 19-24 18-23 13-17q31-38 43-51 23-24 33-61t17-70 21-47q54 0 71 26t18 81q0 33-27 90t-27 89l196 0q28 0 50 21t22 50z m71-1q0-57-42-100t-100-42l-98 0q27-55 27-107 0-66-20-104-20-39-57-57t-84-18q-28 0-50 21-19 18-30 46t-14 50-10 47-17 36q-27 28-60 71-56 73-76 86l-153 0q-30 0-50 21t-21 50l0 357q0 30 21 50t50 21l161 0q12 0 77 22 71 25 124 37t112 12l62 0q78 0 126-44t48-121l0-3q33-43 33-99 0-12-2-24 21-37 21-80 0-20-5-39 27-41 27-91z" horiz-adv-x="857.143" />
<glyph glyph-name="user" unicode="&#xe80c;" d="M786 66q0-67-41-106t-108-39l-488 0q-68 0-108 39t-41 106q0 30 2 58t8 61 15 61 24 54 35 45 48 30 62 11q5 0 23-12t42-27 60-27 74-12 74 12 60 27 42 27 23 12q34 0 62-11t48-30 35-45 24-54 15-61 8-61 2-58z m-179 498q0-89-63-151t-151-63-151 63-63 151 63 151 151 63 151-63 63-151z" horiz-adv-x="785.714" />
<glyph glyph-name="users" unicode="&#xe80d;" d="M331 350q-90-3-148-71l-75 0q-46 0-77 23t-31 66q0 197 69 197 3 0 24-12t54-24 66-12q37 0 74 13-3-21-3-37 0-78 45-143z m598-355q0-67-41-106t-108-39l-488 0q-68 0-108 39t-41 106q0 30 2 58t8 61 15 61 24 54 35 45 48 30 62 11q6 0 24-12t41-27 60-27 75-12 75 12 60 27 41 27 24 12q34 0 62-11t48-30 35-45 24-54 15-61 8-61 2-58z m-571 713q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m393-214q0-89-63-151t-151-63-151 63-63 151 63 151 151 63 151-63 63-151z m321-126q0-44-31-66t-77-23l-75 0q-57 69-148 71 45 65 45 143 0 16-3 37 37-13 74-13 33 0 66 12t54 24 24 12q69 0 69-197z m-71 340q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z" horiz-adv-x="1071.429" />
<glyph glyph-name="credit-card" unicode="&#xe965;" d="M982 779q37 0 63-26t26-63l0-679q0-37-26-63t-63-26l-893 0q-37 0-63 26t-26 63l0 679q0 37 26 63t63 26l893 0z m-893-71q-7 0-13-5t-5-13l0-125 929 0 0 125q0 7-5 13t-13 5l-893 0z m893-714q7 0 13 5t5 13l0 339-929 0 0-339q0-7 5-13t13-5l893 0z m-839 71l0 71 143 0 0-71-143 0z m214 0l0 71 214 0 0-71-214 0z" horiz-adv-x="1071.429" />
<glyph glyph-name="briefcase" unicode="&#xe8c7;" d="M357 707l286 0 0 71-286 0 0-71z m643-357l0-268q0-37-26-63t-63-26l-821 0q-37 0-63 26t-26 63l0 268 375 0 0-89q0-15 11-25t25-11l179 0q15 0 25 11t11 25l0 89 375 0z m-429 0l0-71-143 0 0 71 143 0z m429 268l0-214-1000 0 0 214q0 37 26 63t63 26l196 0 0 89q0 22 16 38t38 16l321 0q22 0 38-16t16-38l0-89 196 0q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="floppy" unicode="&#xe966;" d="M214-7l429 0 0 214-429 0 0-214z m500 0l71 0 0 500q0 8-6 21t-11 19l-157 157q-6 6-19 11t-22 6l0-232q0-22-16-38t-38-16l-321 0q-22 0-38 16t-16 38l0 232-71 0 0-714 71 0 0 232q0 22 16 38t38 16l464 0q22 0 38-16t16-38l0-232z m-214 518l0 179q0 7-5 13t-13 5l-107 0q-7 0-13-5t-5-13l0-179q0-7 5-13t13-5l107 0q7 0 13 5t5 13z m357-18l0-518q0-22-16-38t-38-16l-750 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l518 0q22 0 49-11t42-27l156-156q16-16 27-42t11-49z" horiz-adv-x="857.143" />
<glyph glyph-name="folder-open" unicode="&#xe81e;" d="M1313 632l-1235 0q9 48 27 67 16 17 31 17l4 0q4-1 8-1 12 0 26 4 18 6 25 29l24 72q77 29 208 29 89 0 164-29l25-72q24-23 33-26t44-3l485 0q84 0 110-22 12-11 22-65z m78-164l0-10-68-523q-5-35-34-61t-65-26l-1058 0q-36 0-66 26t-34 61l-67 523q-1 3-1 10 0 33 23 55t56 22l1235 0q33 0 56-22t23-55z" horiz-adv-x="1391" />
<glyph glyph-name="doc" unicode="&#xe857;" d="M71-7l571 0 0 429-232 0q-22 0-38 16t-16 38l0 232-286 0 0-714z m357 500l210 0q-6 16-12 23l-175 175q-7 7-23 12l0-210z m286-18l0-500q0-22-16-38t-38-16l-607 0q-22 0-38 16t-16 38l0 750q0 22 16 38t38 16l357 0q22 0 49-11t42-27l174-174q16-16 27-42t11-49z" horiz-adv-x="714.286" />
<glyph glyph-name="calendar" unicode="&#xe866;" d="M71-79l161 0 0 161-161 0 0-161z m196 0l179 0 0 161-179 0 0-161z m-196 196l161 0 0 179-161 0 0-179z m196 0l179 0 0 179-179 0 0-179z m-196 214l161 0 0 161-161 0 0-161z m411-411l179 0 0 161-179 0 0-161z m-214 411l179 0 0 161-179 0 0-161z m429-411l161 0 0 161-161 0 0-161z m-214 196l179 0 0 179-179 0 0-179z m-196 482l0 161q0 7-5 13t-13 5l-36 0q-7 0-13-5t-5-13l0-161q0-7 5-13t13-5l36 0q7 0 13 5t5 13z m411-482l161 0 0 179-161 0 0-179z m-214 214l179 0 0 161-179 0 0-161z m214 0l161 0 0 161-161 0 0-161z m18 268l0 161q0 7-5 13t-13 5l-36 0q-7 0-13-5t-5-13l0-161q0-7 5-13t13-5l36 0q7 0 13 5t5 13z m214 36l0-714q0-29-21-50t-50-21l-786 0q-29 0-50 21t-21 50l0 714q0 29 21 50t50 21l71 0 0 54q0 37 26 63t63 26l36 0q37 0 63-26t26-63l0-54 214 0 0 54q0 37 26 63t63 26l36 0q37 0 63-26t26-63l0-54 71 0q29 0 50-21t21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="chart-bar" unicode="&#xe90f;" d="M688-97l0 893 223 0 0-893-223 0z m-335 0l0 670 223 0 0-670-223 0z m-335 0l0 447 223 0 0-447-223 0z" horiz-adv-x="928" />
<glyph glyph-name="pin" unicode="&#xe831;" d="M268 368l0 250q0 8-5 13t-13 5-13-5-5-13l0-250q0-8 5-13t13-5 13 5 5 13z m375-196q0-15-11-25t-25-11l-239 0-28-270q-1-7-6-11t-11-5l-1 0q-15 0-18 15l-42 271-225 0q-15 0-25 11t-11 25q0 69 44 124t99 55l0 286q-29 0-50 21t-21 50 21 50 50 21l357 0q29 0 50-21t21-50-21-50-50-21l0-286q55 0 99-55t44-124z" horiz-adv-x="642.857" />
<glyph glyph-name="attach" unicode="&#xe82d;" d="M783 77q0-65-44-109t-109-44q-75 0-131 56l-434 433q-63 64-63 151 0 89 61 151t150 62q88 0 152-63l338-338q6-6 6-12 0-9-17-26t-26-17q-7 0-13 6l-338 339q-44 43-101 43-59 0-100-42t-41-101q0-59 42-101l433-434q35-35 81-35 36 0 59 23t23 59q0 46-35 81l-324 324q-15 13-33 13-16 0-27-11t-11-27q0-18 14-33l229-229q6-6 6-12 0-9-17-26t-26-17q-7 0-12 6l-229 229q-35 34-35 83 0 46 32 78t78 32q49 0 83-35l324-324q56-55 56-131z" horiz-adv-x="785.714" />
<glyph glyph-name="book" unicode="&#xe8cc;" d="M915 583q22-32 10-72l-153-506q-11-36-43-60t-68-24l-515 0q-43 0-83 30t-56 73q-13 37-1 71 0 2 2 15t2 21q1 4-2 12t-2 11q1 6 4 12t9 13 9 13q13 21 25 51t17 51q2 6 0 17t0 16q2 6 9 16t9 13q12 20 23 51t14 50q1 5-1 18t0 16q2 7 12 17t12 13q11 15 24 47t15 54q1 4-2 14t-1 15q1 4 5 10t10 13 9 12q4 7 9 17t8 20 9 20 11 18 15 13 20 6 27-3l-1-2q21 5 28 5l425 0q41 0 64-31t10-73l-153-506q-20-66-40-86t-72-19l-485 0q-15 0-21-8-6-9-1-24 13-39 80-39l515 0q16 0 31 9t20 23l167 551q4 12 3 32 21-8 33-24z m-594-1q-2-7 1-13t11-5l339 0q7 0 14 5t9 13l12 36q2 7-1 13t-11 5l-339 0q-7 0-14-5t-9-13z m-46-143q-2-7 1-13t11-5l339 0q7 0 14 5t9 13l12 36q2 7-1 13t-11 5l-339 0q-7 0-14-5t-9-13z" horiz-adv-x="928.571" />
<glyph glyph-name="phone" unicode="&#xe85f;" d="M786 158q0-15-6-39t-12-38q-12-28-68-59-52-28-104-28-15 0-29 2t-32 7-27 8-31 11-27 10q-55 20-98 46-71 44-148 120t-120 148q-27 43-46 98-2 5-10 27t-11 31-8 27-7 32-2 29q0 51 28 104 31 56 59 68 14 6 38 12t39 6q8 0 12-2 10-3 30-42 6-11 17-30t20-35 17-30q2-2 10-14t12-20 4-16q0-11-16-28t-35-31-35-30-16-26q0-5 3-13t5-11 8-13 6-11q42-76 97-131t131-97q1-1 11-6t13-8 11-5 13-3q10 0 26 16t30 35 31 35 28 16q8 0 16-4t20-12 14-10q14-8 30-17t35-20 30-17q39-20 42-30 2-4 2-12z" horiz-adv-x="785.714" />
<glyph glyph-name="megaphone" unicode="&#xe967;" d="M929 493q30 0 50-21t21-50-21-50-50-21l0-214q0-29-21-50t-50-21q-233 194-453 212-32-11-51-37t-17-56 22-52q-11-18-13-37t3-32 19-31 27-28 34-28q-16-32-62-46t-94-6-74 31q-4 13-16 49t-18 53-13 50-8 56 2 55 12 62l-68 0q-37 0-63 26t-26 63l0 107q0 37 26 63t63 26l268 0q243 0 500 214 29 0 50-21t21-50l0-214z m-71-337l0 532q-220-169-429-191l0-151q210-23 429-190z" horiz-adv-x="1000" />
<glyph glyph-name="upload" unicode="&#xe83c;" d="M714 29q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m143 0q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 125l0-179q0-22-16-38t-38-16l-821 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l238 0q12-31 39-51t62-20l143 0q34 0 62 20t39 51l238 0q22 0 38-16t16-38z m-181 362q-9-22-33-22l-143 0 0-250q0-15-11-25t-25-11l-143 0q-15 0-25 11t-11 25l0 250-143 0q-23 0-33 22-9 22 8 39l250 250q10 11 25 11t25-11l250-250q17-17 8-39z" horiz-adv-x="928.571" />
<glyph glyph-name="download" unicode="&#xe83b;" d="M714 100q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m143 0q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m71 125l0-179q0-22-16-38t-38-16l-821 0q-22 0-38 16t-16 38l0 179q0 22 16 38t38 16l259 0 75-76q32-31 76-31t76 31l76 76 259 0q22 0 38-16t16-38z m-181 318q9-23-8-39l-250-250q-10-11-25-11t-25 11l-250 250q-17 16-8 39 9 22 33 22l143 0 0 250q0 15 11 25t25 11l143 0q15 0 25-11t11-25l0-250 143 0q23 0 33-22z" horiz-adv-x="928.571" />
<glyph glyph-name="signal" unicode="&#xe8a8;" d="M143 46l0-107q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l107 0q8 0 13-5t5-13z m214 71l0-179q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 179q0 8 5 13t13 5l107 0q8 0 13-5t5-13z m214 143l0-321q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 321q0 8 5 13t13 5l107 0q8 0 13-5t5-13z m214 214l0-536q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 536q0 8 5 13t13 5l107 0q8 0 13-5t5-13z m214 286l0-821q0-8-5-13t-13-5l-107 0q-8 0-13 5t-5 13l0 821q0 8 5 13t13 5l107 0q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="camera" unicode="&#xe813;" d="M536 475q66 0 114-47t47-114-47-114-114-47-114 47-47 114 47 114 114 47z m393 232q59 0 101-42t42-101l0-500q0-59-42-101t-101-42l-786 0q-59 0-101 42t-42 101l0 500q0 59 42 101t101 42l125 0 28 76q11 27 39 47t58 20l286 0q30 0 58-20t39-47l28-76 125 0z m-393-643q103 0 177 73t73 177-73 177-177 73-177-73-73-177 73-177 177-73z" horiz-adv-x="1071.429" />
<glyph glyph-name="shuffle" unicode="&#xe956;" d="M372 582q-33-51-76-152-12 25-21 40t-23 35-28 32-35 20-45 8l-125 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l125 0q140 0 229-126z m628-446q0-8-5-13l-179-179q-5-5-13-5-7 0-13 5t-5 13l0 107q-18 0-47 0t-45-1-41 1-40 3-36 6-35 10-32 16-33 22-31 30-31 39q33 52 76 152 12-25 21-40t23-35 28-32 35-20 45-8l143 0 0 107q0 8 5 13t13 5q7 0 13-6l178-178q5-5 5-13z m0 500q0-8-5-13l-179-179q-5-5-13-5-7 0-13 5t-5 13l0 107-143 0q-27 0-49-8t-39-25-28-34-25-43q-18-35-44-95-16-37-28-62t-30-59-36-56-41-46-50-38-59-23-71-9l-125 0q-8 0-13 5t-5 13l0 107q0 8 5 13t13 5l125 0q27 0 49 8t39 25 28 34 25 43q18 35 44 95 16 37 28 62t30 59 36 56 41 46 50 38 59 23 71 9l143 0 0 107q0 8 5 13t13 5q7 0 13-6l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="volume-off" unicode="&#xe94c;" d="M429 654l0-607q0-15-11-25t-25-11-25 11l-186 186-146 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l146 0 186 186q11 11 25 11t25-11 11-25z" horiz-adv-x="428.571" />
<glyph glyph-name="volume-down" unicode="&#xe869;" d="M429 654l0-607q0-15-11-25t-25-11-25 11l-186 186-146 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l146 0 186 186q11 11 25 11t25-11 11-25z m214-304q0-42-24-79t-63-52q-6-3-14-3-15 0-25 10t-11 25q0 12 7 20t16 14 19 13 16 20 7 32-7 32-16 20-19 13-16 14-7 20q0 15 11 25t25 10q8 0 14-3 39-15 63-52t24-79z" horiz-adv-x="642.857" />
<glyph glyph-name="volume-up" unicode="&#xe86a;" d="M429 654l0-607q0-15-11-25t-25-11-25 11l-186 186-146 0q-15 0-25 11t-11 25l0 214q0 15 11 25t25 11l146 0 186 186q11 11 25 11t25-11 11-25z m214-304q0-42-24-79t-63-52q-6-3-14-3-15 0-25 10t-11 25q0 12 7 20t16 14 19 13 16 20 7 32-7 32-16 20-19 13-16 14-7 20q0 15 11 25t25 10q8 0 14-3 39-15 63-52t24-79z m143 0q0-85-47-158t-126-105q-7-3-14-3-15 0-26 11t-11 25q0 22 22 33 31 16 42 25 41 30 64 76t23 97-23 97-64 76q-11 8-42 25-22 11-22 33 0 15 11 25t25 11q7 0 15-3 78-33 126-105t47-158z m143 0q0-128-71-236t-189-158q-7-3-15-3-15 0-25 11t-11 25q0 20 22 33 4 2 13 6t13 6q26 14 46 28 69 51 107 127t39 161-39 161-107 127q-20 15-46 28-4 2-13 6t-13 6q-22 13-22 33 0 15 11 25t25 11q7 0 15-3 118-51 189-158t71-236z" horiz-adv-x="928.571" />
<glyph glyph-name="search" unicode="&#xe803;" d="M643 386q0 103-73 177t-177 73-177-73-73-177 73-177 177-73 177 73 73 177z m286-464q0-29-21-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69-80 0-153 31t-126 84-84 126-31 153 31 153 84 126 126 84 153 31 153-31 126-84 84-126 31-153q0-123-69-223l191-191q21-21 21-50z" horiz-adv-x="928.571" />
<glyph glyph-name="key" unicode="&#xe8d9;" d="M464 564q0 45-31 76t-76 31-76-31-31-76q0-23 11-46-23 11-46 11-45 0-76-31t-31-76 31-76 76-31 76 31 31 76q0 23-11 46 23-11 46-11 45 0 76 31t31 76z m475-393q0-9-27-37t-37-27q-5 0-16 9t-20 18-21 22-14 15l-54-54 123-123q16-16 16-38 0-23-22-45t-45-22q-22 0-38 16l-374 374q-98-73-204-73-91 0-148 57t-57 148q0 89 53 175t138 138 175 53q91 0 148-57t57-148q0-105-73-204l198-198 54 54q-2 2-15 14t-22 21-18 20-9 16q0 9 27 37t37 27q7 0 13-6 3-3 26-25t46-44 48-48 41-44 16-23z" horiz-adv-x="1000" />
<glyph glyph-name="lock" unicode="&#xe82e;" d="M179 421l286 0 0 107q0 59-42 101t-101 42-101-42-42-101l0-107z m464-54l0-321q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 321q0 22 16 38t38 16l18 0 0 107q0 103 74 176t176 74 176-74 74-176l0-107 18 0q22 0 38-16t16-38z" horiz-adv-x="642.857" />
<glyph glyph-name="lock-open" unicode="&#xe82f;" d="M929 529l0-143q0-15-11-25t-25-11l-36 0q-15 0-25 11t-11 25l0 143q0 59-42 101t-101 42-101-42-42-101l0-107 54 0q22 0 38-16t16-38l0-321q0-22-16-38t-38-16l-536 0q-22 0-38 16t-16 38l0 321q0 22 16 38t38 16l375 0 0 107q0 103 73 177t177 73 177-73 73-177z" horiz-adv-x="928.571" />
<glyph glyph-name="bell" unicode="&#xe84e;" d="M473-96q0 9-9 9-33 0-57 24t-24 57q0 9-9 9t-9-9q0-41 29-69t69-29q9 0 9 9z m-371 161l724 0q-92 101-138 230t-46 270q0 143-179 143t-179-143q0-142-46-270t-138-230z m826 0q0-29-21-50t-50-21l-250 0q0-59-42-101t-101-42-101 42-42 101l-250 0q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 65q-4 10-4 21 0 22 16 38t38 16 38-16 16-38q0-11-4-21 94-11 147-65t54-146q0-146 54-278t160-222z" horiz-adv-x="928.571" />
<glyph glyph-name="bookmark" unicode="&#xe836;" d="M650 779q13 0 25-5 18-7 29-23t11-35l0-719q0-19-11-35t-29-23q-11-4-25-4-27 0-46 18l-246 237-246-237q-20-18-46-18-13 0-25 5-18 7-29 23t-11 35l0 719q0 19 11 35t29 23q12 5 25 5l585 0z" horiz-adv-x="714.286" />
<glyph glyph-name="fire" unicode="&#xe8d5;" d="M786-96l0-36q0-7-5-13t-13-5l-750 0q-7 0-13 5t-5 13l0 36q0 7 5 13t13 5l750 0q7 0 13-5t5-13z m-143 589q0-44-14-80t-36-63-49-49-54-43-49-40-36-45-14-54q0-54 37-125l-2 1 1-1q-50 23-89 46t-77 56-63 68-40 84-15 103q0 44 14 80t36 63 49 49 54 43 49 40 36 45 14 54q0 52-37 125l2-1-1 1q50-23 89-46t77-56 63-68 40-84 15-103z" horiz-adv-x="785.714" />
<glyph glyph-name="wrench" unicode="&#xe864;" d="M214 29q0 15-11 25t-25 11-25-11-11-25 11-25 25-11 25 11 11 25z m359 234l-381-381q-21-21-50-21t-51 21l-59 60q-21 20-21 50t21 51l380 380q22-55 64-97t97-64z m354 243q0-22-13-59-26-75-92-121t-144-47q-103 0-177 73t-73 177 73 177 177 73q32 0 68-9t60-26q9-6 9-16t-9-16l-163-94 0-125 108-60q3 2 44 27t76 45 39 20q8 0 13-6t5-14z" horiz-adv-x="928.571" />
<glyph glyph-name="hammer" unicode="&#xe8f5;" d="M988-7q0-30-21-50l-60-60q-22-21-51-21-30 0-50 21l-203 203q-21 20-21 50t24 54l-143 143-70-70q-8-8-19-8t-19 8q1-1 7-7t7-7 6-6 6-8 3-8 3-9 1-10q0-21-16-38-2-2-9-10t-11-11-10-9-12-9-12-5-15-3q-22 0-38 16l-228 228q-16 16-16 38 0 7 3 15t5 12 9 12 9 10 11 11 10 9q17 16 38 16 6 0 10-1t9-3 8-3 8-6 6-6 7-7 7-7q-8 8-8 19t8 19l194 194q8 8 19 8t19-8q-1 1-7 7t-7 7-6 6-6 8-3 8-3 9-1 10q0 21 16 38 2 2 9 10t11 11 10 9 12 9 12 5 15 3q22 0 38-16l228-228q16-16 16-38 0-7-3-15t-5-12-9-12-9-10-11-11-10-9q-17-16-38-16-6 0-10 1t-9 3-8 3-8 6-6 6-7 7-7 7q8-8 8-19t-8-19l-70-70 143-143q24 24 54 24 29 0 51-21l203-203q21-22 21-51z" horiz-adv-x="1000" />
<glyph glyph-name="clock" unicode="&#xe86c;" d="M500 546l0-250q0-8-5-13t-13-5l-179 0q-8 0-13 5t-5 13l0 36q0 8 5 13t13 5l125 0 0 196q0 8 5 13t13 5l36 0q8 0 13-5t5-13z m232-196q0 83-41 152t-110 110-152 41-152-41-110-110-41-152 41-152 110-110 152-41 152 41 110 110 41 152z m125 0q0-117-57-215t-156-156-215-57-215 57-156 156-57 215 57 215 156 156 215 57 215-57 156-156 57-215z" horiz-adv-x="857.143" />
<glyph glyph-name="truck" unicode="&#xe8e2;" d="M357 64q0 29-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m-214 286l214 0 0 143-88 0q-7 0-12-5l-109-109q-5-5-5-12l0-17z m714-286q0 29-21 50t-50 21-50-21-21-50 21-50 50-21 50 21 21 50z m143 607l0-571q0-8-2-15t-8-10-9-6-13-3-13-1-14 0-13 0q0-59-42-101t-101-42-101 42-42 101l-214 0q0-59-42-101t-101-42-101 42-42 101l-36 0q-2 0-13 0t-14 0-13 1-13 3-9 6-8 10-2 15q0 15 11 25t25 11l0 179q0 4 0 20t0 21 1 19 4 21 8 17 13 17l110 110q11 11 28 18t33 7l89 0 0 107q0 15 11 25t25 11l571 0q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="block" unicode="&#xe86e;" d="M732 352q0 90-49 165l-421-420q76-50 166-50 62 0 118 24t97 65 65 97 24 119z m-557-167l421 421q-75 51-167 51-83 0-152-41t-110-111-41-153q0-90 50-167z m682 167q0-88-34-167t-91-137-137-92-167-34-167 34-137 92-91 137-34 167 34 167 91 137 137 92 167 34 167-34 137-92 91-137 34-167z" horiz-adv-x="857.143" />
<glyph glyph-name="glass" unicode="&#xe801;" d="m948 746q0-19-24-43l-353-353v-429h179q15 0 25-10t11-25t-11-25t-25-11h-500q-14 0-25 11t-11 25t11 25t25 10h179v429l-353 353q-24 24-24 43q0 13 10 21t21 9t24 3h786q13 0 24-3t21-9t10-21z" horiz-adv-x="1000" />
<glyph glyph-name="archive" unicode="&#xe859;" d="m1217 806v-131q0-18-12-30t-31-13h-1131q-17 0-30 13t-13 30v131q0 17 13 30t30 13h1131q18 0 31-13t12-30z m-43-305v-609q0-17-13-30t-31-13h-1043q-18 0-31 13t-13 30v609q0 18 13 31t31 13h1043q18 0 31-13t13-31z m-304-152q0 27-19 46t-47 19h-391q-27 0-46-19t-19-46t19-46t46-19h391q27 0 47 19t19 46z" horiz-adv-x="1217" />
<glyph glyph-name="search" unicode="&#xe803;" d="m643 386q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="mail" unicode="&#xe804;" d="m929 11v428q-18-20-39-37q-149-114-238-188q-28-24-46-38t-48-27t-57-13h-2q-26 0-57 13t-48 27t-46 38q-88 74-238 188q-21 17-39 37v-428q0-8 6-13t12-5h822q7 0 12 5t6 13z m0 586v14t-1 7t-1 7t-3 5t-5 4t-8 2h-822q-7 0-12-6t-6-12q0-94 82-159q108-85 224-177q4-2 20-16t25-21t25-18t28-15t24-5h2q11 0 24 5t28 15t25 18t25 21t20 16q116 92 224 177q30 24 56 65t26 73z m71 21v-607q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v607q0 37 26 63t63 26h822q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="mail-alt" unicode="&#xe805;" d="m1000 454v-443q0-37-26-63t-63-27h-822q-36 0-63 27t-26 63v443q25-28 56-49q202-137 278-192q32-24 51-37t53-27t61-13h2q28 0 61 13t53 27t51 37q95 68 278 192q32 22 56 49z m0 164q0-44-27-84t-68-69q-210-146-262-181q-5-4-23-17t-30-22t-29-18t-33-15t-27-5h-2q-12 0-27 5t-33 15t-29 18t-30 22t-23 17q-51 35-147 101t-114 80q-35 23-65 64t-31 77q0 43 23 72t66 29h822q36 0 62-26t27-63z" horiz-adv-x="1000" />
<glyph glyph-name="heart" unicode="&#xe806;" d="m500-79q-14 0-25 10l-348 336q-5 5-15 15t-31 36t-38 55t-30 67t-13 77q0 123 71 192t196 70q34 0 70-12t67-33t54-38t42-38q20 20 42 38t54 38t67 33t70 12q125 0 196-70t71-192q0-123-128-251l-347-335q-10-10-25-10z" horiz-adv-x="1000" />
<glyph glyph-name="heart-empty" unicode="&#xe807;" d="m929 517q0 46-12 80t-31 55t-46 33t-52 18t-55 4t-62-14t-62-36t-48-40t-34-34q-10-13-27-13t-27 13q-14 15-34 34t-48 40t-62 36t-62 14t-55-4t-52-18t-46-33t-31-55t-12-80q0-93 105-198l324-312l324 312q105 105 105 198z m71 0q0-123-128-251l-347-335q-10-10-25-10t-25 10l-348 336q-5 5-15 15t-31 36t-38 55t-30 67t-13 77q0 123 71 192t196 70q34 0 70-12t67-33t54-38t42-38q20 20 42 38t54 38t67 33t70 12q125 0 196-70t71-192z" horiz-adv-x="1000" />
<glyph glyph-name="star" unicode="&#xe808;" d="m929 489q0-12-15-27l-203-197l48-279q1-4 1-12q0-11-6-19t-17-9q-10 0-22 7l-251 132l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23t28-23l125-254l280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="star-empty" unicode="&#xe809;" d="m634 290l171 165l-235 35l-106 213l-105-213l-236-35l171-165l-41-235l211 111l211-111z m295 199q0-12-15-27l-203-197l48-279q1-4 1-12q0-28-23-28q-10 0-22 7l-251 132l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23t28-23l125-254l280-40q32-5 32-26z" horiz-adv-x="928.6" />
<glyph glyph-name="star-half" unicode="&#xe80a;" d="m464 832v-747l-250-132q-13-7-23-7q-11 0-17 9t-6 19q0 4 1 12l48 279l-203 197q-14 15-14 27q0 21 31 26l280 40l126 254q11 23 27 23z" horiz-adv-x="500" />
<glyph glyph-name="star-half-alt" unicode="&#xe80b;" d="m662 316l143 139l-198 29l-37 6l-17 34l-89 179v-537l33-17l178-94l-34 198l-7 37z m252 146l-202-197l47-279q3-19-3-29t-19-11q-9 0-22 7l-251 132l-250-132q-13-7-23-7q-12 0-19 11t-3 29l48 279l-203 197q-18 18-13 33t30 20l280 40l126 254q11 23 27 23q16 0 28-23l125-254l280-40q25-4 30-20t-13-33z" horiz-adv-x="928.6" />
<glyph glyph-name="user" unicode="&#xe80c;" d="m786 66q0-67-41-106t-108-39h-488q-67 0-108 39t-41 106q0 30 2 58t8 61t15 60t24 55t34 45t48 30t62 11q5 0 24-12t41-27t60-27t75-12t74 12t61 27t41 27t24 12q34 0 62-11t48-30t34-45t24-55t15-60t8-61t2-58z m-179 498q0-88-63-151t-151-63t-152 63t-62 151t62 152t152 63t151-63t63-152z" horiz-adv-x="785.7" />
<glyph glyph-name="users" unicode="&#xe80d;" d="m331 350q-90-3-148-71h-75q-45 0-77 22t-31 66q0 197 69 197q4 0 25-11t54-24t66-12q38 0 75 13q-3-21-3-37q0-78 45-143z m598-356q0-66-41-105t-108-39h-488q-68 0-108 39t-41 105q0 30 2 58t8 61t14 61t24 54t35 45t48 30t62 11q6 0 24-12t41-26t59-27t76-12t75 12t60 27t41 26t23 12q35 0 63-11t47-30t35-45t24-54t15-61t8-61t2-58z m-572 713q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z m393-214q0-89-63-152t-151-62t-152 62t-63 152t63 151t152 63t151-63t63-151z m321-126q0-43-31-66t-77-22h-75q-57 68-147 71q45 65 45 143q0 16-3 37q37-13 74-13q33 0 67 12t54 24t24 11q69 0 69-197z m-71 340q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z" horiz-adv-x="1071.4" />
<glyph glyph-name="male" unicode="&#xe80e;" d="m571 457v-232q0-22-15-38t-38-16t-38 16t-16 38v196h-35v-509q0-25-19-44t-44-18t-44 18t-18 44v259h-36v-259q0-25-19-44t-44-18t-44 18t-18 44v509h-36v-196q0-22-15-38t-38-16t-38 16t-16 38v232q0 45 31 76t76 31h357q45 0 76-31t31-76z m-160 250q0-52-37-88t-88-37t-89 37t-36 88t36 89t89 36t88-36t37-89z" horiz-adv-x="571.4" />
<glyph glyph-name="female" unicode="&#xe80f;" d="m714 261q0-23-15-38t-38-16q-29 0-45 24l-127 190h-25v-73l138-230q5-8 5-18q0-14-10-25t-26-11h-107v-152q0-25-18-44t-44-18h-89q-26 0-45 18t-18 44v152h-107q-15 0-25 11t-11 25q0 10 5 18l138 230v73h-25l-127-190q-16-24-44-24q-23 0-38 16t-16 38q0 16 9 29l143 215q41 59 98 59h214q58 0 99-59l142-215q9-13 9-29z m-232 446q0-52-36-88t-89-37t-88 37t-37 88t37 89t88 36t89-36t36-89z" horiz-adv-x="714.3" />
<glyph glyph-name="video" unicode="&#xe810;" d="m214-43v72q0 14-10 25t-25 10h-72q-14 0-25-10t-11-25v-72q0-14 11-25t25-11h72q14 0 25 11t10 25z m0 214v72q0 14-10 25t-25 11h-72q-14 0-25-11t-11-25v-72q0-14 11-25t25-10h72q14 0 25 10t10 25z m0 215v71q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m572-429v286q0 14-11 25t-25 11h-429q-14 0-25-11t-10-25v-286q0-14 10-25t25-11h429q15 0 25 11t11 25z m-572 643v71q0 15-10 26t-25 10h-72q-14 0-25-10t-11-26v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m786-643v72q0 14-11 25t-25 10h-71q-15 0-25-10t-11-25v-72q0-14 11-25t25-11h71q15 0 25 11t11 25z m-214 429v285q0 15-11 26t-25 10h-429q-14 0-25-10t-10-26v-285q0-15 10-25t25-11h429q15 0 25 11t11 25z m214-215v72q0 14-11 25t-25 11h-71q-15 0-25-11t-11-25v-72q0-14 11-25t25-10h71q15 0 25 10t11 25z m0 215v71q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m0 214v71q0 15-11 26t-25 10h-71q-15 0-25-10t-11-26v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m71 89v-750q0-37-26-63t-63-26h-893q-36 0-63 26t-26 63v750q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="videocam" unicode="&#xe811;" d="m1000 654v-608q0-23-22-32q-7-3-14-3q-15 0-25 10l-225 225v-92q0-67-47-114t-113-47h-393q-67 0-114 47t-47 114v392q0 67 47 114t114 47h393q66 0 113-47t47-114v-92l225 225q10 10 25 10q7 0 14-3q22-9 22-32z" horiz-adv-x="1000" />
<glyph glyph-name="picture" unicode="&#xe812;" d="m357 529q0-45-31-76t-76-32t-76 32t-31 76t31 75t76 32t76-32t31-75z m572-215v-250h-786v107l178 179l90-89l285 285z m53 393h-893q-7 0-12-5t-6-13v-678q0-8 6-13t12-5h893q7 0 13 5t5 13v678q0 7-5 13t-13 5z m89-18v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera" unicode="&#xe813;" d="m536 475q66 0 113-47t47-114t-47-113t-113-47t-114 47t-47 113t47 114t114 47z m393 232q59 0 101-42t41-101v-500q0-59-41-101t-101-42h-786q-59 0-101 42t-42 101v500q0 59 42 101t101 42h125l28 76q11 27 39 47t58 20h286q29 0 57-20t39-47l29-76h125z m-393-643q103 0 176 74t74 176t-74 177t-176 73t-177-73t-73-177t73-176t177-74z" horiz-adv-x="1071.4" />
<glyph glyph-name="camera-alt" unicode="&#xe814;" d="m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5t12 5t5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62t-151-62t-63-152t63-151t151-63t152 63t62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z" horiz-adv-x="1000" />
<glyph glyph-name="th-large" unicode="&#xe815;" d="m429 279v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v215q0 29 21 50t50 21h286q29 0 50-21t22-50z m0 428v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50v214q0 29 21 50t50 22h286q29 0 50-22t22-50z m500-428v-215q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v215q0 29 21 50t50 21h286q29 0 50-21t22-50z m0 428v-214q0-29-22-50t-50-22h-286q-29 0-50 22t-21 50v214q0 29 21 50t50 22h286q29 0 50-22t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="th" unicode="&#xe816;" d="m286 154v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q22 0 38-15t16-38z m0 285v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q22 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q22 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m357-285v-108q0-22-16-37t-38-16h-178q-22 0-38 16t-16 37v108q0 22 16 38t38 15h178q23 0 38-15t16-38z m-357 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z m357-286v-107q0-22-16-38t-38-15h-178q-22 0-38 15t-16 38v107q0 23 16 38t38 16h178q23 0 38-16t16-38z m0 286v-107q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v107q0 22 16 38t38 16h178q23 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="th-list" unicode="&#xe817;" d="m286 154v-108q0-22-16-37t-38-16h-178q-23 0-38 16t-16 37v108q0 22 16 38t38 15h178q22 0 38-15t16-38z m0 285v-107q0-22-16-38t-38-15h-178q-23 0-38 15t-16 38v107q0 23 16 38t38 16h178q22 0 38-16t16-38z m714-285v-108q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v108q0 22 16 38t38 15h535q23 0 38-15t16-38z m-714 571v-107q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v107q0 22 16 38t38 16h178q22 0 38-16t16-38z m714-286v-107q0-22-16-38t-38-15h-535q-23 0-38 15t-16 38v107q0 23 16 38t38 16h535q23 0 38-16t16-38z m0 286v-107q0-22-16-38t-38-16h-535q-23 0-38 16t-16 38v107q0 22 16 38t38 16h535q23 0 38-16t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="ok" unicode="&#xe818;" d="m932 534q0-22-15-38l-404-404l-76-76q-16-15-38-15t-38 15l-76 76l-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165l366 367q16 16 38 16t38-16l76-76q15-16 15-38z" horiz-adv-x="1000" />
<glyph glyph-name="ok-circled" unicode="&#xe819;" d="m717 440q0 16-11 26l-50 50q-11 11-25 11t-26-11l-227-227l-126 126q-11 11-25 11t-26-11l-50-50q-10-10-10-26q0-15 10-25l202-202q10-10 25-10q15 0 25 10l303 303q11 10 11 25z m140-90q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-circled2" unicode="&#xe81a;" d="m653 396l-235-235q-11-11-25-11t-25 11l-164 164q-11 11-11 25t11 25l57 57q10 11 25 11t25-11l82-82l153 153q11 11 25 11t26-11l56-56q11-11 11-26t-11-25z m79-46q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="ok-squared" unicode="&#xe81b;" d="m382 125l343 343q10 10 10 25t-10 25l-57 57q-11 10-25 10t-25-10l-261-261l-118 118q-10 11-25 11t-25-11l-57-57q-10-11-10-25t10-25l200-200q11-11 25-11t25 11z m475 493v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel" unicode="&#xe81c;" d="m724 112q0-22-15-38l-76-76q-16-15-38-15t-38 15l-164 165l-164-165q-16-15-38-15t-38 15l-76 76q-16 16-16 38t16 38l164 164l-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164l164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164l164-164q15-15 15-38z" horiz-adv-x="785.7" />
<glyph glyph-name="cancel-circled" unicode="&#xe81d;" d="m641 224q0 14-10 25l-101 101l101 101q10 11 10 25q0 15-10 26l-51 50q-10 11-25 11q-15 0-25-11l-101-101l-101 101q-11 11-26 11q-15 0-25-11l-50-50q-11-11-11-26q0-14 11-25l101-101l-101-101q-11-11-11-25q0-15 11-26l50-50q10-11 25-11q15 0 26 11l101 101l101-101q10-11 25-11q15 0 25 11l51 50q10 11 10 26z m216 126q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="cancel-circled2" unicode="&#xe86f;" d="m612 248l-81-82q-6-5-13-5t-13 5l-76 77l-77-77q-5-5-13-5t-13 5l-81 82q-6 5-6 13t6 13l76 76l-76 76q-6 6-6 13t6 13l81 82q6 5 13 5t13-5l77-77l76 77q6 5 13 5t13-5l81-82q6-5 6-13t-6-13l-76-76l76-76q6-6 6-13t-6-13z m120 102q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="plus" unicode="&#xe81f;" d="m786 439v-107q0-22-16-38t-38-15h-232v-233q0-22-16-37t-38-16h-107q-22 0-38 16t-15 37v233h-232q-23 0-38 15t-16 38v107q0 23 16 38t38 16h232v232q0 22 15 38t38 16h107q23 0 38-16t16-38v-232h232q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="plus-circled" unicode="&#xe820;" d="m679 314v72q0 14-11 25t-25 10h-143v143q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-143h-143q-14 0-25-10t-10-25v-72q0-14 10-25t25-11h143v-142q0-15 11-25t25-11h71q15 0 25 11t11 25v142h143q14 0 25 11t11 25z m178 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="plus-squared" unicode="&#xe821;" d="m714 314v72q0 14-10 25t-25 10h-179v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-179h-178q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h178v-179q0-14 11-25t25-11h71q15 0 25 11t11 25v179h179q14 0 25 10t10 25z m143 304v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="plus-squared-small" unicode="&#xe822;" d="m500 332v-36q0-7-5-12t-13-5h-125v-125q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v125h-125q-8 0-13 5t-5 12v36q0 8 5 13t13 5h125v125q0 8 5 13t13 5h35q8 0 13-5t5-13v-125h125q8 0 13-5t5-13z m71-214v393q0 22-15 38t-38 15h-393q-22 0-38-15t-16-38v-393q0-22 16-38t38-16h393q22 0 38 16t15 38z m72 393v-393q0-51-37-88t-88-37h-393q-52 0-88 37t-37 88v393q0 52 37 88t88 37h393q52 0 88-37t37-88z" horiz-adv-x="642.9" />
<glyph glyph-name="minus" unicode="&#xe823;" d="m786 439v-107q0-22-16-38t-38-15h-678q-23 0-38 15t-16 38v107q0 23 16 38t38 16h678q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="minus-circled" unicode="&#xe824;" d="m679 314v72q0 14-11 25t-25 10h-429q-14 0-25-10t-10-25v-72q0-14 10-25t25-10h429q14 0 25 10t11 25z m178 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared" unicode="&#xe825;" d="m714 314v72q0 14-10 25t-25 10h-500q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h500q14 0 25 10t10 25z m143 304v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="minus-squared-alt" unicode="&#xe826;" d="m643 404v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 7 5 12t13 5h464q8 0 13-5t5-12z m71-250v464q0 37-26 63t-63 26h-464q-37 0-63-26t-27-63v-464q0-37 27-64t63-26h464q37 0 63 26t26 64z m72 464v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="minus-squared-small" unicode="&#xe827;" d="m518 636q52 0 88-37t37-88v-393q0-51-37-88t-88-37h-393q-52 0-88 37t-37 88v393q0 52 37 88t88 37h393z m53-518v393q0 22-15 38t-38 15h-393q-22 0-38-15t-16-38v-393q0-22 16-38t38-16h393q22 0 38 16t15 38z m-89 232q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-321q-8 0-13 5t-5 12v36q0 8 5 13t13 5h321z" horiz-adv-x="642.9" />
<glyph glyph-name="help" unicode="&#xe828;" d="m393 149v-134q0-9-7-16t-15-6h-134q-9 0-16 6t-7 16v134q0 9 7 16t16 6h134q8 0 15-6t7-16z m176 335q0-30-8-56t-20-43t-31-33t-32-25t-34-19q-23-13-38-37t-15-37q0-10-7-18t-16-9h-134q-8 0-14 10t-6 21v26q0 46 37 87t79 60q33 15 47 32t14 42q0 23-26 41t-60 18q-36 0-60-16q-20-14-60-64q-7-9-17-9q-7 0-14 4l-91 70q-8 6-9 14t3 16q89 148 259 148q45 0 90-17t81-46t59-72t23-88z" horiz-adv-x="571.4" />
<glyph glyph-name="help-circled" unicode="&#xe939;" d="m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65t-95 23q-136 0-207-119q-9-14 4-24l74-55q4-4 10-4q9 0 14 7q30 38 48 51q19 14 48 14q27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19t25 27t16 34t7 45z m214-107q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="info-circled" unicode="&#xe93a;" d="m571 82v89q0 8-5 13t-12 5h-54v286q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h53v-179h-53q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h250q7 0 12 5t5 13z m-71 500v89q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-89q0-8 5-13t13-5h107q8 0 13 5t5 13z m357-232q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="info" unicode="&#xe93b;" d="m357 100v-71q0-15-10-25t-26-11h-285q-15 0-25 11t-11 25v71q0 15 11 25t25 11h35v214h-35q-15 0-25 11t-11 25v71q0 15 11 25t25 11h214q15 0 25-11t11-25v-321h35q15 0 26-11t10-25z m-71 643v-107q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v107q0 14 11 25t25 11h143q15 0 25-11t11-25z" horiz-adv-x="357.1" />
<glyph glyph-name="home" unicode="&#xe93c;" d="m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264l321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322l-386-322q-7-4-13-4q-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z" horiz-adv-x="928.6" />
<glyph glyph-name="link" unicode="&#xe83f;" d="m812 171q0 23-15 38l-116 116q-16 16-38 16q-24 0-40-18q1-1 10-10t12-12t9-11t7-14t2-15q0-23-16-38t-38-16q-8 0-15 2t-14 7t-11 9t-12 12t-10 10q-19-17-19-40q0-23 16-38l115-116q15-15 38-15q22 0 38 15l82 81q15 16 15 37z m-392 394q0 22-15 38l-115 115q-16 16-38 16q-22 0-38-15l-82-82q-16-15-16-37q0-22 16-38l116-116q15-15 38-15q23 0 40 17q-2 2-11 11t-12 12t-8 10t-7 14t-2 16q0 22 15 38t38 15q9 0 16-2t14-7t10-8t12-12t11-11q18 17 18 41z m500-394q0-67-48-113l-82-81q-46-47-113-47q-68 0-114 48l-115 115q-46 47-46 114q0 68 49 116l-49 49q-48-49-116-49q-67 0-114 47l-116 116q-47 47-47 114t47 113l82 82q47 46 114 46q67 0 114-47l114-116q47-46 47-113q0-69-49-117l49-49q48 49 116 49q67 0 114-47l116-116q47-47 47-114z" horiz-adv-x="928.6" />
<glyph glyph-name="unlink" unicode="&#xe82a;" d="m245 141l-143-143q-5-5-13-5q-6 0-13 5q-5 5-5 13t5 13l143 142q6 5 13 5t13-5q5-5 5-12t-5-13z m94-23v-179q0-8-5-13t-13-5t-12 5t-5 13v179q0 8 5 13t12 5t13-5t5-13z m-125 125q0-8-5-13t-13-5h-178q-8 0-13 5t-5 13t5 13t13 5h178q8 0 13-5t5-13z m706-72q0-67-48-113l-82-81q-46-47-113-47q-68 0-114 48l-186 187q-12 11-24 31l134 10l152-153q15-15 38-15t38 15l82 81q15 16 15 37q0 23-15 38l-153 154l10 133q20-12 31-23l188-188q47-48 47-114z m-345 404l-133-10l-152 153q-16 16-38 16q-22 0-38-15l-82-82q-16-15-16-37q0-22 16-38l153-153l-10-134q-20 12-32 24l-187 187q-47 48-47 114q0 67 47 113l82 82q47 46 114 46q67 0 114-47l186-187q12-12 23-32z m354-46q0-8-5-13t-13-5h-179q-8 0-13 5t-5 13t5 12t13 5h179q8 0 13-5t5-12z m-304 303v-178q0-8-5-13t-13-5t-13 5t-5 13v178q0 8 5 13t13 5t13-5t5-13z m227-84l-143-143q-6-5-13-5t-12 5q-5 6-5 13t5 13l142 142q6 5 13 5t13-5q5-5 5-12t-5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="link-ext" unicode="&#xe82b;" d="m786 332v-178q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h393q7 0 12-5t5-13v-36q0-8-5-13t-12-5h-393q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v178q0 8 5 13t13 5h36q8 0 13-5t5-13z m214 482v-285q0-15-11-26t-25-10t-25 10l-98 99l-364-364q-5-6-13-6t-13 6l-63 63q-6 6-6 13t6 13l364 364l-99 98q-10 11-10 25t10 25t26 11h285q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="link-ext-alt" unicode="&#xe82c;" d="m714 332v268q0 15-10 25t-25 11h-268q-24 0-33-22q-10-23 8-39l80-80l-298-298q-11-11-11-26t11-25l57-57q11-10 25-10t25 10l298 298l80-80q11-11 26-11q6 0 14 3q21 10 21 33z m143 286v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="attach" unicode="&#xe82d;" d="m783 77q0-65-44-109t-109-44q-75 0-131 55l-434 434q-63 64-63 151q0 88 62 150t150 62q88 0 152-63l338-338q5-5 5-12q0-9-17-26t-26-17q-7 0-13 5l-338 339q-44 43-101 43q-59 0-100-42t-40-101q0-58 42-101l433-433q35-35 81-35q36 0 59 23t24 59q0 46-36 81l-324 324q-14 14-33 14q-16 0-27-11t-11-27q0-18 14-33l229-228q6-6 6-13q0-9-18-26t-26-17q-7 0-12 5l-229 229q-35 34-35 83q0 46 32 78t77 32q49 0 83-36l325-324q55-54 55-131z" horiz-adv-x="785.7" />
<glyph glyph-name="lock" unicode="&#xe82e;" d="m179 421h285v108q0 59-42 101t-101 41t-101-41t-41-101v-108z m464-53v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v108q0 102 74 176t176 74t177-74t73-176v-108h18q23 0 38-15t16-38z" horiz-adv-x="642.9" />
<glyph glyph-name="lock-open" unicode="&#xe82f;" d="m929 529v-143q0-15-11-25t-25-11h-36q-14 0-25 11t-11 25v143q0 59-41 101t-101 41t-101-41t-42-101v-108h53q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h375v108q0 103 73 176t177 74t176-74t74-176z" horiz-adv-x="928.6" />
<glyph glyph-name="lock-open-alt" unicode="&#xe830;" d="m589 421q23 0 38-15t16-38v-322q0-22-16-37t-38-16h-535q-23 0-38 16t-16 37v322q0 22 16 38t38 15h17v179q0 103 74 177t176 73t177-73t73-177q0-15-10-25t-25-11h-36q-14 0-25 11t-11 25q0 59-42 101t-101 42t-101-42t-41-101v-179h410z" horiz-adv-x="642.9" />
<glyph glyph-name="pin" unicode="&#xe831;" d="m268 368v250q0 8-5 13t-13 5t-13-5t-5-13v-250q0-8 5-13t13-5t13 5t5 13z m375-197q0-14-11-25t-25-10h-239l-29-270q-1-7-6-11t-11-5h-1q-15 0-17 15l-43 271h-225q-15 0-25 10t-11 25q0 69 44 124t99 55v286q-29 0-50 21t-22 50t22 50t50 22h357q29 0 50-22t21-50t-21-50t-50-21v-286q55 0 99-55t44-124z" horiz-adv-x="642.9" />
<glyph glyph-name="eye" unicode="&#xe832;" d="m929 314q-85 132-213 197q34-58 34-125q0-104-73-177t-177-73t-177 73t-73 177q0 67 34 125q-128-65-213-197q75-114 187-182t242-68t242 68t187 182z m-402 215q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8t19 8t8 19q0 48 34 82t82 34q11 0 19 8t8 19z m473-215q0-19-11-38q-78-129-210-206t-279-77t-279 77t-210 206q-11 19-11 38t11 39q78 128 210 205t279 78t279-78t210-205q11-20 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="eye-off" unicode="&#xe833;" d="m310 105l43 79q-48 35-76 88t-27 114q0 67 34 125q-128-65-213-197q94-144 239-209z m217 424q0 11-8 19t-19 7q-70 0-120-50t-50-119q0-12 8-19t19-8t19 8t8 19q0 48 34 82t82 34q11 0 19 8t8 19z m202 106q0-4 0-5q-59-105-176-316t-176-316l-28-50q-5-9-15-9q-7 0-75 39q-9 6-9 16q0 7 25 49q-80 36-147 96t-117 137q-11 17-11 38t11 39q86 131 212 207t277 76q50 0 100-10l31 54q5 9 15 9q3 0 10-3t18-9t18-10t18-10t10-7q9-5 9-15z m21-249q0-78-44-142t-117-92l157 281q4-26 4-47z m250-72q0-19-11-38q-22-36-61-81q-84-96-194-149t-234-53l41 74q119 10 219 76t169 171q-65 100-158 164l35 63q53-36 102-86t81-102q11-19 11-39z" horiz-adv-x="1000" />
<glyph glyph-name="tag" unicode="&#xe834;" d="m250 600q0 30-21 51t-50 20t-51-20t-21-51t21-50t51-21t50 21t21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21q-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z" horiz-adv-x="857.1" />
<glyph glyph-name="tags" unicode="&#xe835;" d="m250 600q0 30-21 51t-50 20t-51-20t-21-51t21-50t51-21t50 21t21 50z m595-321q0-30-20-51l-274-274q-22-21-51-21q-30 0-50 21l-399 399q-21 21-36 57t-15 65v232q0 29 21 50t50 22h233q29 0 65-15t57-36l399-399q20-21 20-50z m215 0q0-30-21-51l-274-274q-22-21-51-21q-20 0-33 8t-29 25l262 262q21 21 21 51q0 29-21 50l-399 399q-21 21-57 36t-65 15h125q29 0 65-15t57-36l399-399q21-21 21-50z" horiz-adv-x="1071.4" />
<glyph glyph-name="bookmark" unicode="&#xe836;" d="m650 779q12 0 24-5q19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4q-27 0-47 18l-246 236l-246-236q-20-19-46-19q-13 0-25 5q-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="bookmark-empty" unicode="&#xe837;" d="m643 707h-572v-693l237 227l49 47l50-47l236-227v693z m7 72q12 0 24-5q19-8 29-23t11-35v-719q0-19-11-35t-29-23q-10-4-24-4q-27 0-47 18l-246 236l-246-236q-20-19-46-19q-13 0-25 5q-18 7-29 23t-11 35v719q0 19 11 35t29 23q12 5 25 5h585z" horiz-adv-x="714.3" />
<glyph glyph-name="flag" unicode="&#xe838;" d="m179 707q0-40-36-61v-707q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v707q-35 21-35 61q0 30 21 51t50 21t51-21t21-51z m821-36v-425q0-14-7-22t-22-15q-120-65-206-65q-34 0-69 12t-60 27t-65 27t-79 12q-107 0-259-81q-10-5-19-5q-14 0-25 10t-10 25v414q0 18 17 31q12 8 44 24q132 67 235 67q60 0 112-16t122-49q21-11 49-11q30 0 65 12t62 26t49 26t30 12q15 0 25-10t11-26z" horiz-adv-x="1000" />
<glyph glyph-name="flag-empty" unicode="&#xe93d;" d="m929 267v344q-95-51-171-51q-46 0-81 18q-56 27-103 42t-99 16q-97 0-225-71v-334q137 63 242 63q30 0 57-5t55-14t43-17t46-22l16-8q24-13 56-13q67 0 164 52z m-750 440q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36q0 30 21 51t50 20t51-20t21-51z m821-36v-425q0-22-20-32q-5-3-9-5q-122-65-206-65q-49 0-88 20l-16 7q-35 19-55 27t-51 16t-63 8q-57 0-132-24t-127-57q-9-5-19-5q-9 0-18 4q-17 11-17 31v414q0 20 17 31q19 12 44 24t63 29t85 28t87 10q62 0 117-17t116-48q21-11 50-11q68 0 173 63q12 6 17 9q17 9 35-1q17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="flag-checkered" unicode="&#xe93e;" d="m464 292v107q-101-9-214-65v-103q114 53 214 61z m0 233v110q-96-4-214-70v-106q120 62 214 66z m465-258v103q-132-65-215-40v125q-11 3-21 8q-3 2-19 10t-19 9t-18 9t-19 8t-18 8t-20 7t-20 4t-22 4t-22 3t-24 1q-13 0-28-2v-124h11q57 0 107-16t111-46q10-5 21-8v-105q24-9 51-9q67 0 164 51z m0 238v106q-95-51-171-51q-25 0-44 4v-109q83-24 215 50z m-750 202q0-19-10-36t-26-25v-707q0-8-5-13t-13-5h-36q-7 0-13 5t-5 13v707q-16 9-25 25t-10 36q0 30 21 51t50 20t51-20t21-51z m821-36v-425q0-22-20-32q-5-3-9-5q-122-65-206-65q-49 0-88 20l-16 7q-35 19-55 27t-51 16t-63 8q-57 0-132-24t-127-57q-9-5-19-5q-9 0-18 4q-17 11-17 31v414q0 20 17 31q19 12 44 24t63 29t85 28t87 10q62 0 117-17t116-48q21-11 50-11q68 0 173 63q12 6 17 9q17 9 35-1q17-11 17-31z" horiz-adv-x="1000" />
<glyph glyph-name="thumbs-up" unicode="&#xe93f;" d="m143 100q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m643 321q0 29-22 50t-50 22h-196q0 32 27 89t26 89q0 55-17 81t-72 27q-14-15-21-48t-17-70t-33-61q-13-13-43-51q-2-3-13-17t-18-22t-19-24t-22-25t-22-19t-22-16t-20-5h-18v-357h18q7 0 18-1t18-4t21-6t20-7t20-7t16-5q118-41 191-41h67q107 0 107 93q0 15-2 31q16 9 26 30t10 41t-10 38q29 28 29 67q0 13-5 31t-14 26q18 1 30 26t12 45z m71 1q0-50-27-91q5-18 5-38q0-43-21-81q1-12 1-24q0-56-33-99q0-78-48-123t-126-45h-72q-54 0-106 13t-121 36q-65 23-77 23h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h153q20 13 77 86q32 42 60 72q13 14 19 47t17 71t35 60q22 21 50 21q47 0 84-18t57-57t20-104q0-51-27-107h98q58 0 101-42t42-100z" horiz-adv-x="857.1" />
<glyph glyph-name="thumbs-down" unicode="&#xe940;" d="m143 600q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m643-321q0 19-12 45t-30 26q8 10 14 27t5 30q0 39-29 67q10 18 10 38t-10 41t-26 30q2 16 2 31q0 47-27 70t-76 23h-71q-73 0-191-41q-3-1-16-6t-20-7t-20-6t-21-6t-18-4t-18-1h-18v-358h18q9 0 20-5t22-15t22-19t22-25t19-24t18-23t13-16q30-38 43-51q23-24 33-61t17-70t21-48q54 0 72 27t17 81q0 32-26 89t-27 89h196q28 0 50 22t22 49z m71-1q0-57-42-100t-101-42h-98q27-55 27-107q0-66-20-104q-19-39-57-57t-84-18q-28 0-50 21q-19 18-30 45t-14 51t-10 47t-17 36q-27 28-60 71q-57 73-77 86h-153q-29 0-50 21t-21 51v357q0 29 21 50t50 21h161q12 0 77 22q72 25 125 37t111 13h63q78 0 126-45t48-120v-3q33-43 33-99q0-13-1-24q21-38 21-81q0-20-5-38q27-41 27-91z" horiz-adv-x="857.1" />
<glyph glyph-name="thumbs-up-alt" unicode="&#xe839;" d="m143 100q0 15-11 25t-25 11q-15 0-25-11t-11-25q0-15 11-25t25-11q15 0 25 11t11 25z m89 286v-357q0-15-10-25t-26-11h-160q-15 0-25 11t-11 25v357q0 14 11 25t25 10h160q15 0 26-10t10-25z m661 0q0-48-31-83q9-25 9-43q1-42-24-76q9-32 0-66q-9-31-31-52q5-63-27-101q-36-43-110-44h-72q-37 0-80 9t-68 16t-67 22q-69 24-88 25q-15 0-26 11t-10 25v357q0 14 10 25t24 11q13 1 42 33t57 67q38 49 56 67q10 10 17 27t10 27t8 34q4 22 7 34t11 29t18 28q11 11 26 11q25 0 46-6t33-15t22-22t14-26t7-27t2-26t1-21q0-21-6-43t-10-33t-16-31q-1-4-5-10t-6-13t-5-13h155q43 0 75-32t32-75z" horiz-adv-x="928.6" />
<glyph glyph-name="thumbs-down-alt" unicode="&#xe83a;" d="m143 529q0-15-11-26t-25-10q-15 0-25 10t-11 26q0 15 11 25t25 10q15 0 25-10t11-25z m89-286v357q0 15-10 25t-26 11h-160q-15 0-25-11t-11-25v-357q0-15 11-25t25-11h160q15 0 26 11t10 25z m630 83q31-34 31-83q-1-44-32-75t-75-32h-155q2-8 5-14t6-12t5-10q10-21 15-32t11-32t6-43q0-14-1-22t-2-25t-7-28t-14-25t-22-23t-33-14t-46-6q-15 0-26 11q-11 11-18 27t-11 29t-7 35q-5 23-8 33t-10 27t-17 27q-18 19-56 67q-28 36-57 68t-42 33q-14 1-24 11t-10 24v358q0 15 10 25t26 11q19 0 88 24q43 15 67 22t68 16t80 9h72q74-1 110-43q32-39 27-101q22-21 31-53q9-34 0-65q25-34 24-77q0-18-9-42z" horiz-adv-x="928.6" />
<glyph glyph-name="download" unicode="&#xe83b;" d="m714 100q0 15-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m143 0q0 15-10 25t-26 11t-25-11t-10-25t10-25t25-11t26 11t10 25z m72 125v-179q0-22-16-37t-38-16h-821q-23 0-38 16t-16 37v179q0 22 16 38t38 16h259l75-76q33-32 76-32t76 32l76 76h259q22 0 38-16t16-38z m-182 318q10-23-8-40l-250-250q-10-10-25-10t-25 10l-250 250q-17 17-8 40q10 21 33 21h143v250q0 15 11 25t25 11h143q14 0 25-11t10-25v-250h143q24 0 33-21z" horiz-adv-x="928.6" />
<glyph glyph-name="upload" unicode="&#xe83c;" d="m714 29q0 14-10 25t-25 10t-26-10t-10-25t10-26t26-10t25 10t10 26z m143 0q0 14-10 25t-26 10t-25-10t-10-25t10-26t25-10t26 10t10 26z m72 125v-179q0-22-16-38t-38-16h-821q-23 0-38 16t-16 38v179q0 22 16 38t38 15h238q12-31 39-51t62-20h143q34 0 61 20t40 51h238q22 0 38-15t16-38z m-182 361q-9-22-33-22h-143v-250q0-15-10-25t-25-11h-143q-15 0-25 11t-11 25v250h-143q-23 0-33 22q-9 22 8 39l250 250q10 10 25 10t25-10l250-250q18-17 8-39z" horiz-adv-x="928.6" />
<glyph glyph-name="download-cloud" unicode="&#xe83d;" d="m714 332q0 8-5 13t-13 5h-125v196q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-196h-125q-8 0-13-5t-5-13q0-8 5-13l196-196q5-5 13-5t13 5l196 196q5 6 5 13z m357-125q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 72 39 134t105 92q-1 17-1 24q0 118 84 202t202 84q87 0 159-49t105-129q40 35 93 35q59 0 101-42t42-101q0-43-23-77q72-17 119-76t46-133z" horiz-adv-x="1071.4" />
<glyph glyph-name="upload-cloud" unicode="&#xe83e;" d="m714 368q0 8-5 13l-196 196q-5 5-13 5t-13-5l-196-196q-5-6-5-13q0-8 5-13t13-5h125v-196q0-8 5-13t12-5h108q7 0 12 5t5 13v196h125q8 0 13 5t5 13z m357-161q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 72 39 134t105 92q-1 17-1 24q0 118 84 202t202 84q87 0 159-49t105-129q40 35 93 35q59 0 101-42t42-101q0-43-23-77q72-17 119-76t46-133z" horiz-adv-x="1071.4" />
<glyph glyph-name="reply" unicode="&#xe845;" d="m1000 225q0-93-71-252q-2-4-6-13t-7-17t-8-12q-6-10-15-10q-9 0-13 6t-5 14q0 5 1 15t2 13q3 38 3 69q0 56-10 101t-27 77t-45 56t-59 39t-74 24t-86 12t-98 3h-125v-143q0-14-10-25t-26-11t-25 11l-285 286q-11 10-11 25t11 25l285 286q11 10 25 10t26-10t10-25v-143h125q398 0 488-225q30-75 30-186z" horiz-adv-x="1000" />
<glyph glyph-name="reply-all" unicode="&#xe840;" d="m357 246v-39q0-23-22-33q-7-3-14-3q-15 0-25 11l-285 286q-11 10-11 25t11 25l285 286q17 17 39 7q22-9 22-32v-39l-221-222q-11-11-11-25t11-25z m643-21q0-32-9-74t-22-77t-27-70t-22-51l-12-22q-4-10-15-10q-3 0-5 1q-14 4-13 19q24 223-59 315q-36 40-95 62t-150 29v-140q0-23-21-33q-8-3-14-3q-15 0-25 11l-286 286q-11 10-11 25t11 25l286 286q16 17 39 7q21-9 21-32v-147q230-15 335-123q94-97 94-284z" horiz-adv-x="1000" />
<glyph glyph-name="forward" unicode="&#xe856;" d="m1000 493q0-15-11-25l-285-286q-11-11-25-11t-26 11t-10 25v143h-125q-55 0-98-3t-86-12t-74-24t-59-39t-45-56t-27-77t-10-101q0-31 3-69q0-4 2-13t1-15q0-8-5-14t-13-6q-9 0-15 10q-4 5-8 12t-7 17t-6 13q-71 159-71 252q0 111 30 186q90 225 488 225h125v143q0 14 10 25t26 10t25-10l285-286q11-11 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="quote-left" unicode="&#xe842;" d="m429 314v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76v393q0 58 23 111t61 91t91 61t111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 16-38t37-16h125q45 0 76-31t32-76z m500 0v-214q0-45-32-76t-76-31h-214q-44 0-76 31t-31 76v393q0 58 23 111t61 91t91 61t111 23h35q15 0 26-11t10-25v-72q0-14-10-25t-26-10h-35q-59 0-101-42t-42-101v-18q0-22 15-38t38-16h125q45 0 76-31t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="quote-right" unicode="&#xe843;" d="m429 671v-392q0-58-23-111t-61-91t-91-62t-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76v214q0 45 31 76t76 32h214q45 0 76-32t32-76z m500 0v-392q0-58-23-111t-61-91t-91-62t-111-22h-36q-14 0-25 10t-11 26v71q0 15 11 25t25 11h36q59 0 101 42t42 101v17q0 23-16 38t-38 16h-125q-44 0-76 31t-31 76v214q0 45 31 76t76 32h214q45 0 76-32t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="export-alt" unicode="&#xe846;" d="m561 236l196 196q11 11 11 25t-11 25l-196 197q-17 17-39 7q-22-9-22-32v-90q-66 0-121-11t-90-28t-64-44t-42-53t-25-61t-12-62t-3-62q0-101 93-226q6-6 14-6q4 0 7 1q13 5 11 19q-25 197 34 264q26 29 73 42t125 13v-89q0-24 22-33q7-3 14-3q14 0 25 11z m296 382v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil" unicode="&#xe847;" d="m203-7l50 51l-131 131l-51-51v-60h72v-71h60z m291 518q0 12-12 12q-5 0-9-4l-303-302q-4-4-4-10q0-12 13-12q5 0 9 4l303 302q3 4 3 10z m-30 107l232-232l-464-465h-232v233z m381-54q0-29-20-50l-93-93l-232 233l93 92q20 21 50 21q29 0 51-21l131-131q20-22 20-51z" horiz-adv-x="857.1" />
<glyph glyph-name="pencil-squared" unicode="&#xe848;" d="m225 232l85-85l-29-29h-31v53h-54v32z m231 217q8-7-1-16l-163-163q-9-9-16-1q-8 7 1 16l163 163q9 9 16 1z m-152-385l303 304l-161 161l-303-304v-161h161z m339 340l51 51q16 16 16 38t-16 38l-85 85q-15 15-38 15t-38-15l-51-52z m214 214v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="edit" unicode="&#xe941;" d="m496 189l64 65l-85 85l-64-65v-31h53v-54h32z m245 402q-9 9-18 0l-196-196q-9-9 0-18t18 0l196 196q9 9 0 18z m45-331v-106q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14q9-4 10-13q2-10-5-16l-27-28q-8-8-18-4q-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v70q0 7 5 12l36 36q8 8 20 4t11-16z m-54 411l161-160l-375-375h-161v160z m248-73l-51-52l-161 161l51 51q16 16 38 16t38-16l85-84q16-16 16-38t-16-38z" horiz-adv-x="1000" />
<glyph glyph-name="print" unicode="&#xe942;" d="m214-7h500v143h-500v-143z m0 357h500v214h-89q-22 0-38 16t-16 38v89h-357v-357z m643-36q0 15-10 25t-26 11t-25-11t-10-25t10-25t25-10t26 10t10 25z m72 0v-232q0-7-6-12t-12-6h-125v-89q0-22-16-38t-38-16h-536q-22 0-37 16t-16 38v89h-125q-7 0-13 6t-5 12v232q0 44 32 76t75 31h36v304q0 22 16 38t37 16h375q23 0 50-12t42-26l85-85q15-16 27-43t11-49v-143h35q45 0 76-31t32-76z" horiz-adv-x="928.6" />
<glyph glyph-name="retweet" unicode="&#xe943;" d="m714 11q0-8-5-13t-13-5h-535q-5 0-8 1t-5 4t-3 4t-2 7t0 6v335h-107q-15 0-25 11t-11 25q0 13 8 23l179 214q11 12 27 12t28-12l178-214q9-10 9-23q0-15-11-25t-25-11h-107v-214h321q9 0 14-6l89-108q4-6 4-11z m357 232q0-14-8-23l-179-214q-11-13-27-13t-27 13l-179 214q-8 9-8 23q0 14 10 25t26 11h107v214h-322q-9 0-14 7l-89 107q-4 5-4 11q0 7 5 12t13 6h536q4 0 7-1t5-4t3-5t2-6t1-7v-334h107q14 0 25-11t10-25z" horiz-adv-x="1071.4" />
<glyph glyph-name="keyboard" unicode="&#xe944;" d="m214 198v-53q0-9-9-9h-53q-9 0-9 9v53q0 9 9 9h53q9 0 9-9z m72 143v-53q0-9-9-9h-125q-9 0-9 9v53q0 9 9 9h125q9 0 9-9z m-72 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m572-286v-53q0-9-9-9h-482q-9 0-9 9v53q0 9 9 9h482q9 0 9-9z m-357 143v-53q0-9-9-9h-54q-9 0-9 9v53q0 9 9 9h54q9 0 9-9z m-72 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m214-143v-53q0-9-8-9h-54q-9 0-9 9v53q0 9 9 9h54q8 0 8-9z m-71 143v-54q0-9-9-9h-53q-9 0-9 9v54q0 9 9 9h53q9 0 9-9z m214-143v-53q0-9-9-9h-53q-9 0-9 9v53q0 9 9 9h53q9 0 9-9z m215-143v-53q0-9-9-9h-54q-9 0-9 9v53q0 9 9 9h54q9 0 9-9z m-286 286v-54q0-9-9-9h-54q-9 0-9 9v54q0 9 9 9h54q9 0 9-9z m143 0v-54q0-9-9-9h-54q-9 0-9 9v54q0 9 9 9h54q9 0 9-9z m143 0v-196q0-9-9-9h-125q-9 0-9 9v53q0 9 9 9h62v134q0 9 9 9h54q9 0 9-9z m71-420v500h-929v-500h929z m71 500v-500q0-29-21-50t-50-21h-929q-29 0-50 21t-21 50v500q0 30 21 51t50 21h929q30 0 50-21t21-51z" horiz-adv-x="1071.4" />
<glyph glyph-name="gamepad" unicode="&#xe849;" d="m464 243v71q0 8-5 13t-13 5h-107v107q0 8-5 13t-13 5h-71q-8 0-13-5t-5-13v-107h-107q-8 0-13-5t-5-13v-71q0-8 5-13t13-5h107v-107q0-8 5-13t13-5h71q8 0 13 5t5 13v107h107q8 0 13 5t5 13z m322-36q0 30-21 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t21 50z m143 143q0 30-21 51t-51 20t-50-20t-21-51t21-50t50-21t51 21t21 50z m142-71q0-119-83-202t-202-84q-107 0-189 71h-123q-81-71-188-71q-119 0-202 84t-84 202t84 202t202 83h500q118 0 202-83t83-202z" horiz-adv-x="1071.4" />
<glyph glyph-name="comment" unicode="&#xe84a;" d="m1000 350q0-97-67-179t-182-130t-251-48q-39 0-81 4q-110-97-257-135q-27-8-63-12q-10-1-17 5t-10 16v1q-2 2 0 6t1 6t2 5l4 5t4 5t4 5q4 5 17 19t20 22t17 22t18 28t15 33t15 42q-88 50-138 123t-51 157q0 73 40 139t106 114t160 76t194 28q136 0 251-48t182-130t67-179z" horiz-adv-x="1000" />
<glyph glyph-name="chat" unicode="&#xe84b;" d="m786 421q0-77-53-143t-143-104t-197-38q-48 0-98 9q-70-49-155-72q-21-5-48-9h-2q-6 0-12 5t-6 12q-1 1-1 3t1 4t1 3l1 3t2 3t2 3t3 3t2 2q3 3 13 14t15 16t12 17t14 21t11 25q-69 40-108 98t-40 125q0 78 53 144t143 104t197 38t197-38t143-104t53-144z m214-142q0-67-40-126t-108-98q5-14 11-25t14-21t13-16t14-17t13-14q0 0 2-2t3-3t2-3t2-3l1-3t1-3t1-4t-1-3q-2-8-7-13t-13-4q-27 4-48 9q-85 23-155 72q-50-9-98-9q-151 0-263 74q32-3 49-3q90 0 172 25t148 72q69 52 107 119t37 141q0 43-13 85q72-39 114-99t42-128z" horiz-adv-x="1000" />
<glyph glyph-name="comment-empty" unicode="&#xe84c;" d="m500 636q-114 0-213-39t-157-105t-59-142q0-62 40-119t113-98l48-28l-15-54q-13-50-39-95q85 35 154 95l24 21l31-3q39-5 73-5q114 0 213 39t157 105t59 142t-59 142t-157 105t-213 39z m500-286q0-97-67-179t-182-130t-251-48q-39 0-81 4q-110-97-257-135q-27-7-63-12h-3q-8 0-15 6t-9 15v1q-2 2 0 7t1 5t2 5l4 5t4 5t4 5q4 5 17 19t20 22t17 22t18 28t15 33t15 42q-88 50-138 123t-51 157q0 97 67 179t182 130t251 48t251-48t182-130t67-179z" horiz-adv-x="1000" />
<glyph glyph-name="chat-empty" unicode="&#xe84d;" d="m393 636q-85 0-160-29t-118-79t-44-107q0-45 30-88t83-73l54-32l-19-46q19 11 34 21l25 18l30-6q43-8 85-8q85 0 159 29t118 79t44 106t-44 107t-118 79t-159 29z m0 71q106 0 197-38t143-104t53-144t-53-143t-143-104t-197-38q-48 0-98 9q-70-49-155-72q-21-5-48-9h-2q-6 0-12 5t-6 12q-1 1-1 3t1 4t1 3l1 3t2 3t2 3t3 3t2 2q3 3 13 14t15 16t12 17t14 21t11 25q-69 40-108 98t-40 125q0 78 53 144t143 104t197 38z m459-652q5-14 11-25t14-21t13-16t14-17t13-14q0 0 2-2t3-3t2-3t2-3l1-3t1-3t1-4t-1-3q-2-8-7-13t-13-4q-27 4-48 9q-85 23-155 72q-50-9-98-9q-151 0-263 74q32-3 49-3q90 0 172 25t148 72q69 52 107 119t37 141q0 43-13 85q72-39 114-99t42-128q0-67-40-126t-108-98z" horiz-adv-x="1000" />
<glyph glyph-name="bell" unicode="&#xe84e;" d="m473-96q0 8-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m-371 160h724q-91 101-137 230t-46 270q0 143-179 143t-178-143q0-141-46-270t-138-230z m827 0q0-29-22-50t-50-21h-250q0-59-42-101t-101-42t-101 42t-42 101h-250q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20q0 23 15 38t38 16t38-16t16-38q0-10-5-20q94-11 148-66t53-146q0-146 54-278t161-222z" horiz-adv-x="928.6" />
<glyph glyph-name="bell-alt" unicode="&#xe84f;" d="m473-96q0 8-9 8q-33 0-56 24t-24 57q0 9-9 9t-9-9q0-41 29-70t69-28q9 0 9 9z m456 160q0-29-22-50t-50-21h-250q0-59-42-101t-101-42t-101 42t-42 101h-250q-29 0-50 21t-21 50q106 90 160 222t54 278q0 92 54 146t147 66q-4 10-4 20q0 23 15 38t38 16t38-16t16-38q0-10-5-20q94-11 148-66t53-146q0-146 54-278t161-222z" horiz-adv-x="928.6" />
<glyph glyph-name="attention-alt" unicode="&#xe850;" d="m286 154v-125q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v125q0 14 11 25t25 10h143q15 0 25-10t11-25z m16 589l-15-429q-1-14-12-25t-25-10h-143q-14 0-25 10t-12 25l-15 429q-1 14 9 25t25 11h179q14 0 25-11t9-25z" horiz-adv-x="357.1" />
<glyph glyph-name="attention" unicode="&#xe851;" d="m571 83v106q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-106q0-8 5-13t12-6h108q7 0 12 6t5 13z m-1 208l10 257q0 6-5 10q-7 6-14 6h-122q-7 0-14-6q-5-4-5-12l9-255q0-5 6-9t13-3h103q8 0 13 3t6 9z m-7 522l428-786q20-35-1-70q-10-17-26-26t-35-10h-858q-18 0-35 10t-26 26q-21 35-1 70l429 786q9 17 26 27t36 10t36-10t27-27z" horiz-adv-x="1000" />
<glyph glyph-name="attention-circled" unicode="&#xe852;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m71-696v106q0 8-5 13t-12 5h-107q-8 0-13-5t-6-13v-106q0-8 6-13t13-6h107q7 0 12 6t5 13z m-1 192l10 346q0 7-6 10q-5 5-13 5h-123q-8 0-13-5q-6-3-6-10l10-346q0-6 5-10t14-4h103q8 0 13 4t6 10z" horiz-adv-x="857.1" />
<glyph glyph-name="location" unicode="&#xe853;" d="m429 493q0 59-42 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t42 101z m142 0q0-61-18-100l-203-432q-9-18-27-29t-37-11t-38 11t-26 29l-204 432q-18 39-18 100q0 118 84 202t202 84t202-84t83-202z" horiz-adv-x="571.4" />
<glyph glyph-name="direction" unicode="&#xe854;" d="m782 655l-357-714q-10-20-32-20q-3 0-8 1q-13 3-20 13t-8 22v322h-321q-13 0-22 7t-13 20t2 23t17 17l714 357q7 4 16 4q15 0 25-10q8-8 10-20t-3-22z" horiz-adv-x="785.7" />
<glyph glyph-name="compass" unicode="&#xe855;" d="m357 243l143 71l-143 72v-143z m214 330v-303l-285-143v303z m161-223q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="doc" unicode="&#xe857;" d="m71-7h572v428h-232q-23 0-38 16t-16 38v232h-286v-714z m358 500h209q-5 16-12 23l-175 174q-6 7-22 13v-210z m285-18v-500q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h357q22 0 49-12t42-26l174-175q16-15 27-42t11-49z" horiz-adv-x="714.3" />
<glyph glyph-name="docs" unicode="&#xe858;" d="m946 636q23 0 38-16t16-38v-678q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v160h-303q-23 0-38 16t-16 38v375q0 22 11 49t27 42l228 228q15 16 42 27t49 11h232q23 0 38-16t16-38v-183q38 23 71 23h232z m-303-119l-167-167h167v167z m-357 214l-167-167h167v167z m109-361l176 176v233h-214v-233q0-22-15-38t-38-15h-233v-357h286v143q0 22 11 49t27 42z m534-449v643h-215v-232q0-22-15-38t-38-15h-232v-358h500z" horiz-adv-x="1000" />
<glyph glyph-name="doc-text" unicode="&#xe945;" d="m571 189v-35q0-8-5-13t-12-5h-393q-8 0-13 5t-5 13v35q0 8 5 13t13 5h393q7 0 12-5t5-13z m0 143v-36q0-7-5-12t-12-5h-393q-8 0-13 5t-5 12v36q0 8 5 13t13 5h393q7 0 12-5t5-13z m-500-339h572v428h-232q-23 0-38 16t-16 38v232h-286v-714z m358 500h209q-5 16-12 23l-175 174q-6 7-22 13v-210z m285-18v-500q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h357q22 0 49-12t42-26l174-175q16-15 27-42t11-49z" horiz-adv-x="714.3" />
<glyph glyph-name="file" unicode="&#xe946;" d="m714 421v-446q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h303v-304q0-22 16-38t38-16h303z m-1 72h-284v284q45-8 73-36l174-175q28-27 37-73z" horiz-adv-x="714.3" />
<glyph glyph-name="doc-text-inv" unicode="&#xe947;" d="m571 82v36q0 8-5 13t-12 5h-393q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h393q7 0 12 5t5 13z m0 143v36q0 8-5 13t-12 5h-393q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h393q7 0 12 5t5 13z m143 196v-446q0-22-15-38t-38-16h-607q-23 0-38 16t-16 38v750q0 22 16 38t38 16h303v-304q0-22 16-38t38-16h303z m-1 72h-284v284q45-8 73-36l174-175q28-27 37-73z" horiz-adv-x="714.3" />
<glyph glyph-name="folder-empty" unicode="&#xe85a;" d="m857 118v393q0 22-15 38t-38 15h-393q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-536q0-22 16-38t38-16h679q22 0 38 16t15 38z m72 393v-393q0-51-37-88t-88-37h-679q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h375q51 0 88-37t37-88z" horiz-adv-x="928.6" />
<glyph glyph-name="folder-open-empty" unicode="&#xe85b;" d="m994 330q0 20-30 20h-607q-22 0-48-12t-39-29l-164-203q-11-13-11-22q0-20 30-20h607q22 0 48 13t40 29l164 203q10 12 10 21z m-637 91h429v90q0 22-16 38t-38 15h-321q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-476l143 175q25 30 65 49t78 19z m708-91q0-34-25-66l-165-203q-24-30-65-49t-78-19h-607q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q51 0 88-37t37-88v-90h107q30 0 56-13t37-40q8-17 8-38z" horiz-adv-x="1071.4" />
<glyph glyph-name="box" unicode="&#xe85c;" d="m607 386q0 14-10 25t-26 10h-142q-15 0-26-10t-10-25t10-25t26-11h142q15 0 26 11t10 25z m322 107v-536q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v536q0 14 11 25t25 11h786q14 0 25-11t11-25z m35 250v-143q0-15-10-25t-25-11h-858q-14 0-25 11t-10 25v143q0 14 10 25t25 11h858q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="rss" unicode="&#xe85d;" d="m214 100q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m286-69q1-15-9-26q-11-12-27-12h-75q-14 0-24 9t-11 23q-12 128-103 219t-219 103q-14 1-23 11t-9 24v75q0 16 12 26q9 10 24 10h3q89-7 170-45t145-101q63-63 101-145t45-171z m286-1q1-15-10-26q-10-11-26-11h-80q-14 0-25 10t-11 23q-6 120-56 228t-129 188t-188 129t-227 57q-14 0-24 11t-10 24v80q0 15 11 26q10 10 25 10h1q147-8 280-67t238-164q104-104 164-238t67-280z" horiz-adv-x="785.7" />
<glyph glyph-name="rss-squared" unicode="&#xe85e;" d="m286 136q0 29-21 50t-51 21t-50-21t-21-50t21-51t50-21t51 21t21 51z m196-53q-8 130-99 221t-221 99q-8 1-14-5t-5-13v-71q0-8 5-13t12-5q86-6 147-68t67-147q1-7 6-12t12-5h72q7 0 13 6t5 13z m214 0q-3 86-31 166t-78 145t-115 114t-145 78t-166 31q-8 1-13-5q-5-5-5-13v-71q0-7 5-12t12-6q114-4 211-62t156-155t62-211q0-8 5-13t13-5h71q7 0 13 6q6 5 5 13z m161 535v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="phone" unicode="&#xe85f;" d="m786 158q0-15-6-39t-12-38q-11-28-68-60q-52-28-103-28q-16 0-30 2t-32 7t-26 8t-31 11t-28 10q-54 20-97 47q-72 44-148 120t-120 148q-27 43-46 97q-2 5-10 28t-12 31t-8 26t-7 32t-2 29q0 52 29 104q31 56 59 68q14 6 38 12t39 6q8 0 12-2q10-3 30-43q6-10 16-30t20-35t17-30q2-2 10-14t12-20t4-16q0-11-16-28t-35-30t-34-30t-16-25q0-5 3-13t4-11t8-14t7-10q42-77 97-132t131-97q1 0 10-6t14-8t11-5t13-2q10 0 25 15t30 35t31 35t28 16q7 0 15-4t20-12t14-10q14-8 30-17t35-20t31-17q39-19 42-29q2-4 2-12z" horiz-adv-x="785.7" />
<glyph glyph-name="phone-squared" unicode="&#xe860;" d="m714 184q0 6-1 9q-1 5-21 17t-50 27l-29 16q-3 2-11 8t-14 8t-12 3q-10 0-26-18t-32-37t-24-18q-4 0-9 2t-9 3t-9 6t-8 4q-56 31-95 71t-71 95q-1 2-5 8t-5 9t-4 9t-2 9q0 8 12 19t25 21t25 23t11 20q0 5-2 12t-9 14t-7 10q-2 4-8 16t-14 25t-15 27t-14 23t-9 10t-9 1q-27 0-56-13q-26-11-45-52t-19-73q0-9 1-19t3-17t5-19t6-16t7-18t6-17q33-92 121-179t178-121q4-1 17-6t19-7t16-5t18-5t17-3t19-2q32 0 73 19t53 45q12 30 12 56z m143 434v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="menu" unicode="&#xe861;" d="m857 100v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 25t25 11h785q15 0 26-11t10-25z m0 286v-72q0-14-10-25t-26-10h-785q-15 0-25 10t-11 25v72q0 14 11 25t25 10h785q15 0 26-10t10-25z m0 285v-71q0-15-10-25t-26-11h-785q-15 0-25 11t-11 25v71q0 15 11 26t25 10h785q15 0 26-10t10-26z" horiz-adv-x="857.1" />
<glyph glyph-name="cog" unicode="&#xe862;" d="m571 350q0 59-41 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t41 101z m286 61v-124q0-7-4-13t-11-7l-104-16q-10-30-21-51q19-27 59-77q6-6 6-13t-5-13q-15-21-55-61t-53-39q-7 0-14 5l-77 60q-25-13-51-21q-9-76-16-104q-4-16-20-16h-124q-8 0-14 5t-6 12l-16 103q-27 9-50 21l-79-60q-6-5-14-5q-8 0-14 6q-70 64-92 94q-4 5-4 13q0 6 5 12q8 12 28 37t30 40q-15 28-23 55l-102 15q-7 1-11 7t-5 13v124q0 7 5 13t10 7l104 16q8 25 22 51q-23 32-60 77q-6 7-6 14q0 5 5 12q15 20 55 60t53 40q7 0 15-5l77-60q24 13 50 21q9 76 17 104q3 15 20 15h124q7 0 13-4t7-12l15-103q28-9 50-21l80 60q5 5 13 5q7 0 14-5q72-67 92-95q4-5 4-13q0-6-4-12q-9-12-29-38t-30-39q14-28 23-55l102-15q7-1 12-7t4-13z" horiz-adv-x="857.1" />
<glyph glyph-name="cog-alt" unicode="&#xe863;" d="m500 350q0 59-42 101t-101 42t-101-42t-42-101t42-101t101-42t101 42t42 101z m429-286q0 29-22 51t-50 21t-50-21t-21-51q0-29 21-50t50-21t51 21t21 50z m0 572q0 29-22 50t-50 21t-50-21t-21-50q0-30 21-51t50-21t51 21t21 51z m-215-235v-103q0-6-4-11t-9-6l-86-14q-6-19-18-42q19-27 50-64q4-6 4-11q0-7-4-11q-13-17-46-50t-44-33q-6 0-11 4l-64 50q-21-11-43-17q-6-60-13-87q-4-13-17-13h-104q-6 0-11 4t-5 10l-13 85q-19 6-42 18l-66-50q-4-4-11-4q-6 0-12 4q-80 75-80 90q0 5 4 10q5 8 23 30t26 34q-13 24-20 46l-85 13q-5 1-9 5t-4 11v103q0 6 4 11t9 6l86 14q7 19 18 42q-19 27-50 64q-4 6-4 11q0 7 4 11q12 17 46 50t44 33q6 0 12-4l64-50q19 10 43 18q6 60 13 86q3 13 16 13h104q6 0 11-4t6-10l13-85q19-6 41-17l66 49q5 4 11 4q7 0 12-4q81-75 81-90q0-5-4-10q-7-9-24-30t-25-34q13-27 19-46l85-12q5-2 9-6t4-11z m357-298v-78q0-9-83-17q-6-15-16-29q28-63 28-77q0-2-2-4q-68-40-69-40q-5 0-26 27t-29 37q-11-1-17-1t-17 1q-7-11-29-37t-25-27q-1 0-69 40q-3 2-3 4q0 14 29 77q-10 14-17 29q-83 8-83 17v78q0 9 83 18q7 16 17 29q-29 63-29 77q0 2 3 4q2 1 19 11t33 19t17 9q4 0 25-26t29-38q12 1 17 1t17-1q28 40 51 63l4 1q2 0 69-39q2-2 2-4q0-14-28-77q9-13 16-29q83-9 83-18z m0 572v-78q0-9-83-18q-6-15-16-29q28-63 28-77q0-2-2-4q-68-39-69-39q-5 0-26 26t-29 38q-11-1-17-1t-17 1q-7-12-29-38t-25-26q-1 0-69 39q-3 2-3 4q0 14 29 77q-10 14-17 29q-83 9-83 18v78q0 9 83 17q7 16 17 29q-29 63-29 77q0 2 3 4q2 1 19 11t33 19t17 9q4 0 25-26t29-38q12 2 17 2t17-2q28 40 51 63l4 1q2 0 69-39q2-2 2-4q0-14-28-77q9-13 16-29q83-8 83-17z" horiz-adv-x="1071.4" />
<glyph glyph-name="wrench" unicode="&#xe864;" d="m214 29q0 14-10 25t-25 10t-26-10t-10-25t10-26t26-10t25 10t10 26z m360 234l-381-381q-21-20-50-20q-29 0-51 20l-59 61q-21 20-21 50q0 29 21 51l380 380q22-55 64-97t97-64z m353 243q0-22-12-59q-27-75-92-122t-144-46q-104 0-177 73t-73 177t73 176t177 74q32 0 67-10t60-26q9-6 9-15t-9-16l-163-94v-125l108-60q2 2 44 27t75 45t40 20q8 0 13-5t4-14z" horiz-adv-x="928.6" />
<glyph glyph-name="basket" unicode="&#xe865;" d="m357-7q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m500 0q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m72 607v-286q0-13-9-23t-23-12l-583-68q1-4 3-12t3-15t1-13q0-8-13-35h513q15 0 26-11t10-25t-10-25t-26-11h-571q-14 0-25 11t-11 25q0 8 6 22t17 33t11 21l-98 460h-114q-15 0-25 10t-11 25t11 26t25 10h143q9 0 16-3t11-9t7-14t4-15t3-16t3-14h670q14 0 25-11t11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar" unicode="&#xe866;" d="m71-79h161v161h-161v-161z m197 0h178v161h-178v-161z m-197 197h161v178h-161v-178z m197 0h178v178h-178v-178z m-197 214h161v161h-161v-161z m411-411h179v161h-179v-161z m-214 411h178v161h-178v-161z m428-411h161v161h-161v-161z m-214 197h179v178h-179v-178z m-196 482v161q0 7-6 12t-12 6h-36q-7 0-12-6t-6-12v-161q0-7 6-13t12-5h36q7 0 12 5t6 13z m410-482h161v178h-161v-178z m-214 214h179v161h-179v-161z m214 0h161v161h-161v-161z m18 268v161q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-161q0-7 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="calendar-empty" unicode="&#xe867;" d="m71-79h786v572h-786v-572z m215 679v161q0 8-5 13t-13 5h-36q-8 0-13-5t-5-13v-161q0-8 5-13t13-5h36q8 0 13 5t5 13z m428 0v161q0 8-5 13t-13 5h-35q-8 0-13-5t-5-13v-161q0-8 5-13t13-5h35q8 0 13 5t5 13z m215 36v-715q0-29-22-50t-50-21h-786q-29 0-50 21t-21 50v715q0 29 21 50t50 21h72v54q0 36 26 63t63 26h36q37 0 63-26t26-63v-54h214v54q0 36 27 63t63 26h35q37 0 63-26t27-63v-54h71q29 0 50-21t22-50z" horiz-adv-x="928.6" />
<glyph glyph-name="login" unicode="&#xe868;" d="m661 350q0-14-11-25l-303-304q-11-10-26-10t-25 10t-10 25v161h-250q-15 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 10 25t25 10t26-10l303-304q11-10 11-25z m196 196v-392q0-67-47-114t-114-47h-178q-7 0-13 5t-5 13q0 2-1 11t0 15t2 13t5 11t12 3h178q37 0 63 27t27 63v392q0 37-27 63t-63 27h-174t-6 0t-6 2t-5 3t-4 5t-1 8q0 2-1 11t0 15t2 13t5 11t12 3h178q67 0 114-47t47-114z" horiz-adv-x="857.1" />
<glyph glyph-name="logout" unicode="&#xe949;" d="m357 46q0-2 1-11t0-14t-2-14t-5-11t-12-3h-178q-67 0-114 47t-47 114v392q0 67 47 114t114 47h178q8 0 13-5t5-13q0-2 1-11t0-15t-2-13t-5-11t-12-3h-178q-37 0-63-27t-27-63v-392q0-37 27-63t63-27h174t6 0t7-2t4-3t4-5t1-8z m518 304q0-14-11-25l-303-304q-11-10-25-10t-25 10t-11 25v161h-250q-14 0-25 11t-11 25v214q0 15 11 25t25 11h250v161q0 14 11 25t25 10t25-10l303-304q11-10 11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="mic" unicode="&#xe94a;" d="m643 457v-71q0-124-82-215t-204-104v-74h143q15 0 25-11t11-25t-11-25t-25-11h-357q-15 0-25 11t-11 25t11 25t25 11h143v74q-121 13-204 104t-82 215v71q0 15 11 25t25 11t25-11t10-25v-71q0-104 74-177t176-73t177 73t73 177v71q0 15 11 25t25 11t25-11t11-25z m-143 214v-285q0-74-52-126t-127-53t-126 53t-52 126v285q0 74 52 127t126 52t127-52t52-127z" horiz-adv-x="642.9" />
<glyph glyph-name="mute" unicode="&#xe94b;" d="m151 323l-56-57q-24 58-24 120v71q0 15 11 25t25 11t25-11t11-25v-71q0-30 8-63z m622 336l-202-202v-71q0-74-52-126t-126-53q-31 0-61 11l-54-54q55-28 115-28q103 0 176 73t74 177v71q0 15 10 25t26 11t25-11t10-25v-71q0-124-82-215t-203-104v-74h142q15 0 26-11t10-25t-10-25t-26-11h-357q-14 0-25 11t-10 25t10 25t25 11h143v74q-70 7-131 45l-142-142q-5-6-13-6t-12 6l-46 46q-6 5-6 13t6 12l688 689q6 6 13 6t13-6l46-46q5-5 5-13t-5-12z m-212 73l-347-346v285q0 74 53 127t126 52q57 0 103-33t65-85z" horiz-adv-x="785.7" />
<glyph glyph-name="volume-off" unicode="&#xe94c;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z" horiz-adv-x="428.6" />
<glyph glyph-name="volume-down" unicode="&#xe869;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z m214-304q0-42-24-79t-63-52q-5-3-14-3q-14 0-25 10t-10 26q0 12 6 20t17 14t19 12t16 20t6 32t-6 32t-16 20t-19 12t-17 14t-6 20q0 15 10 26t25 10q9 0 14-3q39-15 63-52t24-79z" horiz-adv-x="642.9" />
<glyph glyph-name="volume-up" unicode="&#xe86a;" d="m429 654v-608q0-14-11-25t-25-10t-25 10l-186 186h-146q-15 0-25 11t-11 25v214q0 15 11 25t25 11h146l186 186q10 10 25 10t25-10t11-25z m214-304q0-42-24-79t-63-52q-5-3-14-3q-14 0-25 10t-10 26q0 12 6 20t17 14t19 12t16 20t6 32t-6 32t-16 20t-19 12t-17 14t-6 20q0 15 10 26t25 10q9 0 14-3q39-15 63-52t24-79z m143 0q0-85-48-158t-125-105q-8-3-14-3q-15 0-26 11t-10 25q0 22 21 33q32 16 43 25q41 30 64 75t23 97t-23 97t-64 75q-11 9-43 25q-21 11-21 33q0 14 10 25t25 11q7 0 15-3q78-33 125-105t48-158z m143 0q0-128-71-236t-189-158q-7-3-14-3q-15 0-26 11t-10 25q0 20 22 33q4 2 12 6t13 6q25 14 45 28q69 51 108 127t38 161t-38 161t-108 127q-20 14-45 28q-4 3-13 6t-12 6q-22 13-22 33q0 14 10 25t26 11q7 0 14-3q118-51 189-158t71-236z" horiz-adv-x="928.6" />
<glyph glyph-name="headphones" unicode="&#xe86b;" d="m929 356q0-93-34-176l-11-27l-103-18q-13-47-51-77t-87-29v-18q0-8-5-13t-13-5h-36q-8 0-13 5t-5 13v321q0 8 5 13t13 5h36q8 0 13-5t5-13v-18q39 0 72-20t52-53l38 7q16 53 16 108q0 82-49 155t-132 117t-176 43t-176-43t-132-117t-49-156q0-54 16-107l38-7q19 34 52 53t73 20v18q0 8 5 13t13 5h35q8 0 13-5t5-13v-321q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v18q-49 0-88 29t-50 77l-103 18l-11 27q-34 83-34 175q0 85 37 163t100 135t149 91t178 34t179-34t148-91t100-135t38-163z" horiz-adv-x="928.6" />
<glyph glyph-name="clock" unicode="&#xe86c;" d="m500 546v-250q0-7-5-12t-13-5h-178q-8 0-13 5t-5 12v36q0 8 5 13t13 5h125v196q0 8 5 13t12 5h36q8 0 13-5t5-13z m232-196q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="lightbulb" unicode="&#xe86d;" d="m411 529q0-8-6-13t-12-5t-13 5t-5 13q0 25-30 39t-59 14q-8 0-13 5t-5 13t5 13t13 5q28 0 55-9t49-30t21-50z m89 0q0 40-19 74t-50 57t-69 35t-76 12t-76-12t-69-35t-50-57t-20-74q0-57 38-101q6-6 17-18t17-19q72-85 79-166h127q8 81 79 166q6 6 17 19t17 18q38 44 38 101z m71 0q0-87-57-150q-25-27-42-49t-33-53t-19-60q26-15 26-46q0-20-14-35q14-15 14-36q0-29-25-45q8-13 8-26q0-26-18-40t-43-14q-11-25-34-39t-48-15t-49 15t-33 39q-26 0-44 14t-17 40q0 13 7 26q-25 16-25 45q0 21 14 36q-14 15-14 35q0 31 26 46q-2 28-19 60t-33 53t-41 49q-58 63-58 150q0 55 25 103t65 79t92 49t104 19t104-19t91-49t66-79t24-103z" horiz-adv-x="571.4" />
<glyph glyph-name="block" unicode="&#xe86e;" d="m732 352q0 90-48 164l-421-420q76-50 166-50q62 0 118 25t96 65t65 97t24 119z m-557-167l421 421q-75 50-167 50q-83 0-153-40t-110-112t-41-152q0-91 50-167z m682 167q0-88-34-168t-91-137t-137-92t-166-34t-167 34t-137 92t-91 137t-34 168t34 167t91 137t137 91t167 34t166-34t137-91t91-137t34-167z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full-alt" unicode="&#xe870;" d="m716 548l-198-198l198-198l80 80q16 18 39 8q22-9 22-33v-250q0-14-10-25t-26-11h-250q-23 0-32 23q-10 21 7 38l81 81l-198 198l-198-198l80-81q17-17 8-38q-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33q22 10 39-8l80-80l198 198l-198 198l-80-80q-11-11-25-11q-7 0-14 3q-22 9-22 33v250q0 14 11 25t25 11h250q23 0 33-23q9-22-8-38l-80-81l198-198l198 198l-81 81q-17 16-7 38q9 23 32 23h250q15 0 26-11t10-25v-250q0-24-22-33q-7-3-14-3q-14 0-25 11z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-small" unicode="&#xe871;" d="m429 314v-250q0-14-11-25t-25-10t-25 10l-81 81l-185-186q-5-5-13-5t-13 5l-63 64q-6 5-6 13t6 13l185 185l-80 80q-11 11-11 25t11 25t25 11h250q14 0 25-11t11-25z m421 375q0-7-6-13l-185-185l80-80q11-11 11-25t-11-25t-25-11h-250q-14 0-25 11t-10 25v250q0 14 10 25t25 10t25-10l81-81l185 186q6 5 13 5t13-5l63-64q6-5 6-13z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-vertical" unicode="&#xe872;" d="m393 671q0-14-11-25t-25-10h-71v-572h71q15 0 25-10t11-25t-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-10 11-10 26t10 25t25 10h72v572h-72q-14 0-25 10t-10 25t10 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26z" horiz-adv-x="428.6" />
<glyph glyph-name="resize-horizontal" unicode="&#xe873;" d="m1000 350q0-14-11-25l-142-143q-11-11-26-11t-25 11t-10 25v72h-572v-72q0-14-10-25t-25-11t-25 11l-143 143q-11 11-11 25t11 25l143 143q10 11 25 11t25-11t10-25v-72h572v72q0 14 10 25t25 11t26-11l142-143q11-10 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="move" unicode="&#xe874;" d="m1000 350q0-14-11-25l-142-143q-11-11-26-11t-25 11t-10 25v72h-215v-215h72q14 0 25-10t11-25t-11-26l-143-142q-10-11-25-11t-25 11l-143 142q-11 11-11 26t11 25t25 10h72v215h-215v-72q0-14-10-25t-25-11t-26 11l-142 143q-11 11-11 25t11 25l142 143q11 11 26 11t25-11t10-25v-72h215v215h-72q-14 0-25 10t-11 25t11 26l143 142q11 11 25 11t25-11l143-142q11-11 11-26t-11-25t-25-10h-72v-215h215v72q0 14 10 25t25 11t26-11l142-143q11-10 11-25z" horiz-adv-x="1000" />
<glyph glyph-name="zoom-in" unicode="&#xe875;" d="m571 404v-36q0-7-5-13t-12-5h-125v-125q0-7-6-13t-12-5h-36q-7 0-13 5t-5 13v125h-125q-7 0-12 5t-6 13v36q0 7 6 12t12 5h125v125q0 8 5 13t13 5h36q7 0 12-5t6-13v-125h125q7 0 12-5t5-12z m72-18q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="zoom-out" unicode="&#xe876;" d="m571 404v-36q0-7-5-13t-12-5h-322q-7 0-12 5t-6 13v36q0 7 6 12t12 5h322q7 0 12-5t5-12z m72-18q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-21-50t-51-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="down-circled2" unicode="&#xe877;" d="m625 332q0-7-6-13l-178-178q-6-5-12-5t-13 5l-179 178q-8 9-4 20q5 11 17 11h107v196q0 8 5 13t13 5h107q8 0 13-5t5-13v-196h107q8 0 13-5t5-13z m-196 322q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="up-circled2" unicode="&#xe878;" d="m624 361q-5-11-17-11h-107v-196q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v196h-107q-8 0-13 5t-5 13q0 7 6 13l178 178q6 5 13 5t12-5l179-178q8-9 4-20z m-195 293q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="down-dir" unicode="&#xe94d;" d="m571 457q0-14-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25t25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="up-dir" unicode="&#xe94e;" d="m571 171q0-14-10-25t-25-10h-500q-15 0-25 10t-11 25t11 26l250 250q10 10 25 10t25-10l250-250q10-11 10-26z" horiz-adv-x="571.4" />
<glyph glyph-name="left-dir" unicode="&#xe94f;" d="m357 600v-500q0-14-10-25t-26-11t-25 11l-250 250q-10 11-10 25t10 25l250 250q11 11 25 11t26-11t10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="right-dir" unicode="&#xe950;" d="m321 350q0-14-10-25l-250-250q-11-11-25-11t-25 11t-11 25v500q0 15 11 25t25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="down-open" unicode="&#xe879;" d="m899 457q0-29-21-50l-363-363q-21-22-51-22q-30 0-50 22l-363 363q-21 20-21 50q0 30 21 51l41 42q22 20 51 20q29 0 50-20l271-271l271 271q21 20 51 20q29 0 50-20l42-42q21-22 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="left-open" unicode="&#xe87a;" d="m414-28l-364 364q-20 20-20 50t20 51l364 363q21 20 51 20t50-20l42-42q21-21 21-51t-21-50l-271-271l271-271q21-21 21-51t-21-50l-42-42q-21-20-50-20t-51 20z" horiz-adv-x="642.9" />
<glyph glyph-name="right-open" unicode="&#xe87b;" d="m613 386q0-29-20-51l-364-363q-21-21-50-21t-51 21l-42 42q-21 21-21 50q0 30 21 51l271 271l-271 270q-21 22-21 51q0 30 21 50l42 42q20 21 51 21t50-21l364-363q20-21 20-50z" horiz-adv-x="642.9" />
<glyph glyph-name="up-open" unicode="&#xe87c;" d="m899 171q0-29-21-50l-42-42q-21-21-50-21q-30 0-51 21l-271 271l-271-271q-20-21-50-21t-50 21l-42 42q-21 20-21 50q0 30 21 51l363 363q21 21 50 21q29 0 51-21l363-363q21-21 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="angle-left" unicode="&#xe87d;" d="m350 546q0-7-6-12l-219-220l219-219q6-6 6-13t-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-right" unicode="&#xe87e;" d="m332 314q0-7-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13z" horiz-adv-x="357.1" />
<glyph glyph-name="angle-up" unicode="&#xe87f;" d="m600 189q0-7-6-13l-28-27q-5-6-12-6t-13 6l-220 219l-219-219q-5-6-13-6t-13 6l-27 27q-6 6-6 13t6 13l260 260q5 6 12 6t13-6l260-260q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-down" unicode="&#xe880;" d="m600 439q0-7-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13t6 13l27 28q6 6 13 6t13-6l219-219l220 219q5 6 13 6t12-6l28-28q6-5 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-circled-left" unicode="&#xe881;" d="m507 72l57 56q11 11 11 26t-11 25l-171 171l171 171q11 11 11 25t-11 25l-57 57q-10 11-25 11t-25-11l-253-253q-11-11-11-25t11-25l253-254q11-10 25-10t25 10z m350 278q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-right" unicode="&#xe882;" d="m400 72l253 253q11 11 11 25t-11 25l-253 253q-10 11-25 11t-25-11l-57-56q-11-11-11-26t11-25l171-171l-171-171q-11-11-11-25t11-26l57-57q11-10 25-10t25 10z m457 278q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-up" unicode="&#xe883;" d="m650 214l57 57q11 11 11 25t-11 26l-253 253q-11 10-25 10t-26-10l-253-254q-10-10-10-25t10-25l57-57q11-10 25-10t25 10l172 172l171-172q11-10 25-10t25 10z m207 136q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-circled-down" unicode="&#xe884;" d="m454 125l253 253q11 11 11 26t-11 25l-57 57q-10 10-25 10t-25-10l-171-172l-172 172q-10 10-25 10t-25-10l-57-57q-10-11-10-25t10-26l253-253q11-10 26-10t25 10z m403 225q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="angle-double-left" unicode="&#xe885;" d="m350 82q0-7-6-13l-28-28q-5-5-12-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q5 6 13 6t12-6l28-28q6-5 6-13t-6-12l-219-220l219-219q6-6 6-13z m214 0q0-7-5-13l-28-28q-6-5-13-5t-13 5l-260 260q-6 6-6 13t6 13l260 260q6 6 13 6t13-6l28-28q5-5 5-13t-5-12l-220-220l220-219q5-6 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-right" unicode="&#xe886;" d="m332 314q0-7-6-13l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13z m214 0q0-7-5-13l-260-260q-6-5-13-5t-13 5l-28 28q-5 6-5 13t5 13l219 219l-219 220q-5 5-5 12t5 13l28 28q6 6 13 6t13-6l260-260q5-5 5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="angle-double-up" unicode="&#xe887;" d="m600 118q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 219l-219-219q-5-5-13-5t-13 5l-27 28q-6 6-6 13t6 13l260 260q5 5 12 5t13-5l260-260q6-6 6-13z m0 214q0-7-6-13l-28-28q-5-5-12-5t-13 5l-220 220l-219-220q-5-5-13-5t-13 5l-27 28q-6 6-6 13t6 13l260 260q5 6 12 6t13-6l260-260q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="angle-double-down" unicode="&#xe888;" d="m600 368q0-7-6-13l-260-260q-5-6-13-6t-12 6l-260 260q-6 6-6 13t6 13l27 28q6 5 13 5t13-5l219-220l220 220q5 5 13 5t12-5l28-28q6-6 6-13z m0 214q0-7-6-13l-260-260q-5-5-13-5t-12 5l-260 260q-6 6-6 13t6 13l27 28q6 5 13 5t13-5l219-220l220 220q5 5 13 5t12-5l28-28q6-6 6-13z" horiz-adv-x="642.9" />
<glyph glyph-name="down" unicode="&#xe951;" d="m427 125q4-10-3-19l-195-215q-6-5-13-5q-8 0-13 5l-198 215q-8 9-3 19q5 11 16 11h125v696q0 8 5 13t13 5h107q8 0 13-5t5-13v-696h125q11 0 16-11z" horiz-adv-x="428.6" />
<glyph glyph-name="left" unicode="&#xe952;" d="m964 352q0-8-5-14l-215-197q-9-8-19-4q-11 5-11 17v125h-696q-8 0-13 5t-5 12v108q0 7 5 12t13 5h696v125q0 12 11 17t19-3l215-196q5-5 5-12z" horiz-adv-x="1000" />
<glyph glyph-name="right" unicode="&#xe953;" d="m1000 404v-108q0-7-5-12t-13-5h-696v-125q0-12-11-17t-19 3l-215 196q-5 5-5 12q0 8 5 14l215 197q9 8 19 4q11-5 11-17v-125h696q8 0 13-5t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="up" unicode="&#xe954;" d="m427 575q-5-11-16-11h-125v-696q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v696h-125q-12 0-16 11t3 19l195 215q5 5 13 5q7 0 13-5l198-215q7-9 3-19z" horiz-adv-x="428.6" />
<glyph glyph-name="down-big" unicode="&#xe889;" d="m899 386q0-30-21-50l-363-364q-22-21-51-21q-29 0-50 21l-363 364q-21 20-21 50q0 29 21 51l41 41q22 21 51 21q29 0 50-21l164-164v393q0 29 21 50t51 22h71q29 0 50-22t21-50v-393l164 164q21 21 51 21q29 0 50-21l42-42q21-21 21-50z" horiz-adv-x="928.6" />
<glyph glyph-name="music" unicode="&#xe802;" d="m857 725v-625q0-28-19-50t-48-33t-58-18t-53-6t-54 6t-58 18t-48 33t-19 50t19 50t48 33t58 18t54 6q58 0 107-22v300l-429-132v-396q0-28-19-50t-48-33t-58-18t-53-6t-54 6t-58 18t-48 33t-19 50t19 50t48 34t58 17t54 6q58 0 107-21v539q0 17 10 32t28 19l464 143q7 3 16 3q22 0 38-16t15-38z" horiz-adv-x="857.1" />
<glyph glyph-name="right-big" unicode="&#xe88b;" d="m821 314q0-30-20-50l-363-364q-22-20-51-20q-29 0-50 20l-42 42q-22 21-22 51t22 51l163 163h-393q-29 0-47 21t-18 51v71q0 30 18 51t47 20h393l-163 164q-22 21-22 51t22 50l42 42q21 21 50 21q29 0 51-21l363-363q20-20 20-51z" horiz-adv-x="857.1" />
<glyph glyph-name="up-big" unicode="&#xe88c;" d="m899 308q0-28-21-50l-42-42q-21-21-50-21q-30 0-51 21l-164 164v-393q0-29-20-47t-51-19h-71q-30 0-51 19t-21 47v393l-164-164q-20-21-50-21t-50 21l-42 42q-21 21-21 50q0 30 21 51l363 363q20 21 50 21q30 0 51-21l363-363q21-22 21-51z" horiz-adv-x="928.6" />
<glyph glyph-name="right-hand" unicode="&#xe88d;" d="m143 100q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m786 321q0 29-22 50t-50 22h-321q0 11 8 27t19 31t18 38t8 47q0 37-25 54t-64 17q-13 0-50-77q-14-25-21-37q-22-35-62-81q-40-45-57-59q-38-32-78-32h-18v-357h18q40 0 93-18t108-35t100-18q106 0 106 93q0 14-3 31q17 9 27 30t9 41t-10 38q30 28 30 66q0 14-6 31t-14 27h185q29 0 50 21t22 50z m71 1q0-59-42-101t-101-42h-94q-2-35-21-67q2-12 2-24q0-56-34-99q1-78-47-123t-127-45q-74 0-179 39q-92 33-125 33h-161q-29 0-50 21t-21 50v357q0 30 21 51t50 21h161q6 0 12 2t13 8t13 10t13 13t12 12t10 12t8 9q36 42 56 72q7 12 18 35t21 40t23 35t30 28t39 10q70 0 115-38t46-105q0-38-13-72h209q58 0 101-42t42-100z" horiz-adv-x="1000" />
<glyph glyph-name="left-hand" unicode="&#xe88e;" d="m768 64h18v357h-18q-20 0-38 7t-35 21t-28 25t-27 31q-1 1-2 2t-2 3t-3 2q-40 46-62 81q-8 13-21 38q-1 2-6 13t-11 20t-11 20t-12 17t-10 6q-40 0-64-17t-25-54q0-24 8-47t19-38t18-31t8-27h-321q-28 0-50-22t-22-50q0-29 22-50t50-21h185q-9-9-14-26t-6-31q0-39 30-67q-10-18-10-38t9-41t27-30q-2-13-2-31q0-47 27-70t75-23q47 0 102 18t109 35t93 18z m161 36q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m71 321v-357q0-29-21-50t-50-21h-161q-33 0-125-33q-106-39-176-39q-80 0-129 44t-48 121l0 3q-34 42-34 99q0 12 2 24q-19 32-21 67h-94q-59 0-101 42t-42 101q0 57 42 100t101 42h209q-13 34-13 72q0 68 46 105t115 37q21 0 39-9t30-28t23-35t21-40t18-35q20-30 56-72q1-1 8-9t10-12t12-12t13-13t13-10t13-8t12-2h161q29 0 50-21t21-51z" horiz-adv-x="1000" />
<glyph glyph-name="up-hand" unicode="&#xe88f;" d="m714-43q0 15-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m72 426q0 106-93 106q-15 0-32-3q-9 17-29 27t-41 9t-39-10q-27 30-66 30q-14 0-31-6t-26-14v185q0 29-22 50t-50 22q-28 0-50-22t-21-50v-321q-11 0-27 8t-31 19t-38 18t-47 8q-37 0-55-25t-17-64q0-13 78-50q25-14 36-21q36-22 81-62q45-40 59-57q32-38 32-78v-18h357v18q0 40 18 93t36 108t18 100z m71 3q0-74-38-179q-33-92-33-125v-161q0-29-21-50t-51-21h-357q-29 0-50 21t-21 50v161q0 6-3 12t-8 13t-10 13t-12 13t-12 12t-12 10t-10 8q-41 36-72 56q-11 7-34 18t-40 21t-36 23t-27 30t-10 39q0 70 37 115t106 46q38 0 71-13v209q0 58 43 101t100 42q58 0 101-42t42-101v-94q35-2 66-21q12 2 24 2q57 0 100-34q77 1 122-47t45-127z" horiz-adv-x="857.1" />
<glyph glyph-name="down-hand" unicode="&#xe890;" d="m786 314q0 47-18 102t-36 109t-18 93v18h-357v-18q0-20-7-38t-20-35t-26-28t-30-27q-5-4-8-7q-45-40-81-62q-12-8-38-21q-1-1-12-6t-20-11t-20-11t-17-12t-7-10q0-40 17-65t55-24q24 0 47 8t38 18t31 19t27 8v-321q0-28 21-50t50-22q29 0 50 22t22 50v184q25-19 57-19q39 0 66 30q18-11 39-11t41 10t29 27q14-2 32-2q47 0 70 27t23 75z m-72 429q0 14-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m143-427q0-79-43-128t-121-48l-3 0q-43-34-100-34q-12 0-24 2q-30-17-66-21v-94q0-59-42-101t-101-42q-58 0-100 42t-43 101v208q-30-12-71-12q-68 0-105 46t-38 115q0 21 10 39t27 30t36 23t40 21t34 18q31 20 72 56q2 1 10 8t12 10t12 12t12 13t10 13t8 13t3 12v160q0 30 21 51t50 21h357q30 0 51-21t21-51v-160q0-33 33-125q38-106 38-177z" horiz-adv-x="857.1" />
<glyph glyph-name="left-circled" unicode="&#xe891;" d="m714 314v72q0 14-10 25t-25 10h-281l106 106q11 11 11 25t-11 25l-51 51q-10 10-25 10t-25-10l-202-202l-51-51q-10-10-10-25t10-25l51-51l202-202q10-10 25-10t25 10l51 51q10 10 10 25t-10 25l-106 106h281q14 0 25 10t10 25z m143 36q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="right-circled" unicode="&#xe892;" d="m717 350q0 15-10 25l-51 51l-202 202q-10 10-25 10t-25-10l-51-51q-10-10-10-25t10-25l106-106h-280q-15 0-26-10t-10-25v-72q0-14 10-25t26-10h280l-106-106q-10-10-10-25t10-25l51-51q10-10 25-10t25 10l202 202l51 51q10 10 10 25z m140 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="up-circled" unicode="&#xe893;" d="m717 351q0 15-11 25l-202 202l-50 50q-10 11-25 11t-26-11l-50-50l-202-202q-10-10-10-25t10-26l50-50q11-10 26-10t25 10l105 105v-280q0-14 11-25t25-11h71q15 0 25 11t11 25v280l105-105q11-11 26-11t25 11l50 50q11 11 11 26z m140-1q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="down-circled" unicode="&#xe894;" d="m717 349q0 16-11 26l-50 50q-10 10-25 10t-26-10l-105-105v280q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-280l-105 105q-11 11-25 11t-26-11l-50-50q-10-10-10-26t10-25l202-202l50-50q11-10 26-10t25 10l50 50l202 202q11 10 11 25z m140 1q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="cw" unicode="&#xe895;" d="m857 707v-250q0-14-10-25t-26-11h-250q-23 0-32 23q-10 22 7 38l77 77q-82 77-194 77q-58 0-111-23t-91-61t-62-91t-22-111t22-111t62-91t91-61t111-23q66 0 125 29t100 82q4 6 13 7q8 0 14-5l76-77q5-4 6-11t-5-13q-60-74-147-114t-182-41q-87 0-167 34t-136 92t-92 137t-34 166t34 166t92 137t136 92t167 34q82 0 158-31t137-88l72 72q16 18 39 8q22-9 22-33z" horiz-adv-x="857.1" />
<glyph glyph-name="ccw" unicode="&#xe896;" d="m857 350q0-87-34-166t-91-137t-137-92t-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5q9-1 13-7q41-53 100-82t126-29q58 0 110 23t92 61t61 91t22 111t-22 111t-61 91t-92 61t-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38q-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33q22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92t91-137t34-166z" horiz-adv-x="857.1" />
<glyph glyph-name="refresh" unicode="&#xe897;" d="m843 261q0-3 0-4q-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11t-11 25v250q0 14 11 25t25 11h250q14 0 25-11t10-25t-10-25l-77-77q40-37 90-57t105-20q74 0 139 37t104 99q6 10 29 66q5 13 17 13h107q8 0 13-6t5-12z m14 446v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25t10 25l77 77q-82 77-194 77q-75 0-140-37t-104-99q-6-10-29-66q-5-13-17-13h-111q-7 0-13 6t-5 12v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="level-up" unicode="&#xe898;" d="m568 514q-10-21-32-21h-107v-482q0-8-5-13t-13-5h-393q-12 0-16 10q-5 11 2 19l89 108q5 6 14 6h179v357h-107q-23 0-33 21q-9 20 5 37l179 215q10 12 27 12t28-12l178-215q15-17 5-37z" horiz-adv-x="571.4" />
<glyph glyph-name="level-down" unicode="&#xe955;" d="m18 707h393q7 0 12-5t6-13v-482h107q22 0 32-20t-5-39l-178-214q-11-13-28-13t-27 13l-179 214q-14 17-5 39q10 20 33 20h107v357h-179q-8 0-14 6l-89 108q-7 7-2 19q5 10 16 10z" horiz-adv-x="571.4" />
<glyph glyph-name="shuffle" unicode="&#xe956;" d="m372 582q-34-52-77-153q-12 25-20 41t-23 35t-28 32t-36 19t-45 8h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q139 0 229-125z m628-446q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107q-18 0-48 0t-45-1t-41 1t-39 3t-36 6t-35 10t-32 16t-33 22t-31 30t-31 39q33 52 76 152q12-25 20-40t23-36t28-31t35-20t46-8h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z m0 500q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107h-143q-27 0-49-8t-38-25t-29-35t-25-43q-18-34-43-95q-16-37-28-62t-30-59t-36-55t-41-47t-50-38t-60-23t-71-10h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125q27 0 48 9t39 25t28 34t26 43q17 35 43 96q16 36 28 62t30 58t36 56t41 46t50 38t59 24t72 9h143v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="exchange" unicode="&#xe957;" d="m1000 189v-107q0-7-5-12t-13-6h-768v-107q0-7-5-12t-13-6q-6 0-13 6l-178 178q-5 5-5 13q0 8 5 13l179 178q5 5 12 5q8 0 13-5t5-13v-107h768q7 0 13-5t5-13z m0 304q0-8-5-13l-179-179q-5-5-12-5q-8 0-13 6t-5 12v107h-768q-7 0-13 6t-5 12v107q0 8 5 13t13 5h768v107q0 8 5 13t13 5q6 0 13-5l178-178q5-5 5-13z" horiz-adv-x="1000" />
<glyph glyph-name="collapse" unicode="&#xe958;" d="m639 473q10-19-3-36l-178-250q-11-16-29-16t-29 16l-179 250q-13 17-3 36q10 20 32 20h357q22 0 32-20z m75-391v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536q0-7 5-12t13-6h535q8 0 13 6t5 12z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="collapse-top" unicode="&#xe899;" d="m639 227q-10-20-32-20h-357q-22 0-32 20q-10 19 3 37l179 250q10 15 29 15t29-15l178-250q13-18 3-37z m75-145v536q0 7-5 12t-13 6h-535q-7 0-13-6t-5-12v-536q0-7 5-12t13-6h535q8 0 13 6t5 12z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="expand" unicode="&#xe89a;" d="m607 350q0-18-15-29l-250-179q-17-12-37-2q-19 9-19 31v358q0 22 19 31q20 10 37-2l250-179q15-11 15-29z m107-268v536q0 8-5 13t-13 5h-535q-8 0-13-5t-5-13v-536q0-8 5-13t13-5h535q8 0 13 5t5 13z m143 536v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="play" unicode="&#xe89b;" d="m772 333l-741-412q-13-7-22-2t-9 20v822q0 14 9 20t22-2l741-412q13-7 13-17t-13-17z" horiz-adv-x="785.7" />
<glyph glyph-name="play-circled" unicode="&#xe89c;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m214-460q18 10 18 31t-18 31l-304 178q-17 11-35 1q-18-11-18-31v-358q0-20 18-31q9-4 17-4q10 0 18 5z" horiz-adv-x="857.1" />
<glyph glyph-name="play-circled2" unicode="&#xe89d;" d="m661 350q0-21-18-31l-304-178q-8-5-18-5q-8 0-17 4q-18 11-18 31v358q0 20 18 31q18 10 35-1l304-178q18-10 18-31z m71 0q0 83-41 152t-110 111t-152 41t-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152z m125 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="stop" unicode="&#xe89e;" d="m857 743v-786q0-14-10-25t-26-11h-785q-15 0-25 11t-11 25v786q0 14 11 25t25 11h785q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="pause" unicode="&#xe800;" d="m857 743v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z m-500 0v-786q0-14-10-25t-26-11h-285q-15 0-25 11t-11 25v786q0 14 11 25t25 11h285q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="to-end" unicode="&#xe8a0;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v379q0 14 10 25t25 11h72q14 0 25-11t10-25v-786q0-14-10-25t-25-11h-72q-14 0-25 11t-10 25v379q-3-6-8-11z" horiz-adv-x="571.4" />
<glyph glyph-name="to-end-alt" unicode="&#xe8a1;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q4-4 7-11v379q0 14 11 25t25 11h71q15 0 25-11t11-25v-786q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v379q-3-6-7-11l-396-396q-11-11-18-8t-7 18v397q-3-6-8-11z" horiz-adv-x="1000" />
<glyph glyph-name="to-start" unicode="&#xe8a2;" d="m546 771q11 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11z" horiz-adv-x="571.4" />
<glyph glyph-name="to-start-alt" unicode="&#xe8a3;" d="m975 771q10 11 18 8t7-18v-822q0-14-7-18t-18 8l-396 396q-5 5-8 11v-397q0-14-7-18t-18 8l-396 396q-5 5-7 11v-379q0-14-11-25t-25-11h-71q-15 0-25 11t-11 25v786q0 14 11 25t25 11h71q15 0 25-11t11-25v-379q2 7 7 11l396 396q11 11 18 8t7-18v-396q3 6 8 10z" horiz-adv-x="1000" />
<glyph glyph-name="fast-fw" unicode="&#xe8a4;" d="m25-71q-10-11-18-8t-7 18v822q0 14 7 18t18-8l396-396q5-4 8-11v397q0 14 7 18t18-8l396-396q10-11 10-25t-10-25l-396-396q-11-11-18-8t-7 18v396q-3-5-8-10z" horiz-adv-x="928.6" />
<glyph glyph-name="fast-bw" unicode="&#xe8a5;" d="m903 771q11 11 18 8t8-18v-822q0-14-8-18t-18 8l-396 396q-4 5-7 11v-397q0-14-7-18t-18 8l-396 396q-11 11-11 25t11 25l396 396q11 11 18 8t7-18v-396q3 6 7 10z" horiz-adv-x="928.6" />
<glyph glyph-name="eject" unicode="&#xe8a6;" d="m8 304l396 396q11 10 25 10t25-10l396-396q11-11 8-18t-18-8h-822q-14 0-17 8t7 18z m814-311h-786q-14 0-25 10t-10 26v142q0 15 10 26t25 10h786q14 0 25-10t11-26v-142q0-15-11-26t-25-10z" horiz-adv-x="858.3" />
<glyph glyph-name="signal" unicode="&#xe8a8;" d="m143 46v-107q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v107q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 72v-179q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v179q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 143v-322q0-8-5-13t-12-5h-108q-7 0-12 5t-5 13v322q0 8 5 13t12 5h108q7 0 12-5t5-13z m215 214v-536q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v536q0 8 5 13t13 5h107q8 0 13-5t5-13z m214 286v-822q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v822q0 8 5 13t13 5h107q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="award" unicode="&#xe959;" d="m256 357q-42 91-42 207h-143v-53q0-44 53-91t132-63z m601 154v53h-143q0-116-41-207q79 16 131 63t53 91z m72 71v-71q0-40-24-80t-62-73t-97-54t-120-25q-23-30-53-53q-21-19-29-40t-8-50q0-30 17-51t54-21q42 0 75-25t32-64v-36q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v36q0 39 33 64t74 25q38 0 55 21t17 51q0 28-8 50t-30 40q-29 23-53 53q-63 3-120 25t-96 54t-63 73t-23 80v71q0 22 16 38t38 16h160v53q0 37 27 63t63 27h321q37 0 63-27t26-63v-53h161q22 0 38-16t16-38z" horiz-adv-x="928.6" />
<glyph glyph-name="desktop" unicode="&#xe95a;" d="m1000 296v465q0 7-5 12t-13 6h-893q-7 0-12-6t-6-12v-465q0-7 6-12t12-5h893q7 0 13 5t5 12z m71 465v-607q0-37-26-63t-63-27h-303q0-20 9-43t17-40t9-24q0-14-10-25t-25-11h-286q-15 0-25 11t-11 25q0 8 9 25t18 39t9 43h-304q-36 0-63 27t-26 63v607q0 37 26 63t63 26h893q37 0 63-26t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="laptop" unicode="&#xe90e;" d="m232 136q-37 0-63 26t-26 63v393q0 37 26 63t63 26h607q37 0 63-26t27-63v-393q0-37-27-63t-63-26h-607z m-18 482v-393q0-7 6-13t12-5h607q8 0 13 5t5 13v393q0 7-5 12t-13 6h-607q-7 0-12-6t-6-12z m768-518h89v-54q0-22-26-37t-63-16h-893q-36 0-63 16t-26 37v54h982z m-402-54q9 0 9 9t-9 9h-89q-9 0-9-9t9-9h89z" horiz-adv-x="1071.4" />
<glyph glyph-name="tablet" unicode="&#xe95c;" d="m357 64q0 15-10 25t-26 11t-25-11t-10-25t10-25t25-10t26 10t10 25z m214 90v535q0 8-5 13t-12 5h-465q-7 0-12-5t-6-13v-535q0-8 6-13t12-5h465q7 0 12 5t5 13z m72 535v-607q0-37-26-63t-63-26h-465q-36 0-63 26t-26 63v607q0 37 26 63t63 27h465q36 0 63-27t26-63z" horiz-adv-x="642.9" />
<glyph glyph-name="mobile" unicode="&#xe8a9;" d="m259 64q0 19-13 32t-32 13t-31-13t-13-32t13-31t31-13t32 13t13 31z m116 90v392q0 8-5 13t-13 5h-286q-7 0-12-5t-5-13v-392q0-8 5-13t12-5h286q7 0 13 5t5 13z m-107 473q0 9-9 9h-89q-9 0-9-9t9-9h89q9 0 9 9z m161 9v-572q0-29-22-50t-50-21h-286q-29 0-50 21t-21 50v572q0 29 21 50t50 21h286q29 0 50-21t22-50z" horiz-adv-x="428.6" />
<glyph glyph-name="inbox" unicode="&#xe8aa;" d="m571 314h176q0 2-1 5t-2 4l-118 277h-395l-118-277q-1-1-2-4t-1-5h176l53-107h179z m286-16v-269q0-15-10-26t-26-10h-785q-15 0-25 10t-11 26v269q0 34 14 68l133 308q5 14 20 24t29 9h465q14 0 29-9t20-24l133-308q14-34 14-68z" horiz-adv-x="857.1" />
<glyph glyph-name="globe" unicode="&#xe8ab;" d="m429 779q116 0 215-58t156-156t57-215t-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58z m152-291q-1-1-5-5t-7-6q1 0 2 3t3 6t2 4q3 4 12 8q8 4 29 7q19 5 29-6q-1 1 5 7t8 7q2 1 8 2t9 5l1 12q-7-1-10 4t-3 12q0-2-4-5q0 4-2 5t-7-1t-5-1q-5 2-8 5t-5 9t-2 8q-1 3-5 6t-5 6q-1 1-2 3t-2 4t-2 3t-3 1t-4-3t-4-5t-2-3q-2 1-4 1t-2-1t-3-2t-3-2q-1-1-4-1t-5-1q8 3-1 6q-5 2-9 1q5 3 5 7t-5 8h3q-1 2-5 5t-10 4t-7 4q-5 3-19 5t-18 0q-3-3-3-5t2-8t2-7q1-4-3-7t-3-7q0-4 7-9t6-12q-2-4-9-9t-9-6q-3-5-1-11t6-9q1-1 1-2t-2-3t-3-2t-4-2l-1-1q-7-3-12 3t-7 15q-4 14-9 17q-13 4-17-1q-2 7-22 15q-14 5-33 2q4 0 0 8q-4 9-10 7q1 3 2 10t0 7q2 7 7 13q1 1 4 5t5 7t1 4q19-3 28 6q2 2 6 9t6 10q5 3 8 3t8-3t8-3q8-1 8 6t-4 11q7 0 2 10q-3 4-5 5q-6 2-15-3q-4-2 2-4q-1 0-6-6t-9-10t-9 3q0 0-3 7t-5 8q-5 0-9-9q1 5-6 9t-14 4q11 7-4 15q-4 3-12 3t-11-2q-2-4-3-7t3-4t6-3t6-2t5-2q8-6 5-8q-1 0-5-2t-6-2t-4-3q-2-2 0-7t-1-8q-3 3-5 10t-4 9q4-5-14-4l-5 1q-3 0-9-1t-12-1t-7 5q-3 4 0 11q0 2 2 1q-2 2-6 5t-6 5q-25-8-52-23q3 0 6 1q3 1 8 3t5 4q19 7 24 3l3 3q7-9 11-14q-4 3-17 1q-11-4-12-7q4-7 2-10q-2 2-6 6t-8 6t-8 3q-9 0-13-1q-81-45-131-124q4-4 7-4q2-1 3-5t1-6t6 1q5-4 2-10q1 0 25-15q10-10 11-12q2-6-5-10q-1 1-5 5t-5 2q-2-3 0-10t6-7q-4 0-5-9t-2-20t0-13l1-1q-2-6 3-19t12-11q-7-1 11-24q3-4 4-5q2-1 7-4t9-6t5-5q2-3 6-13t8-13q-2-3 5-11t6-13q-1 0-2-1t-1 0q2-4 9-8t8-7q1-2 1-6t2-6t4-1q2 11-13 34q-8 14-9 17q-2 2-4 8t-2 8q1 0 3 0t5-2t4-3t1-1q-1-4 1-10t7-10t10-11t6-7q4-4 8-11t0-8q5 0 11-5t10-11q3-5 4-15t3-13q1-4 5-8t7-5l9-5t7-3q3-2 10-6t12-7q6-2 9-2t8 1t8 2q8 1 16-8t12-12q20-10 30-6q-1 0 1-4t4-9t5-8t3-5q3-3 10-8t10-8q4 2 4 5q-1-5 4-11t10-6q8 2 8 18q-17-9-27 10q0 0-2 3t-2 5t-1 4t0 5t2 1q5 0 6 2t-1 7t-2 8q-1 4-6 11t-7 8q-3-5-9-4t-9 5q0-1-1-3t-1-4q-7 0-8 0q1 2 1 10t2 13q1 2 3 6t5 9t2 7t-3 5t-9 1q-11 0-15-11q-1-2-2-6t-2-6t-5-4q-4-2-14-1t-13 3q-8 4-13 16t-5 20q0 6 1 15t2 14t-3 14q2 1 5 5t5 6q2 1 3 1t2 0t3 1t1 3q0 1-2 2q-2 1-2 1q4-1 16 1t15-1q9-6 12 1q0 1-1 6t0 7q3-15 16-5q2-1 9-3t9-2q2-1 4-3t3-3t3 0t5 4q5-8 7-13q6-23 10-25q4-2 6-1t3 5t0 8t-1 7l-1 4v11l0 4q-8 2-10 7t0 10t9 10q0 1 4 2t9 4t7 4q12 11 8 20q4 0 6 5q0 0-2 2t-5 2t-2 2q5 2 1 8q3 2 4 7t4 5q5-7 12-1q4 5 1 9q2 4 11 6t10 5q4-1 5 1t0 7t2 7q2 2 8 5t8 2l9 7q2 2 0 2q10-1 18 6q5 6-4 11q2 3-2 5t-8 3q2 1 7 1t5 1q9 5-4 9q-9 2-24-7z m-90-490q114 21 195 106q-1 2-7 2t-7 2q-10 4-13 5q1 4-1 7t-5 5t-7 5t-6 4q-1 1-4 3t-4 3t-4 2t-5 2t-5-1l-2-1q-2 0-3-1t-3-2t-2-1t0-2q-12 10-20 13q-3 0-7 3t-5 4t-6 0t-6-4q-3-2-4-8t-1-7q-4 3 0 10t1 10q-1 3-6 2t-6-2t-7-5t-5-3t-4-3t-5-5q-2-2-4-6t-2-7q-1 3-7 4t-5 3q1-5 2-19t3-22q4-17-7-26q-15-14-16-23q-2-12 7-14q0-4-5-12t-4-12q0-3 2-9z" horiz-adv-x="857.1" />
<glyph glyph-name="sun" unicode="&#xe8ac;" d="m821 350q0 65-25 125t-69 102t-102 69t-125 25t-125-25t-102-69t-69-102t-25-125t25-125t69-102t102-69t125-25t125 25t102 69t69 102t25 125z m154-155q-2-8-11-11l-163-53v-171q0-9-7-15q-8-5-16-2l-163 53l-100-139q-6-7-15-7t-14 7l-101 139l-163-53q-8-3-16 2q-7 6-7 15v171l-163 53q-9 3-11 11q-3 10 2 17l100 138l-100 138q-5 8-2 17q2 8 11 11l163 53v171q0 9 7 15q8 5 16 2l163-53l101 139q5 6 14 6t15-6l100-139l163 53q8 3 16-2q7-6 7-15v-171l163-53q9-3 11-12q3-8-2-16l-100-138l100-138q5-7 2-17z" horiz-adv-x="1000" />
<glyph glyph-name="cloud" unicode="&#xe8ad;" d="m1071 207q0-89-62-151t-152-63h-607q-103 0-177 73t-73 177q0 74 40 135t104 91q-1 15-1 24q0 118 84 202t202 84q88 0 159-50t105-128q39 35 93 35q59 0 101-42t42-101q0-42-23-77q72-17 119-75t46-134z" horiz-adv-x="1071.4" />
<glyph glyph-name="flash" unicode="&#xe8ae;" d="m494 534q10-11 4-24l-302-646q-7-14-23-14q-2 0-8 1q-9 3-14 11t-3 16l110 451l-226-56q-2-1-7-1q-10 0-17 7q-10 8-7 21l112 461q2 8 9 13t15 5h183q11 0 18-7t7-17q0-4-2-10l-96-258l221 54q5 2 7 2q11 0 19-9z" horiz-adv-x="500" />
<glyph glyph-name="moon" unicode="&#xe8af;" d="m704 123q-30-5-61-5q-102 0-188 50t-137 137t-50 188q0 107 58 199q-112-33-183-128t-72-214q0-73 29-139t76-113t114-77t139-28q80 0 152 34t123 96z m114 47q-53-113-159-181t-230-68q-87 0-167 34t-136 92t-92 137t-34 166q0 85 32 163t87 135t132 92t161 38q25 1 34-22q10-23-8-40q-48-43-73-101t-26-122q0-83 41-152t111-111t152-41q66 0 127 29q23 10 40-7q8-8 10-19t-2-22z" horiz-adv-x="857.1" />
<glyph glyph-name="umbrella" unicode="&#xe8b0;" d="m500 388v-324q0-58-42-100t-101-43t-100 43t-43 100q0 15 11 25t25 11t25-11t11-25q0-28 22-49t49-22t50 22t22 49v324q18 6 35 6t36-6z m429-15q0-7-6-13t-12-5q-6 0-13 6q-27 25-52 38t-57 13q-38 0-71-21t-58-54q-4-5-10-15t-8-14q-6-9-15-9q-10 0-16 9q-3 4-9 14t-9 15q-24 34-58 54t-71 21t-71-21t-57-54q-4-5-10-15t-8-14q-6-9-16-9q-10 0-16 9q-2 4-8 14t-10 15q-24 34-57 54t-71 21q-33 0-57-13t-52-38q-7-6-13-6q-7 0-13 5t-5 13q0 3 1 4q25 102 96 178t166 114t201 38q78 0 153-22t138-64t109-104t64-140q1-1 1-4z m-429 406v-55q-23 1-36 1t-35-1v55q0 14 10 25t25 10t25-10t11-25z" horiz-adv-x="928.6" />
<glyph glyph-name="flight" unicode="&#xe8b1;" d="m768 761q24-29 7-83t-61-96l-90-90l90-388q3-11-7-18l-71-54q-4-3-11-3q-2 0-4 0q-8 2-12 9l-155 284l-145-145l30-108q3-10-5-18l-53-53q-5-5-13-5h-1q-9 1-14 7l-105 141l-141 105q-6 4-7 13q-1 7 5 14l54 54q5 5 12 5q4 0 5 0l108-30l145 145l-284 155q-8 5-9 14q-1 9 5 15l71 71q8 7 17 5l371-89l89 89q43 42 96 60t83-6z" horiz-adv-x="785.7" />
<glyph glyph-name="fighter-jet" unicode="&#xe8b2;" d="m1071 314q0-18-160-53l-197-18l-125-36h-35l-164-196h39q14 0 25-3t10-6t-10-7t-25-2h-179v18h36v232h-90l-107-125h-53l-18 18v107h18v18h71v4l-107 14v71l107 13v5h-71v18h-18v107l18 18h53l107-125h90v232h-36v18h179q14 0 25-3t10-6t-10-7t-25-2h-39l164-197h35l125-35l197-18q145-33 160-52z" horiz-adv-x="1071.4" />
<glyph glyph-name="leaf" unicode="&#xe8b3;" d="m714 457q0 15-10 25t-25 11q-96 0-178-28t-145-75t-131-122q-11-12-11-25q0-15 11-25t25-11q13 0 25 11q15 13 41 39t38 37q76 69 150 98t175 29q14 0 25 11t10 25z m286 111q0-53-11-108q-26-125-103-214t-200-149q-119-61-244-61q-83 0-160 27q-8 2-49 23t-53 21q-9 0-22-18t-25-39t-30-39t-33-18q-17 0-29 6t-17 13t-15 24q-1 2-3 6t-3 6t-2 5t-1 7q0 20 17 41t38 37t38 31t18 27q0 2-8 21t-9 25q-5 28-5 58q0 64 24 123t66 103t96 77t113 53q31 10 81 15t100 5t100 3t91 13t64 32l16 16t17 16t15 11t20 9t24 3q22 0 40-26t26-63t14-69t4-53z" horiz-adv-x="1000" />
<glyph glyph-name="font" unicode="&#xe8b6;" d="m405 538l-95-251q40-1 85-1t67-1t29 0l16 1q-18 53-51 134q-30 74-51 118z m-393-617h-12l1 44q12 4 45 10q49 9 61 18q11 9 27 38l132 344l156 404h72l6-12l114-268q58-135 70-166q21-57 53-131q15-32 36-91q14-38 37-84q12-27 19-31q13-11 39-13q26-4 57-15q4-22 4-32q0-8-1-15q-45 0-107 5q-52 4-106 4q-44 0-75-1l-112-6l-32-1q0 25 2 43l73 16q32 7 38 13q7 7 7 15t-3 18l-26 63l-52 128l-251 1q-16-36-58-153q-13-36-13-47q0-17 10-24q14-12 57-18q2 0 8-1t16-3t23-3q1-16 1-32q0-10-2-16q-36 0-194 12l-27-5q-45-8-93-8z" horiz-adv-x="928.6" />
<glyph glyph-name="bold" unicode="&#xe8b5;" d="m310 1q42-18 78-18q73 0 120 23t68 63q22 39 22 101q0 64-23 101q-33 52-79 70q-45 18-138 18q-41 0-56-6v-80l-1-97l2-150q0-9 7-25z m-8 417q24-4 61-4q97 0 147 36t50 125q0 62-48 104q-47 42-142 42q-29 0-73-7q0-25 2-43q3-68 3-156l-1-55q0-24 1-43z m-302-497l1 53q25 5 38 7q43 6 69 17q9 15 11 28q5 37 5 109l-1 277q-2 143-5 225q0 49-6 61q0 2-6 7q-11 7-39 8q-17 1-64 8l-2 46l145 3l212 7l25 1q3 0 8 0t8 0q1 0 12 0t23 0h41q49 0 106-15q24-7 54-22q32-16 57-42q25-26 36-58t12-68q0-40-18-72t-53-58q-14-12-84-43q99-23 149-82q52-59 52-132q0-42-16-89q-12-35-40-66q-37-40-78-60q-41-20-113-33q-46-9-111-7l-110 3q-47 1-166-6q-19-2-152-7z" horiz-adv-x="785.7" />
<glyph glyph-name="italic" unicode="&#xe8b4;" d="m0-78l10 48q2 0 43 11q42 11 64 22q16 21 23 56l15 78l31 149l7 36q5 25 10 47t9 38t7 26t5 17t1 6l17 88l9 35l12 75l4 28v21q-23 13-80 16q-16 1-21 2l10 58l177-8q22-1 41-1q37 0 119 5q19 1 38 2t20 2q-1-11-3-22q-4-16-7-28q-31-11-61-17q-36-9-56-18q-7-17-14-49q-5-24-7-46q-25-111-37-170l-34-174l-21-88l-24-131l-7-25q-1-4 1-15q36-9 66-12q20-3 37-6q-1-16-4-32q-4-17-5-23q-10 0-13-1q-13-1-23-1q-5 0-16 2q-10 2-81 10l-110 1q-23 0-97-6q-42-4-55-6z" horiz-adv-x="571.4" />
<glyph glyph-name="text-height" unicode="&#xe8b7;" d="m45 778l30-15q12-3 118-3h73l10 2l64 0l120 0h164l19-1q8-1 15 4t12 8l4 5l24 0q8 0 15 0v-58t1-74l0-55l0-33q0-18-2-28q-22-9-38-10q-14 24-31 71q-4 13-8 35t-7 36t-3 17q-7 8-15 10q-4 1-24 1t-58 0t-61-1q-19 0-38-3q-5-54-4-75l0-85v-186l2-200l-1-82q0-26 6-47q28-14 50-18q1 0 10-3t25-7t24-7q16-4 28-10q2-25 2-28q0-5-1-16q-8-1-19-1q-62 0-105 6q-40 4-132 4q-49 0-130-7q-27-3-39-3q-2 13-2 15l0 14v5q12 19 44 28q78 21 89 28q5 11 6 31q5 107 4 242l-3 238q-1 35 0 66t0 58t-1 31t-4 9q-3 3-7 3q-22 4-83 4q-24 0-56-8t-40-14q-8-5-13-18t-12-42t-13-47q-4-10-11-18t-12-7q-24 15-31 25v213z m928-714q19 0 24-10t-7-25l-70-90q-11-15-27-15t-27 15l-71 90q-11 15-6 25t23 10h45v572h-45q-18 0-23 10t6 25l71 90q11 15 27 15t27-15l70-90q12-15 7-25t-24-10h-44v-572h44z" horiz-adv-x="1000" />
<glyph glyph-name="text-width" unicode="&#xe8b8;" d="m45 778l30-15q12-3 118-3h73l10 2l64 0l249 0h178l19-1q8-1 15 4t12 8l4 5l23 0q9 0 16 0v-58t1-74l0-55l0-33q0-18-3-28q-21-9-38-10q-14 24-30 71q-4 13-8 35t-7 36t-3 17q-7 8-15 10q-4 1-33 1t-77 0t-72-1q-52 0-70-3q-6-54-5-75l1-85v29l1-201l0-82q-1-25 6-47q27-14 50-18q1 0 10-3t24-7t24-7q17-4 28-10q3-25 3-28q0-5-2-16q-8 0-19 0q-61 0-104 5q-40 5-133 5q-46 0-130-8q-25-2-39-2q-1 12-1 14l-1 15v5q12 18 44 27q78 21 89 28q5 12 7 31q3 77 3 242l-3 24q0 148-1 155q-1 7-3 9q-3 3-8 3q-21 4-82 4q-28 0-95-8t-73-14q-8-5-13-18t-12-42t-13-47q-4-10-11-18t-12-7q-24 15-31 25v213z m795-722q14-11 14-27t-14-28l-91-70q-14-11-24-6t-11 23v45h-571v-45q0-18-10-23t-25 6l-91 70q-14 11-14 28t14 27l91 70q14 11 25 6t10-23v-45h571v45q0 18 11 23t24-6z" horiz-adv-x="857.1" />
<glyph glyph-name="align-left" unicode="&#xe95d;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-857q-15 0-25 11t-11 25v72q0 14 11 25t25 10h857q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-643q-15 0-25 10t-11 25v72q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-center" unicode="&#xe95e;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m-214 214v-71q0-15-11-25t-25-11h-500q-14 0-25 11t-11 25v71q0 15 11 25t25 11h500q15 0 25-11t11-25z m143 215v-72q0-14-11-25t-25-11h-786q-14 0-25 11t-11 25v72q0 14 11 25t25 10h786q14 0 25-10t11-25z m-215 214v-72q0-14-10-25t-25-10h-358q-14 0-25 10t-10 25v72q0 14 10 25t25 11h358q14 0 25-11t10-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-right" unicode="&#xe95f;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-714q-14 0-25 11t-11 25v71q0 15 11 25t25 11h714q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-857q-14 0-25 11t-11 25v72q0 14 11 25t25 10h857q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-643q-14 0-25 10t-10 25v72q0 14 10 25t25 11h643q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="align-justify" unicode="&#xe960;" d="m1000 100v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 214v-71q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v71q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 215v-72q0-14-11-25t-25-11h-928q-15 0-25 11t-11 25v72q0 14 11 25t25 10h928q15 0 25-10t11-25z m0 214v-72q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25v72q0 14 11 25t25 11h928q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="list" unicode="&#xe8b9;" d="m143 118v-107q0-7-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 12t13 6h107q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 13t13 5h107q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-107q-7 0-13 6t-5 12v107q0 8 5 13t13 5h107q7 0 13-5t5-13z m857-428v-107q0-7-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 12t12 6h750q7 0 13-6t5-12z m-857 643v-107q0-8-5-13t-13-5h-107q-7 0-13 5t-5 13v107q0 7 5 12t13 6h107q7 0 13-6t5-12z m857-429v-107q0-7-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 13t12 5h750q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-750q-7 0-12 6t-6 12v107q0 8 6 13t12 5h750q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-750q-7 0-12 5t-6 13v107q0 7 6 12t12 6h750q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-left" unicode="&#xe8ba;" d="m214 546v-321q0-7-5-13t-13-5q-7 0-12 5l-161 161q-5 5-5 13t5 13l161 160q5 5 12 5q8 0 13-5t5-13z m786-428v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="indent-right" unicode="&#xe8bb;" d="m196 386q0-8-5-13l-160-161q-5-5-13-5q-7 0-13 5t-5 13v321q0 8 5 13t13 5q8 0 13-5l160-160q5-5 5-13z m804-268v-107q0-7-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z m0 214v-107q0-7-5-13t-13-5h-607q-7 0-13 5t-5 13v107q0 7 5 13t13 5h607q7 0 13-5t5-13z m0 214v-107q0-7-5-12t-13-6h-607q-7 0-13 6t-5 12v107q0 8 5 13t13 5h607q7 0 13-5t5-13z m0 215v-107q0-8-5-13t-13-5h-964q-7 0-13 5t-5 13v107q0 7 5 12t13 6h964q7 0 13-6t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="list-bullet" unicode="&#xe8bc;" d="m214 64q0-44-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m0 286q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m786-232v-107q0-7-5-13t-13-5h-678q-8 0-13 5t-5 13v107q0 7 5 12t13 6h678q7 0 13-6t5-12z m-786 518q0-45-31-76t-76-31t-76 31t-31 76t31 76t76 31t76-31t31-76z m786-232v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12v108q0 7 5 12t13 5h678q7 0 13-5t5-12z m0 285v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12v107q0 8 5 13t13 5h678q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="list-numbered" unicode="&#xe8bd;" d="m213-54q0-45-31-70t-75-26q-60 0-96 37l31 49q28-25 60-25q16 0 28 8t12 24q0 35-59 31l-14 31q4 6 18 24t24 31t20 21v1q-9 0-27-1t-27 0v-30h-59v85h186v-49l-53-65q28-6 45-27t17-49z m1 350v-89h-202q-4 20-4 30q0 29 14 52t31 38t37 27t31 24t14 25q0 14-9 22t-22 7q-25 0-45-32l-47 33q13 28 40 44t59 16q40 0 68-23t28-63q0-28-19-51t-42-36t-42-28t-20-30h71v34h59z m786-178v-107q0-8-5-13t-13-5h-678q-8 0-13 5t-5 13v107q0 8 5 13t13 5h678q7 0 13-6t5-12z m-786 502v-56h-187v56h60q0 22 0 68t1 67v7h-1q-5-10-28-30l-40 42l76 71h59v-225h60z m786-216v-108q0-7-5-12t-13-5h-678q-8 0-13 5t-5 12v108q0 7 5 12t13 5h678q7 0 13-5t5-12z m0 285v-107q0-7-5-12t-13-6h-678q-8 0-13 6t-5 12v107q0 8 5 13t13 5h678q7 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="strike" unicode="&#xe8be;" d="m982 350q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-964q-8 0-13 5t-5 12v36q0 8 5 13t13 5h964z m-712 36q-16 19-29 44q-27 54-27 105q0 101 75 173q74 71 219 71q28 0 94-11q36-7 98-27q6-21 12-66q8-68 8-102q0-10-3-25l-7-2l-46 4l-8 1q-28 83-58 114q-49 51-117 51q-64 0-102-33q-37-32-37-81q0-41 37-79t156-72q38-11 96-36q33-16 53-29h-414z m282-143h230q4-22 4-51q0-62-23-119q-13-30-40-58q-20-19-61-45q-44-27-85-37q-45-12-113-12q-64 0-109 13l-78 23q-32 8-40 15q-5 5-5 12v8q0 60-1 87q0 17 0 38l1 20v25l57 1q8-19 17-40t12-31t7-15q20-32 45-52q24-20 59-32q33-12 73-12q36 0 78 15q43 14 68 48q26 34 26 72q0 47-45 87q-19 16-77 40z" horiz-adv-x="1000" />
<glyph glyph-name="underline" unicode="&#xe8bf;" d="m27 726q-21 1-25 2l-2 49q7 0 22 0q34 0 63-2q74-4 92-4q48 0 94 2q65 2 82 3q31 0 48 1l-1-8l1-36v-5q-33-5-69-5q-33 0-44-14q-7-7-7-73q0-8 0-18t0-15l1-128l8-156q3-69 28-112q20-33 54-52q49-26 98-26q58 0 107 16q31 10 55 28q27 20 37 36q20 31 29 63q12 41 12 128q0 44-2 72t-6 68t-8 89l-2 33q-3 37-13 49q-19 20-43 19l-56-1l-8 2l1 48h47l114-6q43-2 110 6l10-2q3-21 3-28q0-4-2-17q-25-7-47-8q-41-6-44-9q-8-9-8-23q0-4 0-15t1-17q5-11 13-221q3-109-9-170q-8-42-23-68q-21-36-62-69q-42-32-102-49q-61-19-142-19q-93 0-159 26q-66 26-99 68q-34 42-47 109q-9 44-9 132v186q0 105-9 119q-14 20-82 21z m830-787v36q0 8-5 13t-13 5h-821q-8 0-13-5t-5-13v-36q0-8 5-13t13-5h821q8 0 13 5t5 13z" horiz-adv-x="857.1" />
<glyph glyph-name="superscript" unicode="&#xe8c0;" d="m501 86v-93h-139l-89 141l-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144v93h71l110 162l-103 152h-76v94h154l77-127q1-2 13-24q4-5 6-11h2q1 5 6 11l14 24l78 127h143v-94h-69l-103-149l114-165h61z m355 379v-115h-287l-1 15q-3 16-3 26q0 35 15 65t36 48t47 37t47 30t36 30t15 36q0 21-17 35t-39 13q-29 0-54-21q-8-7-20-22l-59 52q15 20 35 37q46 36 105 36q61 0 99-33t38-89q0-31-13-57t-35-43t-45-33t-46-28t-37-29t-17-35h130v45h70z" horiz-adv-x="857.1" />
<glyph glyph-name="subscript" unicode="&#xe8c1;" d="m501 86v-93h-139l-89 141l-13 23q-4 5-6 12h-2l-5-12q-5-11-14-25l-86-139h-144v93h71l110 162l-103 152h-76v94h154l77-127q1-2 13-24q4-5 6-11h2q1 5 6 11l14 24l78 127h143v-94h-69l-103-149l114-165h61z m356-121v-115h-287l-2 15q-2 25-2 26q0 35 15 65t36 48t47 37t47 30t36 30t15 36q0 21-17 35t-39 13q-29 0-54-21q-8-6-20-22l-59 52q15 20 35 37q45 36 105 36q62 0 99-33t38-89q0-37-19-66t-47-48t-55-35t-49-35t-23-41h130v45h70z" horiz-adv-x="857.1" />
<glyph glyph-name="table" unicode="&#xe8c2;" d="m286 82v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107q0-8 5-13t13-5h179q8 0 13 5t5 13z m0 214v108q0 7-5 12t-13 5h-179q-7 0-13-5t-5-12v-108q0-7 5-12t13-5h179q8 0 13 5t5 12z m285-214v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h179q7 0 12 5t5 13z m-285 429v107q0 8-5 13t-13 5h-179q-7 0-13-5t-5-13v-107q0-8 5-13t13-5h179q8 0 13 5t5 13z m285-215v108q0 7-5 12t-12 5h-179q-8 0-13-5t-5-12v-108q0-7 5-12t13-5h179q7 0 12 5t5 12z m286-214v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h178q8 0 13 5t5 13z m-286 429v107q0 8-5 13t-12 5h-179q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h179q7 0 12 5t5 13z m286-215v108q0 7-5 12t-13 5h-178q-8 0-13-5t-5-12v-108q0-7 5-12t13-5h178q8 0 13 5t5 12z m0 215v107q0 8-5 13t-13 5h-178q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h178q8 0 13 5t5 13z m72 178v-607q0-37-27-63t-63-26h-750q-36 0-63 26t-26 63v607q0 37 26 63t63 27h750q37 0 63-27t27-63z" horiz-adv-x="928.6" />
<glyph glyph-name="columns" unicode="&#xe8c3;" d="m89-7h340v643h-358v-625q0-8 6-13t12-5z m768 18v625h-357v-643h339q8 0 13 5t5 13z m72 678v-678q0-37-27-63t-63-27h-750q-36 0-63 27t-26 63v678q0 37 26 63t63 27h750q37 0 63-27t27-63z" horiz-adv-x="928.6" />
<glyph glyph-name="crop" unicode="&#xe8c4;" d="m311 136h332v332z m-25 25l332 332h-332v-332z m643-43v-107q0-8-5-13t-13-5h-125v-125q0-8-5-13t-13-5h-107q-8 0-13 5t-5 13v125h-482q-8 0-13 5t-5 13v482h-125q-8 0-13 5t-5 13v107q0 8 5 13t13 5h125v125q0 7 5 12t13 5h107q8 0 13-5t5-12v-125h475l137 138q5 5 13 5t13-5q5-6 5-13t-5-13l-138-137v-475h125q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="scissors" unicode="&#xe8c5;" d="m536 350q14 0 25-11t10-25t-10-25t-25-10t-25 10t-11 25t11 25t25 11z m167-36l283-222q16-11 14-31q-3-20-20-28l-71-36q-7-4-16-4q-10 0-17 4l-385 216l-62-37q-4-2-7-2q8-28 6-54q-4-43-31-83t-74-69q-74-47-154-47q-76 0-124 44q-51 47-44 116q4 42 31 82t73 69q74 47 155 47q46 0 84-18q5 8 13 13l68 40l-68 41q-8 5-13 12q-38-17-84-17q-81 0-155 47q-46 29-73 69t-31 82q-3 33 8 63t36 52q47 44 124 44q80 0 154-47q46-29 74-68t31-83q2-27-6-54q3-1 7-3l62-37l385 216q7 5 17 5q9 0 16-4l71-36q17-9 20-28q2-20-14-32z m-380 145q26 24 12 61t-59 65q-52 33-107 33q-42 0-63-20q-26-24-12-60t59-66q51-33 107-33q41 0 63 20z m-47-415q45 28 59 65t-12 60q-22 20-63 20q-56 0-107-33q-45-28-59-65t12-60q21-20 63-20q55 0 107 33z m99 342l54-33v7q0 20 18 31l8 4l-44 26l-15-14q-1-2-5-6t-7-7q-1-1-2-2t-2-1z m125-125l54-18l410 321l-71 36l-429-240v-64l-89-53l5-5q1-1 4-3q2-2 6-7t6-6l15-15z m393-232l71 35l-290 228l-99-77q-1-2-7-4z" horiz-adv-x="1000" />
<glyph glyph-name="paste" unicode="&#xe8c6;" d="m429-79h500v358h-233q-22 0-38 15t-15 38v232h-214v-643z m142 804v36q0 7-5 12t-12 6h-393q-7 0-13-6t-5-12v-36q0-7 5-13t13-5h393q7 0 12 5t5 13z m143-375h167l-167 167v-167z m286-71v-375q0-23-16-38t-38-16h-535q-23 0-38 16t-16 38v89h-303q-23 0-38 16t-16 37v750q0 23 16 38t38 16h607q22 0 38-16t15-38v-183q12-7 20-15l228-228q16-16 27-42t11-50z" horiz-adv-x="1000" />
<glyph glyph-name="briefcase" unicode="&#xe8c7;" d="m357 707h286v72h-286v-72z m643-357v-268q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v268h375v-89q0-15 11-25t25-11h178q15 0 25 11t11 25v89h375z m-429 0v-71h-142v71h142z m429 268v-215h-1000v215q0 37 26 63t63 26h197v89q0 23 15 38t38 16h322q22 0 38-16t15-38v-89h197q37 0 63-26t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="suitcase" unicode="&#xe8c8;" d="m357 636h286v71h-286v-71z m-196 0v-715h-36q-51 0-88 37t-37 88v465q0 51 37 88t88 37h36z m625 0v-715h-572v715h72v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h72z m214-125v-465q0-51-37-88t-88-37h-36v715h36q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="ellipsis" unicode="&#xe961;" d="m214 439v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-15 38v107q0 23 15 38t38 16h107q23 0 38-16t16-38z m286 0v-107q0-22-16-38t-38-15h-107q-22 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t16-38z" horiz-adv-x="785.7" />
<glyph glyph-name="ellipsis-vert" unicode="&#xe962;" d="m214 154v-108q0-22-15-37t-38-16h-107q-23 0-38 16t-16 37v108q0 22 16 38t38 15h107q22 0 38-15t15-38z m0 285v-107q0-22-15-38t-38-15h-107q-23 0-38 15t-16 38v107q0 23 16 38t38 16h107q22 0 38-16t15-38z m0 286v-107q0-22-15-38t-38-16h-107q-23 0-38 16t-16 38v107q0 22 16 38t38 16h107q22 0 38-16t15-38z" horiz-adv-x="214.3" />
<glyph glyph-name="off" unicode="&#xe963;" d="m857 350q0-87-34-166t-91-137t-137-92t-166-34t-167 34t-136 92t-92 137t-34 166q0 102 45 191t126 151q24 18 54 14t46-28q18-23 14-53t-28-47q-54-41-84-101t-30-127q0-58 22-111t62-91t91-61t111-23t110 23t92 61t61 91t22 111q0 68-30 127t-84 101q-24 18-28 47t14 53q17 24 47 28t53-14q81-61 126-151t45-191z m-357 429v-358q0-29-21-50t-50-21t-51 21t-21 50v358q0 29 21 50t51 21t50-21t21-50z" horiz-adv-x="857.1" />
<glyph glyph-name="road" unicode="&#xe964;" d="m620 294v2l-13 179q-1 7-7 13t-12 5h-104q-7 0-13-5t-6-13l-14-179v-2q0-6 5-11t12-4h136q7 0 12 4t4 11z m424-260q0-41-26-41h-393q7 0 12 5t5 13l-11 143q-1 7-7 12t-12 5h-152q-7 0-13-5t-6-12l-11-143q-1-8 4-13t12-5h-392q-26 0-26 41q0 30 14 64l233 583q5 11 15 18t21 8h189q-7 0-13-5t-6-13l-8-107q-1-8 4-13t12-5h93q7 0 12 5t5 13l-9 107q0 7-6 13t-13 5h190q11 0 21-8t14-18l233-583q15-34 15-64z" horiz-adv-x="1071.4" />
<glyph glyph-name="list-alt" unicode="&#xe8c9;" d="m214 189v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-35q-7 0-13 5t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m643-286v-35q0-8-5-13t-13-5h-535q-8 0-13 5t-5 13v35q0 8 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-535q-8 0-13 5t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-535q-8 0-13 6t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m72-393v464q0 8-6 13t-12 5h-822q-7 0-12-5t-6-13v-464q0-7 6-12t12-6h822q7 0 12 6t6 12z m71 607v-607q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v607q0 37 26 63t63 27h822q37 0 63-27t26-63z" horiz-adv-x="1000" />
<glyph glyph-name="qrcode" unicode="&#xe8ca;" d="m214 207v-71h-71v71h71z m0 429v-72h-71v72h71z m429 0v-72h-72v72h72z m-572-571h215v214h-215v-214z m0 428h215v214h-215v-214z m429 0h214v214h-214v-214z m-143-143v-357h-357v357h357z m286-286v-71h-72v71h72z m143 0v-71h-72v71h72z m0 286v-214h-215v71h-71v-214h-71v357h214v-71h71v71h72z m-429 429v-358h-357v358h357z m429 0v-358h-357v358h357z" horiz-adv-x="785.7" />
<glyph glyph-name="barcode" unicode="&#xe8cb;" d="m35-7h-35v786h35v-786z m35 0h-17v786h17v-786z m53 0h-17v786h17v-786z m87 0h-17v786h17v-786z m88 0h-35v786h35v-786z m70 0h-17v786h17v-786z m35 0h-17v786h17v-786z m36 0h-18v786h18v-786z m87 0h-35v786h35v-786z m88 0h-35v786h35v-786z m70 0h-35v786h35v-786z m70 0h-35v786h35v-786z m53 0h-35v786h35v-786z m105 0h-52v786h52v-786z m36 0h-18v786h18v-786z m52 0h-35v786h35v-786z" horiz-adv-x="1000" />
<glyph glyph-name="book" unicode="&#xe8cc;" d="m915 583q22-32 10-72l-154-505q-10-36-42-60t-69-25h-515q-43 0-83 30t-55 74q-14 37-1 71q0 2 1 15t3 20q0 5-2 12t-2 11q1 6 5 12t9 13t9 13q13 21 25 51t17 51q2 6 0 17t0 16q2 6 9 15t10 13q12 20 23 51t14 51q1 5-1 17t0 16q2 7 12 17t13 13q10 14 23 47t16 54q0 4-2 14t-1 15q1 4 5 10t10 13t10 11q4 7 9 17t8 20t9 20t11 18t15 13t20 6t26-3l0-1q21 5 28 5h425q41 0 63-32t10-72l-152-506q-20-66-40-85t-72-20h-485q-15 0-21-8q-6-9-1-24q14-39 81-39h515q16 0 31 9t19 23l168 550q4 13 3 32q21-8 33-24z m-594-1q-2-7 1-12t11-6h339q8 0 15 6t9 12l12 36q2 7-2 12t-11 6h-339q-7 0-14-6t-9-12z m-46-143q-3-7 1-12t11-6h339q7 0 14 6t10 12l11 36q3 7-1 13t-11 5h-339q-8 0-14-5t-10-13z" horiz-adv-x="928.6" />
<glyph glyph-name="ajust" unicode="&#xe8cd;" d="m429 46v608q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41z m428 304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="tint" unicode="&#xe8ce;" d="m286 207q0 20-11 39q-1 0-9 12t-14 21t-14 25t-12 28q-2 9-12 9t-11-9q-4-13-12-28t-14-25t-14-21t-9-12q-11-19-11-39q0-29 21-50t50-21t51 21t21 50z m285 72q0-119-83-202t-202-84t-202 84t-84 202q0 81 45 153q4 5 35 51t56 84t56 99t46 112q5 17 19 27t29 9t28-9t19-27q16-51 46-112t56-99t56-85t35-50q45-71 45-154z" horiz-adv-x="571.4" />
<glyph glyph-name="check" unicode="&#xe8cf;" d="m786 331v-177q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q35 0 65-14q9-4 10-13q2-10-5-16l-27-28q-6-5-13-5q-2 0-5 1q-13 3-25 3h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v141q0 8 5 13l36 35q6 6 13 6q3 0 7-2q11-4 11-16z m129 273l-455-454q-13-14-31-14t-32 14l-240 240q-14 13-14 31t14 32l61 62q14 13 32 13t32-13l147-147l361 361q13 13 31 13t32-13l62-61q13-14 13-32t-13-32z" horiz-adv-x="928.6" />
<glyph glyph-name="check-empty" unicode="&#xe8d0;" d="m625 707h-464q-37 0-63-26t-27-63v-464q0-37 27-63t63-27h464q37 0 63 27t26 63v464q0 37-26 63t-63 26z m161-89v-464q0-67-47-114t-114-47h-464q-67 0-114 47t-47 114v464q0 66 47 113t114 48h464q66 0 114-48t47-113z" horiz-adv-x="785.7" />
<glyph glyph-name="circle" unicode="&#xe8d1;" d="m857 350q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="circle-empty" unicode="&#xe8d2;" d="m429 654q-83 0-153-41t-110-111t-41-152t41-152t110-111t153-41t152 41t110 111t41 152t-41 152t-110 111t-152 41z m428-304q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="asterisk" unicode="&#xe8d3;" d="m827 264q26-14 33-43t-7-55l-35-61q-15-26-44-33t-54 7l-149 85v-171q0-29-21-50t-50-22h-71q-29 0-51 22t-21 50v171l-148-85q-26-15-55-7t-43 33l-36 61q-14 26-7 55t34 43l148 86l-148 86q-26 14-34 43t7 55l36 61q15 26 43 33t55-7l148-85v171q0 29 21 50t51 22h71q29 0 50-22t21-50v-171l149 85q26 15 54 7t44-33l35-62q15-25 7-54t-33-43l-148-86z" horiz-adv-x="928.6" />
<glyph glyph-name="gift" unicode="&#xe8d4;" d="m518 93v400h-179v-400q0-14 10-21t26-8h107q16 0 26 8t10 21z m-255 471h109l-70 90q-15 17-39 17q-22 0-38-15t-15-38t15-38t38-16z m384 54q0 22-15 38t-38 15q-24 0-39-17l-69-90h108q22 0 38 16t15 38z m210-143v-179q0-7-5-12t-13-5h-53v-233q0-22-16-37t-38-16h-607q-22 0-38 16t-16 37v233h-53q-8 0-13 5t-5 12v179q0 8 5 13t13 5h245q-51 0-88 36t-37 89t37 88t88 37q60 0 94-43l72-92l71 92q34 43 94 43q52 0 88-37t37-88t-37-89t-88-36h245q8 0 13-5t5-13z" horiz-adv-x="857.1" />
<glyph glyph-name="fire" unicode="&#xe8d5;" d="m786-96v-36q0-7-6-13t-12-5h-750q-7 0-13 5t-5 13v36q0 7 5 12t13 5h750q7 0 12-5t6-12z m-143 589q0-44-14-80t-36-63t-48-49t-54-44t-49-40t-35-45t-14-54q0-54 37-125l-2 0l1 0q-51 23-90 46t-77 56t-63 68t-41 84t-15 103q0 44 14 80t35 63t49 49t54 43t48 41t36 45t14 54q0 52-37 125l2-1l-1 1q50-23 89-46t78-56t63-68t41-84t15-103z" horiz-adv-x="785.7" />
<glyph glyph-name="magnet" unicode="&#xe8d6;" d="m857 386v-72q0-112-55-202t-153-140t-220-51t-221 51t-153 140t-55 202v72q0 14 11 25t25 10h214q15 0 25-10t11-25v-72q0-29 13-50t30-32t39-16t36-8t25-1t24 1t36 8t39 16t30 32t13 50v72q0 14 11 25t25 10h214q15 0 26-10t10-25z m-571 357v-214q0-15-11-26t-25-10h-214q-15 0-25 10t-11 26v214q0 14 11 25t25 11h214q15 0 25-11t11-25z m571 0v-214q0-15-10-26t-26-10h-214q-14 0-25 10t-11 26v214q0 14 11 25t25 11h214q15 0 26-11t10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="ticket" unicode="&#xe8d8;" d="m571 598l177-177l-319-319l-177 177z m-117-547l345 345q10 11 10 25t-10 26l-202 202q-10 10-26 10t-25-10l-345-345q-10-11-10-25t10-26l202-202q11-10 26-10t25 10z m496 356l-506-507q-21-20-51-20t-50 20l-71 70q32 32 32 76t-32 76t-76 32t-75-32l-70 71q-21 20-21 50t21 51l506 505q21 21 50 21t51-21l70-70q-32-31-32-75t32-76t76-32t75 32l71-70q20-21 20-51t-20-50z" horiz-adv-x="1000" />
<glyph glyph-name="credit-card" unicode="&#xe965;" d="m982 779q37 0 63-27t26-63v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 26h893z m-893-72q-7 0-12-5t-6-13v-125h929v125q0 8-5 13t-13 5h-893z m893-714q7 0 13 5t5 13v339h-929v-339q0-8 6-13t12-5h893z m-839 71v72h143v-72h-143z m214 0v72h214v-72h-214z" horiz-adv-x="1071.4" />
<glyph glyph-name="floppy" unicode="&#xe966;" d="m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z" horiz-adv-x="857.1" />
<glyph glyph-name="megaphone" unicode="&#xe967;" d="m929 493q29 0 50-21t21-51t-21-50t-50-21v-214q0-29-22-50t-50-22q-233 194-453 212q-32-10-51-36t-17-57t22-51q-11-19-13-37t4-32t18-31t27-28t35-28q-17-32-63-46t-94-7t-73 31q-4 13-17 49t-18 53t-12 50t-9 56t2 55t12 62h-68q-36 0-63 26t-26 63v107q0 37 26 63t63 26h268q243 0 500 215q29 0 50-22t22-50v-214z m-72-337v532q-220-168-428-191v-151q210-23 428-190z" horiz-adv-x="1000" />
<glyph glyph-name="key" unicode="&#xe8d9;" d="m464 564q0 45-31 76t-76 31t-76-31t-31-76q0-23 11-46q-23 11-47 11q-44 0-76-32t-31-76t31-75t76-32t76 32t31 75q0 24-10 47q23-11 46-11q45 0 76 31t31 76z m475-393q0-9-27-36t-37-28q-5 0-16 9t-20 19t-22 22t-13 14l-54-53l123-123q15-15 15-38q0-23-21-45t-46-22q-22 0-38 16l-374 374q-98-73-204-73q-91 0-148 57t-57 149q0 89 53 174t138 139t175 53q91 0 148-58t57-148q0-105-73-203l198-199l54 54q-2 2-15 14t-22 21t-18 21t-9 15q0 10 27 37t37 28q7 0 13-6q3-3 26-25t45-44t49-48t40-44t16-23z" horiz-adv-x="1000" />
<glyph glyph-name="fork" unicode="&#xe8da;" d="m161 29q0 22-16 38t-38 15t-38-15t-15-38t15-38t38-16t38 16t16 38z m0 642q0 23-16 38t-38 16t-38-16t-15-38t15-38t38-15t38 15t16 38z m357-71q0 22-16 38t-38 16t-38-16t-15-38t15-38t38-16t38 16t16 38z m53 0q0-29-14-54t-39-39q-1-160-126-231q-38-21-114-45q-71-22-94-39t-23-56v-15q24-14 39-39t14-53q0-45-31-76t-76-32t-76 32t-31 76q0 29 15 53t39 39v458q-25 14-39 39t-15 53q0 45 31 76t76 32t76-32t31-76q0-29-14-53t-39-39v-278q30 15 86 32q30 10 49 17t39 17t33 22t22 29t16 38t5 51q-25 14-39 39t-15 54q0 45 31 76t76 31t76-31t31-76z" horiz-adv-x="571.4" />
<glyph glyph-name="rocket" unicode="&#xe8db;" d="m804 600q0 22-16 38t-38 16t-38-16t-16-38t16-38t38-16t38 16t16 38z m125 161q0-139-43-241t-141-201q-45-44-109-98l-11-211q-1-9-9-15l-214-125q-4-2-9-2q-7 0-13 5l-36 36q-7 7-4 17l47 155l-156 156l-155-47q-1-1-5-1q-7 0-12 5l-36 36q-10 11-3 22l125 214q6 8 15 9l211 11q54 64 98 109q105 104 200 144t241 40q7 0 13-6t6-12z" horiz-adv-x="928.6" />
<glyph glyph-name="bug" unicode="&#xe8dc;" d="m911 314q0-14-11-25t-25-10h-125q0-96-37-162l116-117q10-11 10-25t-10-25q-10-11-25-11t-26 11l-110 110q-3-3-8-7t-24-16t-36-21t-46-16t-54-7v500h-71v-500q-29 0-57 7t-49 19t-36 22t-25 18l-8 8l-102-116q-11-12-27-12q-13 0-24 9q-11 10-11 25t8 26l113 127q-32 63-32 153h-125q-15 0-25 10t-11 25t11 25t25 11h125v164l-97 97q-11 10-11 25t11 25t25 10t25-10l97-97h471l96 97q11 10 25 10t26-10t10-25t-10-25l-97-97v-164h125q15 0 25-11t11-25z m-268 322h-357q0 74 52 126t126 52t127-52t52-126z" horiz-adv-x="928.6" />
<glyph glyph-name="certificate" unicode="&#xe8dd;" d="m768 350l77-75q17-16 11-39q-7-23-29-29l-105-27l30-103q6-23-11-39q-16-18-39-11l-104 30l-27-105q-5-23-28-30q-7-1-11-1q-17 0-28 13l-75 77l-76-77q-15-17-39-12q-23 7-28 30l-27 105l-104-30q-23-7-39 11q-17 16-10 39l29 103l-105 27q-22 6-29 29q-6 23 11 39l77 75l-77 75q-17 16-11 39q7 23 29 29l105 27l-29 103q-7 23 10 39q16 18 39 11l104-29l27 104q5 23 28 29q23 7 39-11l76-77l75 77q16 17 39 11q23-6 28-29l27-104l104 29q23 7 39-11q17-16 11-39l-30-103l105-27q22-6 29-29q6-23-11-39z" horiz-adv-x="857.1" />
<glyph glyph-name="tasks" unicode="&#xe8de;" d="m571 64h358v72h-358v-72z m-214 286h572v71h-572v-71z m357 286h215v71h-215v-71z m286-465v-142q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v142q0 15 11 26t25 10h928q15 0 25-10t11-26z m0 286v-143q0-14-11-25t-25-10h-928q-15 0-25 10t-11 25v143q0 15 11 25t25 11h928q15 0 25-11t11-25z m0 286v-143q0-15-11-25t-25-11h-928q-15 0-25 11t-11 25v143q0 14 11 25t25 11h928q15 0 25-11t11-25z" horiz-adv-x="1000" />
<glyph glyph-name="filter" unicode="&#xe8df;" d="m783 685q9-23-8-39l-275-275v-414q0-23-22-33q-7-3-14-3q-15 0-25 11l-143 143q-10 10-10 25v271l-275 275q-18 16-8 39q9 22 33 22h714q23 0 33-22z" horiz-adv-x="785.7" />
<glyph glyph-name="beaker" unicode="&#xe8e0;" d="m852 42q31-50 12-85t-78-36h-643q-59 0-79 36t12 85l281 442v223h-36q-14 0-25 11t-10 25t10 25t25 11h286q15 0 25-11t11-25t-11-25t-25-11h-36v-223z m-435 405l-151-240h397l-152 240l-11 17v243h-71v-243z" horiz-adv-x="928.6" />
<glyph glyph-name="magic" unicode="&#xe8e1;" d="m664 526l164 163l-60 60l-164-164z m249 163q0-15-10-25l-717-718q-10-10-25-10t-25 10l-111 111q-10 10-10 25t10 25l718 718q10 10 25 10t25-10l110-111q10-10 10-25z m-753 106l54-16l-54-17l-17-55l-17 55l-55 17l55 16l17 55z m195-90l109-34l-109-33l-34-109l-33 109l-109 33l109 34l33 109z m519-267l55-17l-55-16l-17-55l-17 55l-54 16l54 17l17 55z m-357 357l54-16l-54-17l-17-55l-17 55l-54 17l54 16l17 55z" horiz-adv-x="928.6" />
<glyph glyph-name="truck" unicode="&#xe8e2;" d="m357 64q0 29-21 51t-50 21t-50-21t-22-51t22-50t50-21t50 21t21 50z m-214 286h214v143h-88q-7 0-12-5l-109-109q-5-5-5-12v-17z m714-286q0 29-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m143 607v-571q0-8-2-15t-8-10t-9-6t-13-4t-13-1t-14 0t-12 0q0-59-42-101t-101-42t-101 42t-42 101h-214q0-59-42-101t-101-42t-101 42t-42 101h-36q-1 0-12 0t-15 0t-12 1t-13 4t-9 6t-8 10t-2 15q0 15 10 25t25 11v178q0 5 0 20t0 21t2 19t3 21t8 17t13 17l110 110q11 11 28 18t33 7h89v107q0 15 11 26t25 10h571q15 0 25-10t11-26z" horiz-adv-x="1000" />
<glyph glyph-name="money" unicode="&#xe8e3;" d="m429 207h214v54h-72v250h-63l-83-77l43-44q24 20 31 31h1v-160h-71v-54z m285 143q0-39-11-79t-34-75t-56-56t-77-22t-77 22t-57 56t-33 75t-12 79t12 79t33 75t57 56t77 22t77-22t56-56t34-75t11-79z m286-143v286q-59 0-101 42t-42 101h-643q0-59-42-101t-101-42v-286q60 0 101-42t42-101h643q0 59 42 101t101 42z m71 464v-642q0-15-10-26t-25-10h-1000q-15 0-25 10t-11 26v642q0 15 11 26t25 10h1000q14 0 25-10t10-26z" horiz-adv-x="1071.4" />
<glyph glyph-name="euro" unicode="&#xe8e4;" d="m545 121l19-89q2-7-1-13t-10-8l-3 0q-2-1-6-2t-9-3t-12-3t-14-3t-17-2t-18-3t-21-2t-21 0q-131 0-228 73t-133 196h-53q-7 0-13 5t-5 13v63q0 7 5 12t13 6h37q-1 31 0 58h-37q-8 0-13 5t-5 13v64q0 7 5 13t13 5h55q37 117 135 188t224 72q57 0 108-13q6-2 11-9q4-6 2-13l-24-89q-2-7-8-11t-13-1l-2 1q-3 0-7 1l-10 2t-12 2t-15 2t-16 1t-16 0q-71 0-126-35t-84-98h261q9 0 14-7q6-7 4-15l-13-63q-3-15-18-15h-273q-1-20 0-58h256q9 0 14-7q5-7 4-15l-14-63q-1-6-6-10t-11-4h-216q27-65 84-104t127-38q10 0 20 1t19 2t16 2t14 3t10 3l7 1l3 2q7 2 14-2q7-4 9-11z" horiz-adv-x="571.4" />
<glyph glyph-name="pound" unicode="&#xe8e5;" d="m569 216v-205q0-8-5-13t-13-5h-533q-8 0-13 5t-5 13v83q0 8 5 13t13 5h54v214h-53q-8 0-13 5t-5 13v73q0 8 5 13t13 5h53v124q0 96 69 158t175 62q104 0 187-70q5-5 6-12t-4-12l-57-71q-5-6-13-7q-7-1-13 4q-2 3-14 11t-39 18t-51 10q-48 0-77-27t-29-68v-120h170q8 0 13-5t5-13v-73q0-7-5-13t-13-5h-170v-212h231v101q0 8 5 13t13 5h90q8 0 13-5t5-13z" horiz-adv-x="571.4" />
<glyph glyph-name="dollar" unicode="&#xe8e6;" d="m546 189q0-86-56-147t-144-77v-97q0-8-5-13t-13-5h-75q-7 0-13 5t-5 13v97q-37 5-71 18t-57 25t-41 26t-26 21t-10 10q-9 12-1 23l58 76q3 5 12 6q9 1 14-5l1-1q63-55 135-70q21-4 42-4q45 0 79 24t35 68q0 16-9 30t-18 23t-33 21t-37 18t-45 18q-21 9-34 14t-34 15t-35 17t-32 20t-29 24t-25 27t-20 32t-11 37t-5 44q0 77 55 135t142 75v100q0 7 5 13t13 5h75q8 0 13-5t5-13v-98q32-4 62-13t48-19t36-21t21-16t9-8q9-10 3-21l-46-81q-4-9-12-9q-8-2-16 4q-1 1-8 6t-21 15t-33 18t-42 15t-47 6q-53 0-87-24t-33-62q0-14 4-27t17-23t22-18t31-18t34-15t39-15q30-11 45-18t43-19t42-24t34-28t30-35t18-43t7-52z" horiz-adv-x="571.4" />
<glyph glyph-name="rupee" unicode="&#xe8e7;" d="m501 588v-57q0-8-5-13t-13-5h-93q-13-80-72-131t-154-61q93-99 256-299q7-9 2-19q-5-10-16-10h-109q-9 0-14 7q-171 204-278 318q-5 5-5 12v71q0 8 5 13t13 5h62q74 0 119 24t57 70h-238q-8 0-13 5t-5 13v57q0 8 5 13t13 5h230q-31 63-149 63h-81q-7 0-13 5t-5 12v75q0 8 5 13t13 5h464q8 0 13-5t5-13v-57q0-8-5-13t-13-5h-130q26-34 36-80h95q8 0 13-5t5-13z" horiz-adv-x="501.1" />
<glyph glyph-name="yen" unicode="&#xe8e8;" d="m337-7h-96q-8 0-13 5t-5 13v184h-161q-7 0-13 5t-5 13v57q0 7 5 13t13 5h161v48h-161q-7 0-13 5t-5 12v58q0 8 5 13t13 5h119l-179 323q-4 9 0 18q6 9 16 9h108q11 0 16-10l120-238q11-21 32-69q5 13 17 37t15 35l107 234q4 11 16 11h106q10 0 15-9q5-8 1-18l-175-323h120q7 0 13-5t5-13v-58q0-7-5-12t-13-5h-162v-48h162q7 0 13-5t5-13v-57q0-8-5-13t-13-5h-162v-184q0-8-5-13t-12-5z" horiz-adv-x="573.1" />
<glyph glyph-name="renminbi" unicode="&#xe8e9;" d="m582 535q0 56-36 90t-96 35h-178v-250h178q60 0 96 34t36 91z m132 0q0-108-70-176t-182-68h-190v-66h282q7 0 12-5t5-13v-71q0-8-5-13t-12-5h-282v-107q0-8-6-13t-12-5h-93q-8 0-13 5t-5 13v107h-125q-8 0-13 5t-5 13v71q0 8 5 13t13 5h125v66h-125q-8 0-13 5t-5 13v83q0 7 5 12t13 6h125v351q0 8 5 13t13 5h301q111 0 182-69t70-175z" horiz-adv-x="714.3" />
<glyph glyph-name="won" unicode="&#xe8ea;" d="m287 183l45 167h-89l42-167q1-1 1-2t0-2q0 1 1 2t0 2z m65 238l19 72h-163l18-72h126z m107 0h77l-19 72h-39z m250-238l44 167h-91l46-167q0 0 0-2t1-2q0 1 0 2t0 2z m62 238l19 72h-166l19-72h128z m229-17v-36q0-8-5-13t-13-5h-119l-91-344q-4-13-18-13h-88q-14 0-18 13l-92 344h-117l-93-344q-4-13-17-13h-89q-6 0-11 4t-6 9l-89 344h-116q-8 0-13 5t-5 13v36q0 7 5 12t13 5h98l-19 72h-79q-8 0-13 5t-5 13v35q0 8 5 13t13 5h61l-50 192q-3 9 3 16q5 7 14 7h77q14 0 17-14l50-201h201l54 201q4 14 17 14h70q14 0 18-14l54-201h204l52 201q3 14 17 14h77q9 0 14-7q6-7 3-16l-51-192h62q8 0 13-5t5-13v-35q0-8-5-13t-13-5h-81l-19-72h100q8 0 13-5t5-12z" horiz-adv-x="1000" />
<glyph glyph-name="bitcoin" unicode="&#xe8eb;" d="m651 493q10-102-73-144q65-16 98-58t25-119q-4-40-18-70t-36-49t-54-33t-68-19t-81-9v-142h-86v140q-45 0-68 1v-141h-86v142q-10 0-30 1t-31 0h-112l18 102h62q27 0 32 28v225h9q-4 0-9 0v160q-7 38-50 38h-62v92l119-1q35 0 54 1v141h86v-138q45 1 68 1v137h86v-141q44-4 78-13t63-25t46-43t20-64z m-120-304q0 20-8 35t-21 26t-32 17t-36 10t-42 5t-38 2t-36 0t-27-1v-189q5 0 21 0t27 0t29 1t33 2t32 5t31 8t26 11t22 17t14 22t5 29z m-39 265q0 19-7 33t-17 23t-27 16t-31 9t-34 5t-33 1t-30 0t-22-1v-171q3 0 20 0t26 0t27 1t31 3t29 6t27 10t21 15t15 22t5 28z" horiz-adv-x="714.3" />
<glyph glyph-name="sort" unicode="&#xe8ec;" d="m571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25t25 11h500q14 0 25-11t10-25z m0 214q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25t11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-down" unicode="&#xe8ed;" d="m571 243q0-15-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 10-11 25t11 25t25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-up" unicode="&#xe8ee;" d="m571 457q0-14-10-25t-25-11h-500q-15 0-25 11t-11 25t11 25l250 250q10 11 25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="571.4" />
<glyph glyph-name="sort-alt-up" unicode="&#xe8ef;" d="m411 46q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m589-71v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m-107 285v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m-107 286v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-alt-down" unicode="&#xe8f0;" d="m679-25v-107q0-8-5-13t-13-5h-143q-8 0-13 5t-5 13v107q0 8 5 13t13 5h143q8 0 13-5t5-13z m-268 71q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m375 215v-107q0-8-5-13t-13-5h-250q-8 0-13 5t-5 13v107q0 8 5 13t13 5h250q8 0 13-5t5-13z m107 285v-107q0-8-5-13t-13-5h-357q-8 0-13 5t-5 13v107q0 8 5 13t13 5h357q8 0 13-5t5-13z m107 286v-107q0-8-5-13t-13-5h-464q-8 0-13 5t-5 13v107q0 8 5 13t13 5h464q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="sort-name-up" unicode="&#xe8f1;" d="m665 622h98l-40 122l-6 26q-2 9-2 11h-2l-2-11q0 0-1-10t-5-16z m-254-576q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m466-66v-130h-326v50l206 295q7 10 12 16l6 5v1q-1 0-4 0t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-296q-4-4-12-14l-6-7v-1l8 1q5 2 16 2h139v66h67z m50 501v-60h-161v60h42l-26 80h-136l-26-80h42v-60h-160v60h39l128 369h90l129-369h39z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-name-down" unicode="&#xe8f2;" d="m665 51h98l-40 122l-6 26q-2 9-2 11h-2l-2-11q0-1-1-10t-5-16z m-254-5q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m516-137v-59h-161v59h42l-26 80h-136l-26-80h42v-59h-160v59h39l128 370h90l129-370h39z m-50 642v-130h-326v51l206 295q7 10 12 15l6 5v2q-1 0-4-1t-4 0q-6-2-16-2h-130v-64h-67v128h317v-50l-206-295q-4-5-12-15l-6-6v-1l8 1q5 1 16 1h139v66h67z" horiz-adv-x="928.6" />
<glyph glyph-name="sort-number-up" unicode="&#xe8f3;" d="m751 117q0 35-24 65t-58 30q-29 0-46-21t-18-52t21-53t58-22q28 0 48 15t19 38z m-340-71q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m418 39q0-35-7-68t-23-64t-38-53t-55-36t-71-14q-35 0-60 9q-14 4-24 8l22 63q8-4 17-6q21-7 42-7q47 0 75 33t37 81h-1q-11-13-34-21t-47-8q-59 0-97 40t-37 97q0 58 40 99t101 41q69 0 114-53t46-141z m-17 400v-64h-261v64h93v241q0 4 0 11t1 9v9h-2l-3-7q-5-7-15-17l-35-32l-45 48l107 103h68v-365h92z" horiz-adv-x="857.1" />
<glyph glyph-name="sort-number-down" unicode="&#xe8f4;" d="m751 689q0 35-24 64t-58 30q-29 0-46-21t-18-52t21-53t58-21q28 0 48 15t19 38z m-340-643q0-6-6-13l-178-178q-5-5-13-5q-6 0-13 5l-178 179q-8 9-4 19q4 11 17 11h107v768q0 8 5 13t13 5h107q8 0 13-5t5-13v-768h107q8 0 13-5t5-13z m401-132v-64h-261v64h93v241q0 4 0 10t1 10v9h-2l-3-7q-5-7-15-17l-35-33l-45 48l107 104h68v-365h92z m17 742q0-34-7-67t-23-64t-38-53t-55-37t-71-14q-35 0-60 9q-14 5-24 9l22 63q8-4 17-6q21-8 42-8q47 0 75 33t37 81h-1q-11-13-34-20t-47-8q-59 0-97 40t-37 96q0 59 40 99t101 41q69 0 114-53t46-141z" horiz-adv-x="857.1" />
<glyph glyph-name="hammer" unicode="&#xe8f5;" d="m988-7q0-30-20-50l-60-61q-22-20-51-20q-29 0-50 20l-203 204q-21 20-21 50q0 29 24 53l-143 143l-70-70q-8-8-19-8t-19 8q1-1 7-7t7-7t6-7t5-7t4-8t3-9t0-10q0-21-15-38q-2-1-9-10t-11-11t-10-9t-13-9t-12-5t-14-3q-23 0-38 16l-228 228q-16 15-16 38q0 7 3 14t5 12t9 13t9 10t11 11t10 9q17 15 38 15q6 0 10 0t9-4t8-3t8-5t6-6t7-7t7-7q-8 8-8 19t8 19l194 194q8 8 19 8t19-8q-1 1-7 7t-7 7t-6 7t-5 7t-3 8t-4 9t0 10q0 21 15 38q2 1 9 10t11 11t10 9t13 9t12 5t14 3q23 0 38-16l228-228q16-15 16-38q0-7-3-14t-5-12t-8-13t-10-10t-11-11t-10-9q-17-15-38-15q-6 0-10 0t-9 4t-8 3t-7 5t-7 6t-7 7t-7 7q8-8 8-19t-8-19l-70-70l143-143q24 24 53 24q29 0 51-21l203-202q20-22 20-51z" horiz-adv-x="1000" />
<glyph glyph-name="gauge" unicode="&#xe8f6;" d="m214 207q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m107 250q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m239-268l57 213q3 14-5 27t-21 16t-27-3t-17-22l-56-213q-33-3-60-25t-35-55q-11-43 11-81t66-50t81 11t50 66q9 33-4 65t-40 51z m369 18q0 30-21 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t21 50z m-358 357q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m250-107q0 30-20 51t-51 21t-50-21t-21-51t21-50t50-21t51 21t20 50z m179-250q0-145-79-269q-10-17-30-17h-782q-20 0-30 17q-79 123-79 269q0 102 40 194t106 160t160 107t194 39t194-39t160-107t106-160t40-194z" horiz-adv-x="1000" />
<glyph glyph-name="sitemap" unicode="&#xe8f7;" d="m1000 154v-179q0-22-16-38t-38-16h-178q-22 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q23 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v179q0 22 16 38t38 15h53v107h-285v-107h53q22 0 38-15t16-38v-179q0-22-16-38t-38-16h-178q-23 0-38 16t-16 38v179q0 22 16 38t38 15h53v107q0 29 21 51t51 21h285v107h-53q-23 0-38 15t-16 38v179q0 22 16 38t38 16h178q23 0 38-16t16-38v-179q0-22-16-38t-38-15h-53v-107h285q29 0 51-21t21-51v-107h53q23 0 38-15t16-38z" horiz-adv-x="1000" />
<glyph glyph-name="spinner" unicode="&#xe8f8;" d="m277 100q0-33-24-57t-57-23q-33 0-56 23t-24 57t24 57t56 23q33 0 57-23t24-57z m241-107q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m-339 357q0-37-27-63t-63-26t-63 26t-26 63t26 63t63 26t63-26t27-63z m580-250q0-26-18-44t-45-18t-44 18t-18 44t18 44t44 19t45-19t18-44z m-464 500q0-41-29-69t-70-29t-69 29t-29 69t29 69t69 29t70-29t29-69z m259 107q0-45-32-76t-76-31t-75 31t-32 76t32 76t75 31t76-31t32-76z m303-357q0-22-15-38t-38-16t-38 16t-16 38t16 38t38 16t38-16t15-38z m-116 250q0-18-13-32t-32-13t-31 13t-13 32t13 31t31 14t32-14t13-31z" horiz-adv-x="875" />
<glyph glyph-name="coffee" unicode="&#xe8f9;" d="m929 493q0 45-32 76t-76 31h-35v-214h35q45 0 76 31t32 76z m-929-429h1000q0-59-42-101t-101-42h-714q-59 0-101 42t-42 101z m1036 429q0-89-63-152t-152-62h-35v-18q0-52-37-88t-88-37h-393q-51 0-88 37t-37 88v410q0 15 11 26t25 10h642q89 0 152-63t63-151z" horiz-adv-x="1071.4" />
<glyph glyph-name="food" unicode="&#xe8fa;" d="m357 814v-357q0-34-20-62t-51-39v-435q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v435q-31 11-51 39t-20 62v357q0 15 11 25t25 11t25-11t10-25v-232q0-14 11-25t25-11t25 11t11 25v232q0 15 10 25t26 11t25-11t10-25v-232q0-14 11-25t25-11t25 11t11 25v232q0 15 10 25t25 11t26-11t10-25z m429 0v-893q0-29-21-50t-51-21h-71q-29 0-50 21t-22 50v286h-125q-7 0-12 5t-5 13v446q0 74 52 127t126 52h143q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="beer" unicode="&#xe8fb;" d="m357 350v214h-143v-143q0-29 21-50t51-21h71z m572-250v-107h-643v107l71 107h-71q-89 0-152 63t-63 151v179l-35 36l18 71h267l18 72h536l18-108l-36-17v-447z" horiz-adv-x="928.6" />
<glyph glyph-name="user-md" unicode="&#xe8fc;" d="m214 100q0-14-10-25t-25-11t-26 11t-10 25t10 25t26 11t25-11t10-25z m572-34q0-68-41-106t-108-39h-488q-67 0-108 39t-41 106q0 38 3 73t14 77t26 74t45 58t67 33q-12-29-12-67v-113q-32-11-52-39t-20-62q0-45 32-76t76-31t75 31t32 76q0 34-20 62t-52 39v113q0 35 14 52q74-58 165-58t164 58q14-17 14-52v-35q-59 0-101-42t-41-101v-50q-18-16-18-40q0-22 15-37t38-16t38 16t16 37q0 24-18 40v50q0 29 21 50t50 21t51-21t21-50v-50q-18-16-18-40q0-22 16-37t38-16t38 16t15 37q0 24-18 40v50q0 38-19 71t-52 52q0 6 0 24t0 27t-1 23t-4 26t-7 22q38-8 67-33t45-58t26-74t14-77t3-73z m-179 498q0-88-63-151t-151-63t-152 63t-62 151t62 152t152 63t151-63t63-152z" horiz-adv-x="785.7" />
<glyph glyph-name="stethoscope" unicode="&#xe8fd;" d="m714 457q0 15-10 25t-25 11t-26-11t-10-25t10-25t26-11t25 11t10 25z m72 0q0-34-20-62t-52-39v-220q0-89-73-152t-177-63t-176 63t-74 152v73q-91 12-153 72t-61 140v286q0 15 11 25t25 11q3 0 9-1q9 16 26 27t36 10q30 0 51-21t21-51t-21-50t-51-21q-18 0-36 10v-225q0-59 53-101t126-41t126 41t53 101v225q-18-10-36-10q-30 0-51 21t-21 50t21 51t51 21q19 0 36-10t26-27q6 1 9 1q15 0 25-11t11-25v-286q0-80-61-140t-153-72v-73q0-59 52-101t126-42t126 42t53 101v220q-32 12-52 39t-20 62q0 45 32 76t76 31t75-31t32-76z" horiz-adv-x="785.7" />
<glyph glyph-name="ambulance" unicode="&#xe8fe;" d="m357 64q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m-214 286h214v143h-88q-8-1-12-5l-109-109q-4-7-5-12v-17z m714-286q0 30-21 51t-50 21t-51-21t-21-51t21-50t51-21t50 21t21 50z m72 375v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h125v-125q0-7 5-12t13-5h107q8 0 13 5t5 12v125h125q8 0 13 5t5 13z m142 304v-643q0-14-10-25t-25-11h-107q0-59-42-101t-101-42t-101 42t-42 101h-214q0-59-42-101t-101-42t-101 42t-42 101h-72q-14 0-25 11t-10 25t10 25t25 11v232q0 14 8 32t18 29l110 110q11 11 29 18t32 7h89v179q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="1071.4" />
<glyph glyph-name="medkit" unicode="&#xe8ff;" d="m714 225v107q0 8-5 13t-13 5h-125v125q0 8-5 13t-12 5h-108q-7 0-12-5t-5-13v-125h-125q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h125v-125q0-8 5-13t12-5h108q7 0 12 5t5 13v125h125q8 0 13 5t5 13z m-357 411h286v71h-286v-71z m-214 0v-715h-18q-51 0-88 37t-37 88v465q0 51 37 88t88 37h18z m661 0v-715h-608v715h90v89q0 22 15 38t38 16h322q22 0 38-16t15-38v-89h90z m196-125v-465q0-51-37-88t-88-37h-18v715h18q51 0 88-37t37-88z" horiz-adv-x="1000" />
<glyph glyph-name="h-sigh" unicode="&#xe900;" d="m714 100v500q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-179h-285v179q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-500q0-14 11-25t25-11h71q15 0 25 11t11 25v179h285v-179q0-14 11-25t25-11h72q14 0 25 11t10 25z m143 518v-536q0-66-47-113t-114-48h-535q-67 0-114 48t-47 113v536q0 66 47 113t114 48h535q67 0 114-48t47-113z" horiz-adv-x="857.1" />
<glyph glyph-name="hospital" unicode="&#xe901;" d="m214 118v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m0 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m143 0v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m429-286v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m286-143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 5h36q7 0 13-5t5-12z m143 0v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 5h36q7 0 13-5t5-12z m-143-483h214v643h-143v-18q0-22-15-38t-38-15h-250q-22 0-38 15t-16 38v18h-143v-643h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125z m0 661v179q0 7-5 12t-13 6h-36q-7 0-12-6t-5-12v-54h-72v54q0 7-5 12t-13 6h-35q-8 0-13-6t-5-12v-179q0-7 5-12t13-6h35q8 0 13 6t5 12v54h72v-54q0-7 5-12t12-6h36q7 0 13 6t5 12z m286 18v-714q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v714q0 15 11 25t25 11h178v160q0 23 16 38t38 16h250q22 0 38-16t15-38v-160h179q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="building" unicode="&#xe902;" d="m214 118v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m0 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m143 0v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 6h35q8 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-7 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m429-286v-36q0-7-5-12t-13-6h-36q-7 0-12 6t-6 12v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-35q-8 0-13 5t-5 13v36q0 7 5 12t13 5h35q8 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m429-285v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 6h36q7 0 13-6t5-12z m-143 143v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-5 13v36q0 7 5 12t12 5h36q7 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m429-285v-36q0-7-5-13t-13-5h-36q-7 0-12 5t-6 13v36q0 7 6 12t12 5h36q7 0 13-5t5-12z m-143 142v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13v35q0 8 5 13t12 5h36q7 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-35q-8 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m286-143v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13v35q0 8 6 13t12 5h36q7 0 13-5t5-13z m-143 143v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-5 13v35q0 8 5 13t12 5h36q7 0 13-5t5-13z m143 0v-35q0-8-5-13t-13-5h-36q-7 0-12 5t-6 13v35q0 8 6 13t12 5h36q7 0 13-5t5-13z m-143-768h214v858h-643v-858h215v125q0 8 5 13t13 5h178q7 0 13-5t5-13v-125z m286 893v-928q0-15-11-25t-25-11h-714q-15 0-25 11t-11 25v928q0 15 11 25t25 11h714q15 0 25-11t11-25z" horiz-adv-x="785.7" />
<glyph glyph-name="smile" unicode="&#xe903;" d="m633 250q-21-67-77-109t-127-41t-128 41t-77 109q-4 14 3 27t21 18q14 4 27-2t17-22q14-44 52-72t85-28t84 28t52 72q4 15 18 22t27 2t21-18t2-27z m-276 243q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="frown" unicode="&#xe904;" d="m633 164q4-14-2-27t-21-17t-27 2t-18 21q-14 45-52 72t-84 28t-85-28t-52-72q-4-15-17-21t-27-2q-15 4-21 17t-3 27q21 68 77 109t128 41t127-41t77-109z m-276 329q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="meh" unicode="&#xe905;" d="m643 243q0-15-11-25t-25-11h-357q-14 0-25 11t-11 25t11 25t25 11h357q15 0 25-11t11-25z m-286 250q0-30-21-51t-50-21t-51 21t-21 51t21 50t51 21t50-21t21-50z m286 0q0-30-21-51t-51-21t-50 21t-21 51t21 50t50 21t51-21t21-50z m143-143q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="anchor" unicode="&#xe906;" d="m536 707q0 15-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m464-518v-196q0-12-11-17q-5-1-7-1q-7 0-13 5l-52 52q-66-80-177-127t-240-46t-240 46t-177 127l-52-52q-5-5-13-5q-2 0-7 1q-11 5-11 17v196q0 8 5 13t13 5h196q13 0 17-11q5-11-4-20l-56-55q38-51 106-86t152-46v361h-108q-14 0-25 11t-10 25v71q0 15 10 25t25 11h108v91q-33 19-52 51t-20 72q0 59 42 101t101 42t101-42t42-101q0-39-20-72t-52-51v-91h108q14 0 25-11t10-25v-71q0-15-10-25t-25-11h-108v-361q84 11 152 46t106 86l-56 55q-8 9-4 20q4 11 17 11h196q8 0 13-5t5-13z" horiz-adv-x="1000" />
<glyph glyph-name="terminal" unicode="&#xe907;" d="m326 301l-260-260q-5-5-12-5t-13 5l-28 28q-6 6-6 13t6 13l219 219l-219 220q-6 5-6 12t6 13l28 28q5 6 13 6t12-6l260-260q6-5 6-13t-6-13z m603-255v-35q0-8-5-13t-13-5h-536q-8 0-13 5t-5 13v35q0 8 5 13t13 5h536q8 0 13-5t5-13z" horiz-adv-x="928.6" />
<glyph glyph-name="eraser" unicode="&#xe908;" d="m500 64l188 215h-429l-188-215h429z m565 601q9-19 6-40t-17-36l-500-572q-22-24-54-24h-429q-21 0-38 11t-27 31q-8 19-5 40t17 36l500 572q21 24 53 24h429q21 0 39-11t26-31z" horiz-adv-x="1071.4" />
<glyph glyph-name="puzzle" unicode="&#xe909;" d="m929 237q0-45-25-75t-69-30q-23 0-43 10t-33 21t-32 21t-39 10q-62 0-62-69q0-22 9-65t8-64v-3q-12 0-18 0q-19-2-54-7t-65-7t-55-3q-34 0-57 15t-23 47q0 20 9 39t22 32t21 33t9 43q0 44-30 69t-75 25q-47 0-80-26t-33-71q0-24 9-46t18-36t19-30t8-28q0-25-25-50q-21-19-66-19q-53 0-136 13q-5 1-16 2t-15 3l-7 1q-1 0-2 0q-1 0-1 1v571q1 0 10-2t19-2t12-2q83-14 136-14q45 0 66 20q25 24 25 49q0 13-8 29t-19 29t-18 36t-9 46q0 46 33 72t81 25q44 0 74-25t30-69q0-23-9-43t-21-33t-22-31t-9-40q0-32 23-47t57-14q36 0 101 8t91 9v-1q-1-1-2-9t-3-19t-2-12q-13-84-13-137q0-45 19-65q25-26 50-26q12 0 28 8t30 19t36 19t46 8q46 0 71-33t26-80z" horiz-adv-x="928.6" />
<glyph glyph-name="shield" unicode="&#xe90a;" d="m607 314v357h-250v-634q67 35 119 76q131 103 131 201z m107 429v-429q0-48-18-95t-47-84t-66-71t-70-57t-68-43t-50-28t-23-11q-7-4-15-4t-14 4q-9 4-24 11t-50 28t-68 43t-70 57t-66 71t-46 84t-19 95v429q0 14 11 25t25 11h643q14 0 25-11t10-25z" horiz-adv-x="714.3" />
<glyph glyph-name="extinguisher" unicode="&#xe90b;" d="m286 743q0 14-11 25t-25 11t-25-11t-11-25t11-25t25-11t25 11t11 25z m500 18v-179q0-9-7-14q-4-4-11-4q-2 0-4 1l-250 53q-6 1-10 6t-4 12h-143v-57q62-13 103-62t40-114v-446q0-14-11-25t-25-11h-285q-15 0-26 11t-10 25v446q0 60 35 107t90 64v62h-18q-33 0-64-13t-51-30t-37-37t-23-30t-7-14q-10-19-32-19q-9 0-16 4q-13 6-18 20t2 28q3 5 8 14t21 30t34 39t47 37t61 30q-14 23-14 48q0 37 26 63t63 26t63-26t26-63q0-19-7-36h168q0 6 4 11t10 6l250 54q2 0 4 0q7 0 11-3q7-5 7-14z" horiz-adv-x="785.7" />
<glyph glyph-name="bullseye" unicode="&#xe90c;" d="m571 350q0-59-41-101t-101-42t-101 42t-42 101t42 101t101 42t101-42t41-101z m72 0q0 89-63 152t-151 62t-152-62t-63-152t63-151t152-63t151 63t63 151z m71 0q0-118-83-202t-202-84t-202 84t-84 202t84 202t202 84t202-84t83-202z m72 0q0 73-29 139t-76 114t-114 76t-138 28t-139-28t-114-76t-76-114t-29-139t29-139t76-113t114-77t139-28t138 28t114 77t76 113t29 139z m71 0q0-117-57-215t-156-156t-215-58t-216 58t-155 156t-58 215t58 215t155 156t216 58t215-58t156-156t57-215z" horiz-adv-x="857.1" />
<glyph glyph-name="resize-full" unicode="&#xe90d;" d="m784 111l127 128l0-336l-335 0l128 130l-128 127l79 79z m-431 686l-129-127l128-127l-80-80l-126 128l-128-129l0 335l335 0z m0-637l-129-127l129-130l-335 0l0 336l128-128l128 128z m558 637l0-335l-127 129l-128-128l-79 80l127 127l-128 127l335 0z" horiz-adv-x="928" />
<glyph glyph-name="target" unicode="&#xe8a7;" d="m521 407l0 162q60-16 103-60t59-102l-162 0z m0-113l162 0q-16-59-59-103t-103-59l0 162z m-113 113l-162 0q16 59 59 102t103 60l0-162z m0-113l0-162q-60 16-103 59t-59 103l162 0z m113 390l0 113q152-19 261-128t129-262l-113 0q-18 107-95 183t-182 94z m-390-277l-113 0q19 152 128 261t262 129l0-113q-106-18-182-94t-95-183z m277-390l0-114q-154 19-262 129t-128 262l113 0q18-107 95-183t182-94z m390 277l113 0q-21-153-129-262t-261-129l0 114q105 18 182 94t95 183z" horiz-adv-x="928" />
<glyph glyph-name="layers" unicode="&#xe829;" d="m18 183l446-112l447 112l0-112l-447-112l-446 112l0 112z m0 223l446-112l447 112l0-112l-447-111l-446 111l0 112z m0 223l446 112l447-112l0-111l-447-112l-446 112l0 111z" horiz-adv-x="928" />
<glyph glyph-name="chart-bar" unicode="&#xe90f;" d="m688-97l0 894l223 0l0-894l-223 0z m-335 0l0 671l223 0l0-671l-223 0z m-335 0l0 448l223 0l0-448l-223 0z" horiz-adv-x="928" />
<glyph glyph-name="share" unicode="&#xe912;" d="m0 90v490q0 70 50 119t119 50h129q29 0 48-20t20-46q0-29-20-48t-48-20h-129q-15 0-25-10t-10-25v-490q0-14 10-25t25-10h588q15 0 25 10t10 25v60q0 27 20 47t46 20q28 0 48-20t19-47v-60q0-70-49-119t-119-50h-588q-70 0-119 50t-50 119z m244 90q45 81 121 132t167 59q42 3 74-2v-103q0-22 11-30t27 4l283 207q10 8 10 19q0 6-2 11t-6 7l-2 2l-283 207q-15 12-27 4t-11-30v-84q-7 0-20-1q-73-7-137-41t-109-89t-72-124t-24-148z" horiz-adv-x="937.5" />
<glyph glyph-name="hdd" unicode="&#xe841;" d="m0 171v200q0 26 17 45h0l93 123q21 29 57 29h66q112 31 269 31q157 0 269-31h65q37 0 58-29l93-123h0q17-19 17-45v-200q0-29-21-49t-49-21h-864q-29 0-49 21t-21 49z m99 60q0-15 11-26t27-11h88q15 0 26 11t11 26t-11 27t-26 11h-88q-16 0-27-11t-11-27z m73 236q0-23 44-41t120-30t166-11t166 11t120 30t44 41t-44 41t-120 30t-166 11t-166-11t-120-30t-44-41z m146-236q0-15 11-26t26-11h11q15 0 26 11t11 26t-11 27t-26 11h-11q-15 0-26-11t-11-27z m85 236q0 10 29 17t70 8q40 0 69-8t29-17t-29-17t-69-8q-41 0-70 8t-29 17z" horiz-adv-x="1004.4" />
<glyph glyph-name="trash" unicode="&#xe89f;" d="m0 633l0 141l289 0l0 76l246 0l0-76l289 0l0-141l-824 0z m43-783l0 676l738 0l0-676l-738 0z" horiz-adv-x="824" />
<glyph glyph-name="folder" unicode="&#xe8d7;" d="m0-52l0 715l139 0l68 90l217 0l68-90l508 0l0-715l-1000 0z" horiz-adv-x="1000" />
<glyph glyph-name="code" unicode="&#xe844;" d="m1000 849l500-500l-500-500l-154 154l346 346l-346 346z m-692-500l346-346l-154-154l-500 500l500 500l154-154z" horiz-adv-x="1500" />
<glyph glyph-name="folder-open" unicode="&#xe81e;" d="m1313 632h-1235q9 48 27 67q16 17 31 17h4q4-1 8-1q12 0 26 4q18 6 25 29l24 72q77 29 208 29q89 0 164-29l25-72q24-23 33-26t43-3h485q84 0 110-22q12-11 22-65z m78-164v-10l-68-523q-5-35-33-61t-65-25h-1058q-36 0-65 25t-34 61l-67 523q-1 3-1 10q0 33 23 55t55 21h1235q33 0 56-21t22-55z" horiz-adv-x="1391" />
<glyph glyph-name="left-big" unicode="&#xe88a;" d="m857 350v-71q0-30-18-51t-47-21h-393l164-164q21-20 21-50t-21-50l-42-43q-21-20-51-20q-29 0-50 20l-364 364q-20 21-20 50q0 29 20 51l364 363q21 21 50 21q29 0 51-21l42-42q21-21 21-50t-21-51l-164-164h393q29 0 47-20t18-51z" horiz-adv-x="857.1" />
</font>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -204,23 +204,37 @@ ul,ol {
// Custom icons (not from Font Awesome)
.icon-code {
font-size: 80%;
padding-right: 5px;
&:before {
margin-left: 0.1em;
margin-right: 0.6em;
}
}
.icon-folder-open {
font-size: 80%;
padding-right: 5px;
&:before {
margin-right: 0.6em;
}
}
.icon-chart-bar {
font-size: 90%;
padding-right: 2px;
&:before {
margin-left: 0.3em;
margin-right: 0.3em;
}
}
.icon-folder {
margin-top: -2px;
}
.icon-file {
font-size: 104%;
margin-left: 0;
margin-right: 0;
}
// Provider's icons (the colored ones)
[class^="icon-provider-"], [class*=" icon-provider-"] {
.img-retina('../img/icons.png', '../img/icons2x.png', 256px, 16px);

View File

@ -10,7 +10,7 @@
@logo-blue: #3399FF;
@logo-orange: #FF610D;
@logo-green: #8DC213;
@primary: #0084FF;
@primary: #0080FF;
@secondary: @primary;
@tertiary: @primary;
@primary-desaturated: desaturate(@primary, 70%);
@ -37,7 +37,7 @@
@secondary-color-darkest: darken(@primary-desaturated, 40%);
@secondary-color-inv: #fff;
@error-border: #FF6161;
@disabled-color: #ccc;
@disabled-color: mix(@primary-color, @input-bg, 33%);
@panel-button-color: @primary-color-dark;
@panel-button-border-fade: 75%;
@panel-bg: @primary-bg-lighter;
@ -72,6 +72,7 @@
@dropdown-link-hover-color: darken(@primary-desaturated, 25%);
@dropdown-link-hover-bg: @btn-default-hover-bg;
@dropdown-header-color: fade(@primary-color, 50%);
@dropdown-link-disabled-color: @disabled-color;
@list-group-link-color: @primary-color-darkest;
@list-group-bg: @primary-bg-lighter;
@list-group-border: @transparent;
@ -80,6 +81,7 @@
@list-group-active-border: fade(@secondary, 5%);
@list-group-hover-bg: @btn-default-hover-bg;
@list-group-hover-border-color: fade(@secondary, 10%);
@input-color: @primary-color-dark;
@input-color-placeholder: @disabled-color;
@btn-default-color: @primary-color-darker;
@btn-default-bg: @transparent;
@ -89,7 +91,7 @@
@btn-primary-bg: @primary-bg;
@btn-primary-border: fade(@secondary, 5%);
@btn-success-color: darken(@primary-desaturated, 25%);
@btn-success-bg: @navbar-default-bg;
@btn-success-bg: @transparent;
@btn-success-border: @transparent;
@btn-info-color: fade(@secondary-desaturated, 35%);
@btn-info-bg: @transparent;
@ -141,13 +143,21 @@ body {
.box-shadow(0 6px 12px rgba(0,0,0,.125));
}
.dropdown-menu > li > a {
padding: 5px 20px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
&:hover,
&:focus {
border-color: @list-group-hover-border-color;
.dropdown-menu {
> li > a {
padding: 5px 20px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
&:hover,
&:focus {
border-color: @list-group-hover-border-color;
}
}
> .disabled > a {
&:hover,
&:focus {
border-color: transparent;
}
}
}
@ -280,19 +290,22 @@ a {
// Fix form-inline broken since Bootstrap v3
.form-inline {
.col-lg-1 { width: percentage((1 / @grid-columns)); }
.col-lg-2 { width: percentage((2 / @grid-columns)); }
.col-lg-3 { width: percentage((3 / @grid-columns)); }
.col-lg-4 { width: percentage((4 / @grid-columns)); }
.col-lg-5 { width: percentage((5 / @grid-columns)); }
.col-lg-6 { width: percentage((6 / @grid-columns)); }
.col-lg-7 { width: percentage((7 / @grid-columns)); }
.col-lg-8 { width: percentage((8 / @grid-columns)); }
.col-lg-9 { width: percentage((9 / @grid-columns)); }
.col-lg-10 { width: percentage((10/ @grid-columns)); }
.col-lg-11 { width: percentage((11/ @grid-columns)); }
.col-lg-12 { width: 100%; }
* {float:none;}
.form-control {
display: inline-block;
}
.col-lg-1 { width: percentage((1 / @grid-columns)); }
.col-lg-2 { width: percentage((2 / @grid-columns)); }
.col-lg-3 { width: percentage((3 / @grid-columns)); }
.col-lg-4 { width: percentage((4 / @grid-columns)); }
.col-lg-5 { width: percentage((5 / @grid-columns)); }
.col-lg-6 { width: percentage((6 / @grid-columns)); }
.col-lg-7 { width: percentage((7 / @grid-columns)); }
.col-lg-8 { width: percentage((8 / @grid-columns)); }
.col-lg-9 { width: percentage((9 / @grid-columns)); }
.col-lg-10 { width: percentage((10/ @grid-columns)); }
.col-lg-11 { width: percentage((11/ @grid-columns)); }
.col-lg-12 { width: 100%; }
* {float:none;}
}
.form-control-focus(@color: @secondary-desaturated) {
@ -315,7 +328,10 @@ a {
// Input add-on
.input-group-addon {
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
.box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
a& {
color: @link-color;
}
}
.input-group-btn {
@ -344,14 +360,10 @@ a {
border: 0;
border-top: 1px solid @primary-border-color;
border-radius: 0;
.left-space {
.left-space, .right-space {
width: 25px;
height: @input-height-base;
}
.right-space {
width: 20px;
height: @input-height-base;
}
.nav {
float: left;
margin: 5px 10px;
@ -405,28 +417,40 @@ a {
overflow: hidden;
height: @input-height-base;
width: 65px;
padding-top: 10px;
padding-top: 8px;
.bar {
display: inline-block;
width: 10px;
height: 10px;
height: 6px;
border-radius: 1px;
margin: 0 2px;
opacity: 0.25;
background-color: @btn-success-color;
animation: indicator 0.8s ease-out infinite;
-webkit-animation: indicator 0.8s ease-out infinite; /* Safari and Chrome */
animation: indicator 0.6s ease-out infinite;
-webkit-animation: indicator 0.6s ease-out infinite; /* Safari and Chrome */
}
}
.left-buttons-dropdown, .right-buttons-dropdown {
> .nav {
margin-left: 0;
margin-right: 0;
}
}
div.dropdown-menu {
top: initial;
padding: 5px;
}
}
@keyframes indicator {
from {opacity: 0.75;}
from {opacity: 1;}
to {opacity: 0.25;}
}
@-webkit-keyframes indicator /* Safari and Chrome */ {
from {opacity: 0.75;}
from {opacity: 1;}
to {opacity: 0.25;}
}
@ -827,21 +851,20 @@ a {
/********************************
* Publish/Sync dialogs
* Publish/Sync/Share dialogs
********************************/
.modal-manage-sync .sync-list {
.modal-manage-sync .sync-list,
.modal-manage-publish .publish-list,
.modal-manage-sharing .share-list {
margin-bottom: 20px;
.input-group {
margin-bottom: 10px;
}
}
.modal-manage-publish .publish-list {
margin-bottom: 20px;
.input-group {
margin-bottom: 10px;
}
.share-list .form-control {
width: 280px
}
.publish-custom-template-collapse {
@ -853,6 +876,7 @@ a {
}
/*********************************
* UI Layout
*********************************/
@ -864,7 +888,9 @@ a {
float: none;
}
.ui-layout-toggler {
font-size: 22px !important;
i {
font-size: 22px;
}
&.ui-layout-toggler-east {
line-height: 55px;
&.ui-layout-toggler-east-open i:before {
@ -886,13 +912,12 @@ a {
left: 0 !important;
line-height: 0;
i {
margin-top: -5px;
}
&.ui-layout-toggler-north-open i:before {
content: '\e87f';
}
&.ui-layout-toggler-north-closed i:before {
content: '\e880';
font-size: 16px;
height: 10px;
overflow: hidden;
&:before {
content: '\e816';
}
}
}
}