[
  {
    "path": ".gitignore",
    "content": "node_modules/\nreleases/\niStats*\n*.swp\n"
  },
  {
    "path": ".npmrc",
    "content": "save-exact=true"
  },
  {
    "path": "Gruntfile.js",
    "content": "module.exports = function(grunt) {\n  require('jit-grunt')(grunt);\n\n  grunt.initConfig({\n    less: {\n      development: {\n        options: {\n          compress: true,\n          yuicompress: true,\n          optimization: 2\n        },\n        files: {\n          \"stylesheets/main.css\": \"stylesheets/main.less\"\n        }\n      }\n    },\n    watch: {\n      styles: {\n        files: ['stylesheets/**/*.less'], // which files to watch\n        tasks: ['less'],\n        options: {\n            nospawn: true,\n            livereload: true\n        }\n      }\n    }\n  });\n\n  grunt.registerTask('default', ['less', 'watch']);\n};\n"
  },
  {
    "path": "README.md",
    "content": "![icon](./images/Icon.png)\n\nThanks [@eva](https://yipingxia.github.io/) for the app icon!\n\n# iStats\nAn Electron app on Mac menubar to display CPU and memory stats in a dropdown panel.\n\n## App Preview\n![demo](http://g.recordit.co/Sgeb9Uannw.gif)\n\n## Screenshots\n![screenshot1](./images/screenshot1.png)\n![screenshot2](./images/screenshot2.png)\n\n### Download\nPlease download at [release](https://github.com/ningt/iStats/releases) page.\n\n## Components Used\n- [os-usage](https://github.com/ningt/os-usage) - Node module to track Mac OS system usage in real time\n- [menubar](https://github.com/maxogden/menubar) - high level way to create menubar desktop applications with electron\n\n## Run it on your Mac\n- Clone this repo `https://github.com/ningt/iStats.git`\n- `cd iStats`\n- run `npm install && npm start`\n"
  },
  {
    "path": "index.html",
    "content": "<!doctype html>\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <title>iStats</title>\n\n    <link rel=\"stylesheet\" href=\"node_modules/photon/dist/css/photon.css\">\n    <link href=\"./stylesheets/whhg.css\" rel=\"stylesheet\" type=\"text/css\">\n    <link href=\"./stylesheets/main.css\" rel=\"stylesheet\" type=\"text/css\">\n</head>\n\n<body>\n    <div class=\"window\">\n        <header class=\"toolbar toolbar-header\">\n            <div class=\"toolbar-actions\">\n                <div class=\"btn-group\">\n                    <button id=\"cpu-btn\" class=\"btn btn-default\" onclick=\"switchDisplay('cpu')\">\n                        <i class=\"icon-processorthree\"></i>\n                        CPU\n                    </button>\n                    <button id=\"mem-btn\" class=\"btn btn-default\" onclick=\"switchDisplay('mem')\">\n                        <i class=\"icon-sd\"></i>\n                        RAM\n                    </button>\n                </div>\n                <button class=\"btn btn-default pull-right\" onclick=\"quit()\">\n                    <i class=\"icon-off\"></i>\n                </button>\n            </div>\n        </header>\n        <div id=\"container\" class=\"window-content\">\n        </div>\n    </div>\n\n    <script src=\"js/stats.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "js/stats.js",
    "content": "'use strict';\n\nconst fs = require('fs');\nconst os = require('os-usage');\nconst Ractive = require('ractive');\nconst Highcharts = require('highcharts');\nconst ipc = require('electron').ipcRenderer;\n\nrequire('highcharts/modules/exporting')(Highcharts);\n\nvar ract, cpu_chart, cpu_monitor, mem_monitor;\n\nvar templates = {\n    cpu: fs.readFileSync(__dirname + '/templates/cpu.tmpl').toString(),\n    mem: fs.readFileSync(__dirname + '/templates/mem.tmpl').toString()\n};\n\nfunction plotChart(id, data) {\n    var option = {\n        chart: {\n            type: 'area'\n        },\n        title: {\n            text: ''\n        },\n        exporting: { enabled: false },\n        xAxis: {\n            labels: {\n                formatter: function () {\n                    return this.value;\n                }\n            }\n        },\n        yAxis: {\n            title: {\n                text: ''\n            },\n            labels: {\n                formatter: function () {\n                    if (id === 'mem_chart') {\n                        return this.value > 1024 ? (this.value / 1024).toFixed(1) + ' G' : this.value + ' M';\n                    }\n                    return this.value + ' %';\n                }\n            }\n        },\n        tooltip: {\n            enabled: false\n        },\n        plotOptions: {\n            series: {\n                animation: false\n            },\n            area: {\n                pointStart: 0,\n                marker: {\n                    enabled: false,\n                    symbol: 'circle',\n                    radius: 2,\n                    states: {\n                        hover: {\n                            enabled: true\n                        }\n                    }\n                }\n            }\n        },\n        series: [{\n            showInLegend: false,\n            data: data[0]\n        }, {\n            showInLegend: false,\n            data: data[1]\n        }],\n        credits: {\n            enabled: false\n        }\n    };\n\n    Highcharts.chart(id, option, function(chart) {\n    });\n}\n\nfunction showCpuStats() {\n    var cpu_data = {\n        chart_data: [[], []]\n    };\n\n    if (!cpu_monitor)\n        cpu_monitor = new os.CpuMonitor({delay: 1});\n\n    cpu_monitor.on('cpuUsage', function(data) {\n        cpu_data.cpu = data;\n        cpu_data.chart_data[0].push(parseFloat(data.user));\n        cpu_data.chart_data[1].push(parseFloat(data.sys));\n\n        render('cpu_chart', templates.cpu, cpu_data);\n    });\n\n    cpu_monitor.on('topCpuProcs', function(data) {\n        cpu_data.procs = data;\n        render('cpu_chart', templates.cpu, cpu_data);\n    });\n}\n\nfunction showMemStats() {\n    var mem_data = {\n        chart_data: [[], []]\n    };\n\n    if (!mem_monitor)\n        mem_monitor = new os.MemMonitor({delay: 1});\n\n    mem_monitor.on('memUsage', function(data) {\n        mem_data.mem = data;\n        mem_data.chart_data[0].push(parseFloat(data.used_kb / 1024));\n        mem_data.chart_data[1].push(parseFloat(data.wired_kb / 1024));\n\n        render('mem_chart', templates.mem, mem_data);\n    });\n\n    mem_monitor.on('topMemProcs', function(data) {\n        mem_data.procs = data;\n        render('mem_chart', templates.mem, mem_data);\n    });\n\n}\n\nvar currentDisplay = 'cpu';\nswitchDisplay(currentDisplay);\n\nipc.on('show', function() {\n    switchDisplay(currentDisplay);\n});\n\nipc.on('after_hide', function() {\n    exitAllMonitors();\n\n    cpu_chart = null;\n});\n\nfunction exitMonitor(monitor) {\n    if (monitor) {\n        monitor.emit('exit');\n    }\n}\n\nfunction exitAllMonitors() {\n    exitMonitor(cpu_monitor);\n    exitMonitor(mem_monitor);\n\n    mem_monitor = null;\n    cpu_monitor = null;\n}\n\nfunction switchDisplay(display) {\n    currentDisplay = display;\n\n    if (currentDisplay === 'cpu') {\n        showCpuStats();\n        exitMonitor(mem_monitor);\n        mem_monitor = null;\n\n        document.getElementById('mem-btn').classList.remove('active');\n    }\n    else if (currentDisplay === 'mem') {\n        showMemStats();\n        exitMonitor(cpu_monitor);\n        cpu_monitor = null;\n\n        document.getElementById('cpu-btn').classList.remove('active');\n    }\n\n    document.getElementById(display + '-btn').classList.add('active');\n}\n\nfunction quit() {\n    exitAllMonitors();\n    ipc.send('quit');\n}\n\nfunction render(id, template, data) {\n    if (ract)\n        ract.set(data);\n\n    ract = new Ractive({\n        el: '#container',\n        template: template,\n        data: data\n    });\n\n    plotChart(id, data.chart_data);\n}\n\n"
  },
  {
    "path": "main.js",
    "content": "'use strict';\n\nconst path = require('path')\nconst menubar = require('menubar');\nconst ipcMain = require('electron').ipcMain;\n\nvar opts = {\n    dir: __dirname,\n    icon: path.join(__dirname, 'images', 'IconTemplate.png'),\n    tooltip: 'Quick Stats',\n    width: 300\n};\n\nvar mb = menubar(opts);\n\nmb.on('ready', function ready () {\n    mb.on('show', function show () {\n        mb.window.webContents.send(\"show\");\n    });\n\n    mb.on('after-hide', function show () {\n        mb.window.webContents.send(\"after_hide\");\n    });\n\n    ipcMain.on('quit', function() {\n        mb.app.quit();\n    });\n});\n\nmb.on('after-create-window', function() {\n    if (process.env.NODE_ENV === 'dev') {\n        mb.window.openDevTools();\n        mb.window.setResizable(false);\n    }\n});\n\n"
  },
  {
    "path": "makefile",
    "content": "publish:\n\trm -rf iStats-darwin-x64.zip iStats-darwin-x64\n\tnpm run build\n\tzip -ryX iStats-darwin-x64.zip iStats-darwin-x64\n\tnpm run publish\n.PHONY: publish\n\n"
  },
  {
    "path": "notes.md",
    "content": "Replace with release notes\n\nOn first launch you will probably have to **Right Click > Open** QuickStats.app in order to bypass the Mac OS warning.\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"iStats\",\n  \"version\": \"1.4.0\",\n  \"description\": \"Display system stats on your menubar\",\n  \"main\": \"main.js\",\n  \"scripts\": {\n    \"start\": \"NODE_ENV=dev grunt & electron .\",\n    \"clean\": \"rm -r iStats-darwin-x64\",\n    \"build\": \"electron-packager . iStats --platform=darwin --arch=x64 --version=1.3.1 --icon=images/Icon.icns --ignore='node_modules/(electron-packager|electron-prebuilt|git-grunt|publish-release|grunt.*)'\",\n    \"zip\": \"cd iStats-darwin-x64 && zip -ryX iStats-darwin-x64.zip iStats.app\",\n    \"publish\": \"publish-release --template notes.md --assets iStats-darwin-x64/iStats-darwin-x64.zip\",\n    \"release\": \"npm run clean && npm run build && npm run zip && npm run publish\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/ningt/iStats.git\"\n  },\n  \"author\": \"Tang Ning\",\n  \"license\": \"ISC\",\n  \"dependencies\": {\n    \"highcharts\": \"5.0.6\",\n    \"menubar\": \"5.1.0\",\n    \"os-usage\": \"git+https://github.com/ningt/os-usage.git\",\n    \"photon\": \"git+https://github.com/connors/photon.git\",\n    \"ractive\": \"0.7.3\"\n  },\n  \"devDependencies\": {\n    \"electron\": \"1.3.1\",\n    \"electron-packager\": \"8.4.0\",\n    \"grunt\": \"1.0.1\",\n    \"grunt-cli\": \"1.2.0\",\n    \"grunt-contrib-less\": \"1.4.0\",\n    \"grunt-contrib-watch\": \"1.0.0\",\n    \"jit-grunt\": \"0.10.0\",\n    \"publish-release\": \"1.3.2\"\n  }\n}\n"
  },
  {
    "path": "stylesheets/main.css",
    "content": "html,body{width:100%;height:100%;margin:0;padding:0}body{font-family:sans-serif}a{text-decoration:none}.window-content{display:flex;justify-content:center;align-items:center;flex-direction:column}.window-content .chart{width:100%;flex:0 0 100px}.window-content table{margin-bottom:0}.window-content table .tb-head{text-align:center;font-weight:bold;background-color:#F8F8F8}.window-content table .right{text-align:right}.window-content table td{width:50%}.window-content table .indicator{width:10px;height:10px;margin-right:5px;display:inline-block}.window-content table .user,.window-content table .used{background-color:#8DBEEE}.window-content table .system,.window-content table .wired{background-color:#434348}.window-content table .idle,.window-content table .unused{background-color:#FFF}"
  },
  {
    "path": "stylesheets/main.less",
    "content": "html, body {\n    width: 100%;\n    height: 100%;\n    margin: 0;\n    padding: 0;\n}\n\nbody {\n    font-family: sans-serif;\n}\n\na {\n    text-decoration: none;\n}\n\n.window-content {\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    flex-direction: column;\n\n    .chart {\n        width: 100%;\n        flex: 0 0 100px;\n    }\n\n    table {\n        margin-bottom: 0;\n\n        .tb-head {\n            text-align: center;\n            font-weight: bold;\n            background-color: #F8F8F8;\n        }\n\n        .right {\n            text-align: right;\n        }\n\n        td {\n            width: 50%;\n        }\n\n        .indicator {\n            width: 10px;\n            height: 10px;\n            margin-right: 5px;\n            display: inline-block;\n        }\n\n        .user, .used {\n            background-color: #8DBEEE;\n        }\n\n        .system, .wired {\n            background-color: #434348;\n        }\n\n        .idle, .unused {\n            background-color: #FFF;\n        }\n    }\n}\n"
  },
  {
    "path": "stylesheets/whhg.css",
    "content": "@font-face {\r\n    font-family: 'WebHostingHub-Glyphs';\r\n    src: url('../font/webhostinghub-glyphs.eot');\r\n    src: url('../font/webhostinghub-glyphs.eot?#iefix') format('embedded-opentype'),\r\n         url('../font/webhostinghub-glyphs.ttf') format('truetype');\r\n    font-weight: normal;\r\n    font-style: normal;\r\n    -moz-font-feature-settings: \"calt=0,liga=0\";\r\n}\r\n[class^=\"icon-\"], [class*=\" icon-\"] {font-family:'WebHostingHub-Glyphs';background:none;width:auto;height:auto;font-style:normal}\r\n.icon-aaabattery:before{content:'\\f413'}\r\n.icon-abacus:before{content:'\\f261'}\r\n.icon-accountfilter:before{content:'\\f05e'}\r\n.icon-acsource:before{content:'\\f3ea'}\r\n.icon-addfriend:before{content:'\\f3da'}\r\n.icon-address:before{content:'\\f08f'}\r\n.icon-addshape:before{content:'\\f1fd'}\r\n.icon-addtocart:before{content:'\\f394'}\r\n.icon-addtolist:before{content:'\\f2ac'}\r\n.icon-adjust:before{content:'\\f484'}\r\n.icon-adobe:before{content:'\\f1c9'}\r\n.icon-ads-bilboard:before{content:'\\f082'}\r\n.icon-affiliate:before{content:'\\f01e'}\r\n.icon-ajax:before{content:'\\f06f'}\r\n.icon-alarm:before{content:'\\f233'}\r\n.icon-alarmalt:before{content:'\\f23d'}\r\n.icon-album-cover:before{content:'\\f19f'}\r\n.icon-alertalt:before{content:'\\f2b4'}\r\n.icon-alertpay:before{content:'\\f269'}\r\n.icon-algorhythm:before{content:'\\f0b8'}\r\n.icon-alienship:before{content:'\\f41f'}\r\n.icon-alienware:before{content:'\\f3be'}\r\n.icon-align-center:before{content:'\\f1d9'}\r\n.icon-align-justify:before{content:'\\f1da'}\r\n.icon-align-left:before{content:'\\f1d7'}\r\n.icon-align-right:before{content:'\\f1d8'}\r\n.icon-alignbottomedge:before{content:'\\f1d3'}\r\n.icon-alignhorizontalcenter:before{content:'\\f1d2'}\r\n.icon-alignleftedge:before{content:'\\f1d6'}\r\n.icon-alignrightedge:before{content:'\\f1d5'}\r\n.icon-aligntopedge:before{content:'\\f1d4'}\r\n.icon-alignverticalcenter:before{content:'\\f1d1'}\r\n.icon-amd:before{content:'\\f020'}\r\n.icon-analogdown:before{content:'\\f2cb'}\r\n.icon-analogleft:before{content:'\\f2c8'}\r\n.icon-analogright:before{content:'\\f2c9'}\r\n.icon-analogup:before{content:'\\f2ca'}\r\n.icon-analytics-piechart:before{content:'\\f000'}\r\n.icon-analyticsalt-piechartalt:before{content:'\\f001'}\r\n.icon-anchor-port:before{content:'\\f21d'}\r\n.icon-android:before{content:'\\f12a'}\r\n.icon-angrybirds:before{content:'\\f3c1'}\r\n.icon-antenna:before{content:'\\f3ec'}\r\n.icon-apache-feather:before{content:'\\f056'}\r\n.icon-aperture:before{content:'\\f356'}\r\n.icon-appointment-agenda:before{content:'\\f26c'}\r\n.icon-archive:before{content:'\\f171'}\r\n.icon-arrow-down:before{content:'\\f2fe'}\r\n.icon-arrow-left:before{content:'\\f305'}\r\n.icon-arrow-right:before{content:'\\f304'}\r\n.icon-arrow-up:before{content:'\\f301'}\r\n.icon-asterisk:before{content:'\\f317'}\r\n.icon-asteriskalt:before{content:'\\002a'}\r\n.icon-at:before{content:'\\40'}\r\n.icon-atari:before{content:'\\f3b9'}\r\n.icon-authentication-keyalt:before{content:'\\f051'}\r\n.icon-automobile-car:before{content:'\\f239'}\r\n.icon-autorespond:before{content:'\\f08e'}\r\n.icon-avatar:before{content:'\\f15a'}\r\n.icon-avataralt:before{content:'\\f161'}\r\n.icon-avengers:before{content:'\\f342'}\r\n.icon-awstats:before{content:'\\f04c'}\r\n.icon-axe:before{content:'\\f2ef'}\r\n.icon-backup-vault:before{content:'\\f004'}\r\n.icon-backupalt-vaultalt:before{content:'\\f005'}\r\n.icon-backupwizard:before{content:'\\f05f'}\r\n.icon-backward:before{content:'\\f183'}\r\n.icon-bag:before{content:'\\f234'}\r\n.icon-baloon:before{content:'\\f405'}\r\n.icon-ban-circle:before{content:'\\f313'}\r\n.icon-banana:before{content:'\\f3f4'}\r\n.icon-bandwidth:before{content:'\\f006'}\r\n.icon-bank:before{content:'\\f262'}\r\n.icon-barchart:before{content:'\\f02f'}\r\n.icon-barchartalt:before{content:'\\f07d'}\r\n.icon-barcode:before{content:'\\f276'}\r\n.icon-basecamp:before{content:'\\f160'}\r\n.icon-basketball:before{content:'\\f2e9'}\r\n.icon-bat:before{content:'\\f3d3'}\r\n.icon-batman:before{content:'\\f348'}\r\n.icon-batteryaltcharging:before{content:'\\f104'}\r\n.icon-batteryaltfull:before{content:'\\f101'}\r\n.icon-batteryaltsixty:before{content:'\\f102'}\r\n.icon-batteryaltthird:before{content:'\\f103'}\r\n.icon-batterycharged:before{content:'\\f0f4'}\r\n.icon-batterycharging:before{content:'\\f0f3'}\r\n.icon-batteryeighty:before{content:'\\f0f9'}\r\n.icon-batteryempty:before{content:'\\f0f5'}\r\n.icon-batteryforty:before{content:'\\f0f7'}\r\n.icon-batteryfull:before{content:'\\f0fa'}\r\n.icon-batterysixty:before{content:'\\f0f8'}\r\n.icon-batterytwenty:before{content:'\\f0f6'}\r\n.icon-bed:before{content:'\\f2b9'}\r\n.icon-beer:before{content:'\\f244'}\r\n.icon-bell:before{content:'\\2407'}\r\n.icon-bigger:before{content:'\\f30a'}\r\n.icon-bill:before{content:'\\f278'}\r\n.icon-binary:before{content:'\\f087'}\r\n.icon-binoculars-searchalt:before{content:'\\f2a0'}\r\n.icon-birdhouse:before{content:'\\f390'}\r\n.icon-birthday:before{content:'\\f36b'}\r\n.icon-bishop:before{content:'\\f2f9'}\r\n.icon-blackberry:before{content:'\\f421'}\r\n.icon-blankstare:before{content:'\\f13e'}\r\n.icon-blogger-blog:before{content:'\\f167'}\r\n.icon-bluetooth:before{content:'\\f12b'}\r\n.icon-bluetoothconnected:before{content:'\\f386'}\r\n.icon-boardgame:before{content:'\\f2d9'}\r\n.icon-boat:before{content:'\\f21a'}\r\n.icon-bold:before{content:'\\f1f4'}\r\n.icon-bomb:before{content:'\\f2dc'}\r\n.icon-bone:before{content:'\\f35f'}\r\n.icon-book:before{content:'\\f1ba'}\r\n.icon-bookmark:before{content:'\\f143'}\r\n.icon-boombox:before{content:'\\f195'}\r\n.icon-bottle:before{content:'\\f361'}\r\n.icon-bow:before{content:'\\f2ee'}\r\n.icon-bowling:before{content:'\\f2f3'}\r\n.icon-bowlingpins:before{content:'\\f3d2'}\r\n.icon-bowtie:before{content:'\\f37f'}\r\n.icon-boxtrapper-mousetrap:before{content:'\\f046'}\r\n.icon-braces:before{content:'\\f0b4'}\r\n.icon-braille0:before{content:'\\f44b'}\r\n.icon-braille1:before{content:'\\f44c'}\r\n.icon-braille2:before{content:'\\f44d'}\r\n.icon-braille3:before{content:'\\f44e'}\r\n.icon-braille4:before{content:'\\f44f'}\r\n.icon-braille5:before{content:'\\f450'}\r\n.icon-braille6:before{content:'\\f451'}\r\n.icon-braille7:before{content:'\\f452'}\r\n.icon-braille8:before{content:'\\f453'}\r\n.icon-braille9:before{content:'\\f454'}\r\n.icon-braillea:before{content:'\\f431'}\r\n.icon-brailleb:before{content:'\\f432'}\r\n.icon-braillec:before{content:'\\f433'}\r\n.icon-brailled:before{content:'\\f434'}\r\n.icon-braillee:before{content:'\\f435'}\r\n.icon-braillef:before{content:'\\f436'}\r\n.icon-brailleg:before{content:'\\f437'}\r\n.icon-brailleh:before{content:'\\f438'}\r\n.icon-braillei:before{content:'\\f439'}\r\n.icon-braillej:before{content:'\\f43a'}\r\n.icon-braillek:before{content:'\\f43b'}\r\n.icon-braillel:before{content:'\\f43c'}\r\n.icon-braillem:before{content:'\\f43d'}\r\n.icon-braillen:before{content:'\\f43e'}\r\n.icon-brailleo:before{content:'\\f43f'}\r\n.icon-braillep:before{content:'\\f440'}\r\n.icon-brailleq:before{content:'\\f441'}\r\n.icon-brailler:before{content:'\\f442'}\r\n.icon-brailles:before{content:'\\f443'}\r\n.icon-braillespace:before{content:'\\f455'}\r\n.icon-braillet:before{content:'\\f444'}\r\n.icon-brailleu:before{content:'\\f445'}\r\n.icon-braillev:before{content:'\\f446'}\r\n.icon-braillew:before{content:'\\f447'}\r\n.icon-braillex:before{content:'\\f448'}\r\n.icon-brailley:before{content:'\\f449'}\r\n.icon-braillez:before{content:'\\f44a'}\r\n.icon-brain:before{content:'\\f3e3'}\r\n.icon-bread:before{content:'\\f42f'}\r\n.icon-breakable:before{content:'\\f41c'}\r\n.icon-briefcase:before{content:'\\f25e'}\r\n.icon-briefcasethree:before{content:'\\f25f'}\r\n.icon-briefcasetwo:before{content:'\\f0a2'}\r\n.icon-brightness:before{content:'\\f10a'}\r\n.icon-brightnessfull:before{content:'\\f10b'}\r\n.icon-brightnesshalf:before{content:'\\f10c'}\r\n.icon-broom:before{content:'\\f40a'}\r\n.icon-browser:before{content:'\\f159'}\r\n.icon-brush:before{content:'\\f1b8'}\r\n.icon-bucket:before{content:'\\f1b5'}\r\n.icon-bug:before{content:'\\f0a7'}\r\n.icon-bullhorn:before{content:'\\f287'}\r\n.icon-bus:before{content:'\\f241'}\r\n.icon-businesscardalt:before{content:'\\f137'}\r\n.icon-buttona:before{content:'\\f2bf'}\r\n.icon-buttonb:before{content:'\\f2c0'}\r\n.icon-buttonx:before{content:'\\f2c1'}\r\n.icon-buttony:before{content:'\\f2c2'}\r\n.icon-cactus-desert:before{content:'\\f22c'}\r\n.icon-calculator:before{content:'\\f258'}\r\n.icon-calculatoralt:before{content:'\\f265'}\r\n.icon-calendar:before{content:'\\f20f'}\r\n.icon-calendaralt-cronjobs:before{content:'\\f0a1'}\r\n.icon-camera:before{content:'\\f19b'}\r\n.icon-candle:before{content:'\\f29a'}\r\n.icon-candy:before{content:'\\f42d'}\r\n.icon-candycane:before{content:'\\f37d'}\r\n.icon-cannon:before{content:'\\f401'}\r\n.icon-canvas:before{content:'\\f1c8'}\r\n.icon-canvasrulers:before{content:'\\f205'}\r\n.icon-capacitator:before{content:'\\f3e8'}\r\n.icon-capslock:before{content:'\\21ea'}\r\n.icon-captainamerica:before{content:'\\f341'}\r\n.icon-carrot:before{content:'\\f3f2'}\r\n.icon-cashregister:before{content:'\\f26e'}\r\n.icon-cassette:before{content:'\\f377'}\r\n.icon-cd-dvd:before{content:'\\f0cd'}\r\n.icon-certificate:before{content:'\\f277'}\r\n.icon-certificatealt:before{content:'\\f058'}\r\n.icon-certificatethree:before{content:'\\f059'}\r\n.icon-cgi:before{content:'\\f086'}\r\n.icon-cgicenter:before{content:'\\f079'}\r\n.icon-chair:before{content:'\\2441'}\r\n.icon-chat:before{content:'\\f162'}\r\n.icon-check:before{content:'\\f310'}\r\n.icon-checkboxalt:before{content:'\\f311'}\r\n.icon-checkin:before{content:'\\f223'}\r\n.icon-checkinalt:before{content:'\\f227'}\r\n.icon-chef:before{content:'\\f3ce'}\r\n.icon-cherry:before{content:'\\f35d'}\r\n.icon-chevron-down:before{content:'\\f48b'}\r\n.icon-chevron-left:before{content:'\\f489'}\r\n.icon-chevron-right:before{content:'\\f488'}\r\n.icon-chevron-up:before{content:'\\f48a'}\r\n.icon-chevrons:before{content:'\\f0b5'}\r\n.icon-chicken:before{content:'\\f359'}\r\n.icon-chocolate:before{content:'\\f367'}\r\n.icon-christiancross:before{content:'\\f40f'}\r\n.icon-christmastree:before{content:'\\f37b'}\r\n.icon-chrome:before{content:'\\f14e'}\r\n.icon-cigarette:before{content:'\\f229'}\r\n.icon-circle-arrow-down:before{content:'\\f475'}\r\n.icon-circle-arrow-left:before{content:'\\f472'}\r\n.icon-circle-arrow-right:before{content:'\\f473'}\r\n.icon-circle-arrow-up:before{content:'\\f474'}\r\n.icon-circleadd:before{content:'\\f0d1'}\r\n.icon-circledelete:before{content:'\\f0d2'}\r\n.icon-circledown:before{content:'\\f3c7'}\r\n.icon-circleleft:before{content:'\\f3c6'}\r\n.icon-circleright:before{content:'\\f3c9'}\r\n.icon-circleselect:before{content:'\\f0d3'}\r\n.icon-circleselection:before{content:'\\f1b1'}\r\n.icon-circleup:before{content:'\\f3c8'}\r\n.icon-clearformatting:before{content:'\\f1e7'}\r\n.icon-clipboard-paste:before{content:'\\f0cb'}\r\n.icon-clockalt-timealt:before{content:'\\f22b'}\r\n.icon-closetab:before{content:'\\f170'}\r\n.icon-closewindow:before{content:'\\f16e'}\r\n.icon-cloud:before{content:'\\f0b9'}\r\n.icon-clouddownload:before{content:'\\f0bb'}\r\n.icon-cloudhosting:before{content:'\\f007'}\r\n.icon-cloudsync:before{content:'\\f0bc'}\r\n.icon-cloudupload:before{content:'\\f0ba'}\r\n.icon-clubs:before{content:'\\f2f6'}\r\n.icon-cmd:before{content:'\\f33a'}\r\n.icon-cms:before{content:'\\f036'}\r\n.icon-cmsmadesimple:before{content:'\\f0b0'}\r\n.icon-codeigniter:before{content:'\\f077'}\r\n.icon-coffee:before{content:'\\f235'}\r\n.icon-coffeebean:before{content:'\\f366'}\r\n.icon-cog:before{content:'\\f00f'}\r\n.icon-colocation:before{content:'\\f024'}\r\n.icon-colocationalt:before{content:'\\f023'}\r\n.icon-colors:before{content:'\\f1e6'}\r\n.icon-comment:before{content:'\\f12c'}\r\n.icon-commentout:before{content:'\\f080'}\r\n.icon-commentround:before{content:'\\f155'}\r\n.icon-commentroundempty:before{content:'\\f156'}\r\n.icon-commentroundtyping:before{content:'\\f157'}\r\n.icon-commentroundtypingempty:before{content:'\\f158'}\r\n.icon-commenttyping:before{content:'\\f12d'}\r\n.icon-compass:before{content:'\\263c'}\r\n.icon-concretefive:before{content:'\\f0af'}\r\n.icon-contact-businesscard:before{content:'\\f040'}\r\n.icon-controllernes:before{content:'\\f2d2'}\r\n.icon-controllerps:before{content:'\\f2d1'}\r\n.icon-controllersnes:before{content:'\\f2d3'}\r\n.icon-controlpanel:before{content:'\\f008'}\r\n.icon-controlpanelalt:before{content:'\\f009'}\r\n.icon-cooling:before{content:'\\f00a'}\r\n.icon-coppermine:before{content:'\\f0a4'}\r\n.icon-copy:before{content:'\\f0c9'}\r\n.icon-copyright:before{content:'\\00a9'}\r\n.icon-coupon:before{content:'\\f254'}\r\n.icon-cpanel:before{content:'\\f072'}\r\n.icon-cplusplus:before{content:'\\f0b1'}\r\n.icon-cpu-processor:before{content:'\\f002'}\r\n.icon-cpualt-processoralt:before{content:'\\f003'}\r\n.icon-crayon:before{content:'\\f383'}\r\n.icon-createfile:before{content:'\\f0c6'}\r\n.icon-createfolder:before{content:'\\f0da'}\r\n.icon-creativecommons:before{content:'\\f1fc'}\r\n.icon-creditcard:before{content:'\\f279'}\r\n.icon-cricket:before{content:'\\f418'}\r\n.icon-croisant:before{content:'\\f29f'}\r\n.icon-crop:before{content:'\\f1af'}\r\n.icon-crown:before{content:'\\f28f'}\r\n.icon-csharp:before{content:'\\f0b2'}\r\n.icon-cssthree:before{content:'\\f06a'}\r\n.icon-cup-coffeealt:before{content:'\\f24b'}\r\n.icon-cupcake:before{content:'\\f35b'}\r\n.icon-curling:before{content:'\\f3d7'}\r\n.icon-cursor:before{content:'\\f0dc'}\r\n.icon-cut-scissors:before{content:'\\f0ca'}\r\n.icon-dagger:before{content:'\\2020'}\r\n.icon-danger:before{content:'\\f415'}\r\n.icon-dart:before{content:'\\f3d4'}\r\n.icon-darthvader:before{content:'\\f34a'}\r\n.icon-database:before{content:'\\f00b'}\r\n.icon-databaseadd:before{content:'\\f00c'}\r\n.icon-databasedelete:before{content:'\\f00d'}\r\n.icon-davidstar:before{content:'\\f40e'}\r\n.icon-dcsource:before{content:'\\f3e9'}\r\n.icon-dedicatedserver:before{content:'\\f00e'}\r\n.icon-deletefile:before{content:'\\f0c7'}\r\n.icon-deletefolder:before{content:'\\f0db'}\r\n.icon-delicious:before{content:'\\f152'}\r\n.icon-designcontest:before{content:'\\f351'}\r\n.icon-desklamp:before{content:'\\f412'}\r\n.icon-dialpad:before{content:'\\f399'}\r\n.icon-diamond:before{content:'\\2666'}\r\n.icon-diamonds:before{content:'\\f2f7'}\r\n.icon-die-dice:before{content:'\\f2d8'}\r\n.icon-diefive:before{content:'\\f3fb'}\r\n.icon-diefour:before{content:'\\f3fa'}\r\n.icon-dieone:before{content:'\\f3f7'}\r\n.icon-diesix:before{content:'\\f3fc'}\r\n.icon-diethree:before{content:'\\f3f9'}\r\n.icon-dietwo:before{content:'\\f3f8'}\r\n.icon-diode:before{content:'\\f3e7'}\r\n.icon-director:before{content:'\\f2ae'}\r\n.icon-diskspace:before{content:'\\f096'}\r\n.icon-distributehorizontalcenters:before{content:'\\f1dc'}\r\n.icon-distributeverticalcenters:before{content:'\\f1db'}\r\n.icon-divide:before{content:'\\00f7'}\r\n.icon-dna:before{content:'\\f409'}\r\n.icon-dnszone:before{content:'\\f07f'}\r\n.icon-document:before{content:'\\f0c2'}\r\n.icon-doghouse:before{content:'\\f38f'}\r\n.icon-dollar:before{content:'\\24'}\r\n.icon-dollaralt:before{content:'\\f259'}\r\n.icon-dolphinsoftware:before{content:'\\f064'}\r\n.icon-domain:before{content:'\\f01d'}\r\n.icon-domainaddon:before{content:'\\f053'}\r\n.icon-domino:before{content:'\\f3d5'}\r\n.icon-donut:before{content:'\\f3ca'}\r\n.icon-downleft:before{content:'\\f2ff'}\r\n.icon-download:before{content:'\\f47b'}\r\n.icon-download-alt:before{content:'\\f11a'}\r\n.icon-downright:before{content:'\\f300'}\r\n.icon-draft:before{content:'\\f172'}\r\n.icon-dreamweaver:before{content:'\\f1d0'}\r\n.icon-dribbble:before{content:'\\f14c'}\r\n.icon-dropmenu:before{content:'\\f0a5'}\r\n.icon-drupal:before{content:'\\f075'}\r\n.icon-drwho:before{content:'\\f3c0'}\r\n.icon-edit:before{content:'\\f47c'}\r\n.icon-editalt:before{content:'\\f0f2'}\r\n.icon-egg:before{content:'\\f407'}\r\n.icon-eightball:before{content:'\\f36e'}\r\n.icon-eject:before{content:'\\f199'}\r\n.icon-elipse:before{content:'\\f1bc'}\r\n.icon-emailalt:before{content:'\\f136'}\r\n.icon-emailexport:before{content:'\\f176'}\r\n.icon-emailforward:before{content:'\\f175'}\r\n.icon-emailforwarders:before{content:'\\f049'}\r\n.icon-emailimport:before{content:'\\f177'}\r\n.icon-emailrefresh:before{content:'\\f174'}\r\n.icon-emailtrace:before{content:'\\f091'}\r\n.icon-emergency:before{content:'\\f246'}\r\n.icon-emptycart:before{content:'\\f395'}\r\n.icon-enter:before{content:'\\f323'}\r\n.icon-envelope:before{content:'\\f028'}\r\n.icon-equalizer:before{content:'\\f18e'}\r\n.icon-equalizeralt:before{content:'\\f18f'}\r\n.icon-equals:before{content:'\\f30c'}\r\n.icon-eraser:before{content:'\\f1f1'}\r\n.icon-erroralt:before{content:'\\f05a'}\r\n.icon-euro:before{content:'\\20ac'}\r\n.icon-euroalt:before{content:'\\f25a'}\r\n.icon-evernote:before{content:'\\f17c'}\r\n.icon-exchange-currency:before{content:'\\f26b'}\r\n.icon-exclamation-sign:before{content:'\\f04a'}\r\n.icon-excludeshape:before{content:'\\f200'}\r\n.icon-exit:before{content:'\\f324'}\r\n.icon-explorerwindow:before{content:'\\f0d9'}\r\n.icon-exportfile:before{content:'\\f32f'}\r\n.icon-exposure:before{content:'\\f1de'}\r\n.icon-extinguisher:before{content:'\\f2b7'}\r\n.icon-eye-close:before{content:'\\f481'}\r\n.icon-eye-open:before{content:'\\f2b5'}\r\n.icon-eye-view:before{content:'\\f280'}\r\n.icon-eyedropper:before{content:'\\f1ad'}\r\n.icon-facebook:before{content:'\\f140'}\r\n.icon-facebookalt:before{content:'\\f14b'}\r\n.icon-facetime-video:before{content:'\\f19c'}\r\n.icon-factory:before{content:'\\f27a'}\r\n.icon-fantastico:before{content:'\\f0ae'}\r\n.icon-faq:before{content:'\\f099'}\r\n.icon-fast-backward:before{content:'\\f47e'}\r\n.icon-fast-forward:before{content:'\\f47f'}\r\n.icon-fastdown:before{content:'\\f31d'}\r\n.icon-fastleft:before{content:'\\f31a'}\r\n.icon-fastright:before{content:'\\f31b'}\r\n.icon-fastup:before{content:'\\f31c'}\r\n.icon-favoritefile:before{content:'\\f381'}\r\n.icon-favoritefolder:before{content:'\\f382'}\r\n.icon-featheralt-write:before{content:'\\f1c5'}\r\n.icon-fedora:before{content:'\\f3f1'}\r\n.icon-fence:before{content:'\\f2af'}\r\n.icon-file:before{content:'\\f0d6'}\r\n.icon-film:before{content:'\\f19d'}\r\n.icon-filmstrip:before{content:'\\f3ed'}\r\n.icon-filter:before{content:'\\f05c'}\r\n.icon-finder:before{content:'\\f398'}\r\n.icon-fire:before{content:'\\f27f'}\r\n.icon-firefox:before{content:'\\f420'}\r\n.icon-firewall:before{content:'\\f021'}\r\n.icon-firewire:before{content:'\\f0fc'}\r\n.icon-firstaid:before{content:'\\f2ba'}\r\n.icon-fish:before{content:'\\f35a'}\r\n.icon-fishbone:before{content:'\\f42b'}\r\n.icon-flag:before{content:'\\f487'}\r\n.icon-flagalt:before{content:'\\f232'}\r\n.icon-flagtriangle:before{content:'\\f20b'}\r\n.icon-flash:before{content:'\\f1cf'}\r\n.icon-flashlight:before{content:'\\f299'}\r\n.icon-flashplayer:before{content:'\\f070'}\r\n.icon-flaskfull:before{content:'\\f27e'}\r\n.icon-flickr:before{content:'\\f146'}\r\n.icon-flower:before{content:'\\f2a5'}\r\n.icon-flowernew:before{content:'\\f3a8'}\r\n.icon-folder-close:before{content:'\\f094'}\r\n.icon-folder-open:before{content:'\\f483'}\r\n.icon-foldertree:before{content:'\\f0f0'}\r\n.icon-font:before{content:'\\f1ae'}\r\n.icon-foodtray:before{content:'\\f3d0'}\r\n.icon-football-soccer:before{content:'\\f2eb'}\r\n.icon-forbiddenalt:before{content:'\\f314'}\r\n.icon-forest-tree:before{content:'\\f217'}\r\n.icon-forestalt-treealt:before{content:'\\f21c'}\r\n.icon-fork:before{content:'\\22d4'}\r\n.icon-forklift:before{content:'\\f29b'}\r\n.icon-form:before{content:'\\f08c'}\r\n.icon-forrst:before{content:'\\f14d'}\r\n.icon-fort:before{content:'\\f400'}\r\n.icon-forward:before{content:'\\f182'}\r\n.icon-fourohfour:before{content:'\\f09d'}\r\n.icon-foursquare:before{content:'\\f42a'}\r\n.icon-freeway:before{content:'\\f24a'}\r\n.icon-fridge:before{content:'\\f40d'}\r\n.icon-fries:before{content:'\\f36a'}\r\n.icon-ftp:before{content:'\\f029'}\r\n.icon-ftpaccounts:before{content:'\\f07b'}\r\n.icon-ftpsession:before{content:'\\f07c'}\r\n.icon-fullscreen:before{content:'\\f485'}\r\n.icon-gameboy:before{content:'\\f403'}\r\n.icon-gamecursor:before{content:'\\f2d0'}\r\n.icon-gasstation:before{content:'\\f216'}\r\n.icon-gearfour:before{content:'\\f3a7'}\r\n.icon-ghost:before{content:'\\f2da'}\r\n.icon-gift:before{content:'\\f260'}\r\n.icon-github:before{content:'\\f081'}\r\n.icon-glass:before{content:'\\f236'}\r\n.icon-glasses:before{content:'\\f295'}\r\n.icon-glassesalt:before{content:'\\f39d'}\r\n.icon-globe:before{content:'\\f01b'}\r\n.icon-globealt:before{content:'\\f36c'}\r\n.icon-glue:before{content:'\\f36d'}\r\n.icon-gmail:before{content:'\\f150'}\r\n.icon-golf:before{content:'\\f2f1'}\r\n.icon-googledrive:before{content:'\\f163'}\r\n.icon-googleplus:before{content:'\\f165'}\r\n.icon-googlewallet:before{content:'\\f270'}\r\n.icon-gpsoff-gps:before{content:'\\f21e'}\r\n.icon-gpson:before{content:'\\f21f'}\r\n.icon-gpu-graphicscard:before{content:'\\f108'}\r\n.icon-gradient:before{content:'\\2207'}\r\n.icon-grails:before{content:'\\f085'}\r\n.icon-greenlantern:before{content:'\\f340'}\r\n.icon-greenlightbulb:before{content:'\\f406'}\r\n.icon-grooveshark:before{content:'\\f3a2'}\r\n.icon-groups-friends:before{content:'\\f134'}\r\n.icon-guitar:before{content:'\\f19a'}\r\n.icon-halflife:before{content:'\\f3ba'}\r\n.icon-halo:before{content:'\\f3bb'}\r\n.icon-hamburger:before{content:'\\f2b3'}\r\n.icon-hammer:before{content:'\\f291'}\r\n.icon-hand-down:before{content:'\\f387'}\r\n.icon-hand-left:before{content:'\\f389'}\r\n.icon-hand-right:before{content:'\\f388'}\r\n.icon-hand-up:before{content:'\\f0dd'}\r\n.icon-handcuffs:before{content:'\\f393'}\r\n.icon-handdrag:before{content:'\\f0de'}\r\n.icon-handtwofingers:before{content:'\\f0df'}\r\n.icon-hanger:before{content:'\\f2ab'}\r\n.icon-happy:before{content:'\\f13c'}\r\n.icon-harrypotter:before{content:'\\f38b'}\r\n.icon-hdd:before{content:'\\f02a'}\r\n.icon-hdtv:before{content:'\\f1a0'}\r\n.icon-headphones:before{content:'\\f180'}\r\n.icon-headphonesalt:before{content:'\\f1a3'}\r\n.icon-heart:before{content:'\\f131'}\r\n.icon-heartempty-love:before{content:'\\f132'}\r\n.icon-hearts:before{content:'\\f2f4'}\r\n.icon-helicopter:before{content:'\\f3e4'}\r\n.icon-hexagon-polygon:before{content:'\\f1be'}\r\n.icon-hockey:before{content:'\\f3d9'}\r\n.icon-home:before{content:'\\21b8'}\r\n.icon-homealt:before{content:'\\f02b'}\r\n.icon-hospital:before{content:'\\f247'}\r\n.icon-hotdog:before{content:'\\f3cc'}\r\n.icon-hotlinkprotection:before{content:'\\f050'}\r\n.icon-hourglassalt:before{content:'\\f122'}\r\n.icon-html:before{content:'\\f068'}\r\n.icon-htmlfive:before{content:'\\f069'}\r\n.icon-hydrant:before{content:'\\f3ff'}\r\n.icon-icecream:before{content:'\\f2a4'}\r\n.icon-icecreamalt:before{content:'\\f289'}\r\n.icon-illustrator:before{content:'\\f1ce'}\r\n.icon-imac:before{content:'\\f0fb'}\r\n.icon-images-gallery:before{content:'\\f09f'}\r\n.icon-importcontacts:before{content:'\\f092'}\r\n.icon-importfile:before{content:'\\f32e'}\r\n.icon-inbox:before{content:'\\f17a'}\r\n.icon-inboxalt:before{content:'\\f178'}\r\n.icon-incomingcall:before{content:'\\f15d'}\r\n.icon-indent-left:before{content:'\\f1f2'}\r\n.icon-indent-right:before{content:'\\f1f3'}\r\n.icon-indexmanager:before{content:'\\f09e'}\r\n.icon-infinity:before{content:'\\221e'}\r\n.icon-info-sign:before{content:'\\f315'}\r\n.icon-infographic:before{content:'\\f336'}\r\n.icon-ink:before{content:'\\f3f6'}\r\n.icon-inkpen:before{content:'\\f1ac'}\r\n.icon-insertbarchart:before{content:'\\f1e5'}\r\n.icon-insertpicture:before{content:'\\f1e0'}\r\n.icon-insertpicturecenter:before{content:'\\f1e3'}\r\n.icon-insertpictureleft:before{content:'\\f1e1'}\r\n.icon-insertpictureright:before{content:'\\f1e2'}\r\n.icon-insertpiechart:before{content:'\\f1e4'}\r\n.icon-instagram:before{content:'\\f14a'}\r\n.icon-install:before{content:'\\f128'}\r\n.icon-intel:before{content:'\\f01f'}\r\n.icon-intersection:before{content:'\\2229'}\r\n.icon-intersectshape:before{content:'\\f1ff'}\r\n.icon-invert:before{content:'\\f1df'}\r\n.icon-invoice:before{content:'\\f3e5'}\r\n.icon-ipcontrol:before{content:'\\f08b'}\r\n.icon-iphone:before{content:'\\f0e6'}\r\n.icon-ipod:before{content:'\\f190'}\r\n.icon-ironman:before{content:'\\f349'}\r\n.icon-islam:before{content:'\\f410'}\r\n.icon-island:before{content:'\\f392'}\r\n.icon-italic:before{content:'\\f1f5'}\r\n.icon-jar:before{content:'\\f2b6'}\r\n.icon-jason:before{content:'\\f38c'}\r\n.icon-java:before{content:'\\f083'}\r\n.icon-joomla:before{content:'\\f073'}\r\n.icon-joystickarcade:before{content:'\\f2d4'}\r\n.icon-joystickatari:before{content:'\\f2d5'}\r\n.icon-jquery:before{content:'\\f06b'}\r\n.icon-jqueryui:before{content:'\\f06c'}\r\n.icon-kerning:before{content:'\\f1e9'}\r\n.icon-key:before{content:'\\f093'}\r\n.icon-keyboard:before{content:'\\f119'}\r\n.icon-keyboardalt:before{content:'\\f105'}\r\n.icon-keyboarddelete:before{content:'\\f3a6'}\r\n.icon-kidney:before{content:'\\f3e0'}\r\n.icon-king:before{content:'\\f2fc'}\r\n.icon-knife:before{content:'\\f214'}\r\n.icon-knight:before{content:'\\f2fb'}\r\n.icon-knob:before{content:'\\f376'}\r\n.icon-lab-flask:before{content:'\\f27d'}\r\n.icon-lamp:before{content:'\\f2b1'}\r\n.icon-lan:before{content:'\\f0ee'}\r\n.icon-language:before{content:'\\f042'}\r\n.icon-laptop:before{content:'\\f0d8'}\r\n.icon-lasso:before{content:'\\f396'}\r\n.icon-lastfm:before{content:'\\f3a3'}\r\n.icon-laugh:before{content:'\\f13f'}\r\n.icon-law:before{content:'\\f263'}\r\n.icon-layers:before{content:'\\f1ca'}\r\n.icon-layersalt:before{content:'\\f1cb'}\r\n.icon-leaf:before{content:'\\f039'}\r\n.icon-leechprotect:before{content:'\\f07e'}\r\n.icon-legacyfilemanager:before{content:'\\f095'}\r\n.icon-lego:before{content:'\\f370'}\r\n.icon-lifeempty:before{content:'\\f2e1'}\r\n.icon-lifefull:before{content:'\\f2e3'}\r\n.icon-lifehacker:before{content:'\\f380'}\r\n.icon-lifehalf:before{content:'\\f2e2'}\r\n.icon-lifepreserver:before{content:'\\f015'}\r\n.icon-lightbulb-idea:before{content:'\\f338'}\r\n.icon-lighthouse:before{content:'\\f3e6'}\r\n.icon-lightning:before{content:'\\f231'}\r\n.icon-lightningalt:before{content:'\\f2a8'}\r\n.icon-line:before{content:'\\f1bf'}\r\n.icon-lineheight:before{content:'\\f1c0'}\r\n.icon-link:before{content:'\\f022'}\r\n.icon-linkalt:before{content:'\\f333'}\r\n.icon-linkedin:before{content:'\\f166'}\r\n.icon-linux:before{content:'\\f01a'}\r\n.icon-list:before{content:'\\f111'}\r\n.icon-list-alt:before{content:'\\f480'}\r\n.icon-liver:before{content:'\\f3e2'}\r\n.icon-loading-hourglass:before{content:'\\f123'}\r\n.icon-loadingalt:before{content:'\\f339'}\r\n.icon-lock:before{content:'\\f0be'}\r\n.icon-lockalt-keyhole:before{content:'\\f0eb'}\r\n.icon-lollypop:before{content:'\\f3ee'}\r\n.icon-lungs:before{content:'\\f3df'}\r\n.icon-macpro:before{content:'\\f3a5'}\r\n.icon-macro-plant:before{content:'\\f1c6'}\r\n.icon-magazine:before{content:'\\f1ec'}\r\n.icon-magento:before{content:'\\f06e'}\r\n.icon-magnet:before{content:'\\f281'}\r\n.icon-mailbox:before{content:'\\f044'}\r\n.icon-mailinglists:before{content:'\\f090'}\r\n.icon-man-male:before{content:'\\f2a1'}\r\n.icon-managedhosting:before{content:'\\f038'}\r\n.icon-map:before{content:'\\f209'}\r\n.icon-map-marker:before{content:'\\f220'}\r\n.icon-marker:before{content:'\\f204'}\r\n.icon-marvin:before{content:'\\f3dd'}\r\n.icon-mastercard:before{content:'\\f266'}\r\n.icon-maximize:before{content:'\\f30f'}\r\n.icon-medal:before{content:'\\f2e5'}\r\n.icon-medalbronze:before{content:'\\f2e8'}\r\n.icon-medalgold:before{content:'\\f2e6'}\r\n.icon-medalsilver:before{content:'\\f2e7'}\r\n.icon-mediarepeat:before{content:'\\f187'}\r\n.icon-men:before{content:'\\f24c'}\r\n.icon-menu:before{content:'\\f127'}\r\n.icon-merge:before{content:'\\f334'}\r\n.icon-mergecells:before{content:'\\f327'}\r\n.icon-mergeshapes:before{content:'\\f201'}\r\n.icon-metro-subway:before{content:'\\f24f'}\r\n.icon-metronome:before{content:'\\f374'}\r\n.icon-mickeymouse:before{content:'\\f37a'}\r\n.icon-microphone:before{content:'\\f191'}\r\n.icon-microscope:before{content:'\\f283'}\r\n.icon-microsd:before{content:'\\f107'}\r\n.icon-microwave:before{content:'\\f42e'}\r\n.icon-mimetype:before{content:'\\f057'}\r\n.icon-minimize:before{content:'\\f30e'}\r\n.icon-minus:before{content:'\\2212'}\r\n.icon-minus-sign:before{content:'\\f477'}\r\n.icon-missedcall:before{content:'\\f15c'}\r\n.icon-mobile:before{content:'\\f0e8'}\r\n.icon-moleskine:before{content:'\\f1f0'}\r\n.icon-money-cash:before{content:'\\f27b'}\r\n.icon-moneybag:before{content:'\\f271'}\r\n.icon-monitor:before{content:'\\f0d5'}\r\n.icon-monstersinc:before{content:'\\f3bd'}\r\n.icon-moon-night:before{content:'\\f207'}\r\n.icon-mouse:before{content:'\\f0d4'}\r\n.icon-mousealt:before{content:'\\f126'}\r\n.icon-move:before{content:'\\f322'}\r\n.icon-movieclapper:before{content:'\\f193'}\r\n.icon-moviereel:before{content:'\\f17f'}\r\n.icon-muffin:before{content:'\\f363'}\r\n.icon-mug:before{content:'\\f24e'}\r\n.icon-mushroom:before{content:'\\f35e'}\r\n.icon-music:before{content:'\\f181'}\r\n.icon-musicalt:before{content:'\\f18d'}\r\n.icon-mutealt:before{content:'\\f0e5'}\r\n.icon-mxentry:before{content:'\\f07a'}\r\n.icon-mybb:before{content:'\\f065'}\r\n.icon-myspace:before{content:'\\f153'}\r\n.icon-mysql-dolphin:before{content:'\\f076'}\r\n.icon-nail:before{content:'\\f428'}\r\n.icon-navigation:before{content:'\\f23a'}\r\n.icon-network:before{content:'\\f0a6'}\r\n.icon-networksignal:before{content:'\\f3a9'}\r\n.icon-news:before{content:'\\f256'}\r\n.icon-newtab:before{content:'\\f16f'}\r\n.icon-newwindow:before{content:'\\f16d'}\r\n.icon-next:before{content:'\\f18a'}\r\n.icon-nexus:before{content:'\\f0e7'}\r\n.icon-nintendods:before{content:'\\f404'}\r\n.icon-nodejs:before{content:'\\f084'}\r\n.icon-notes:before{content:'\\f0d7'}\r\n.icon-notificationbottom:before{content:'\\f144'}\r\n.icon-notificationtop:before{content:'\\f145'}\r\n.icon-nut:before{content:'\\f427'}\r\n.icon-off:before{content:'\\f11d'}\r\n.icon-office-building:before{content:'\\f245'}\r\n.icon-officechair:before{content:'\\f26d'}\r\n.icon-ok:before{content:'\\2713'}\r\n.icon-ok-circle:before{content:'\\f471'}\r\n.icon-ok-sign:before{content:'\\f479'}\r\n.icon-oneup:before{content:'\\f3b7'}\r\n.icon-oneupalt:before{content:'\\f3b6'}\r\n.icon-opencart:before{content:'\\f060'}\r\n.icon-opennewwindow:before{content:'\\f332'}\r\n.icon-orange:before{content:'\\f29e'}\r\n.icon-outbox:before{content:'\\f179'}\r\n.icon-outgoingcall:before{content:'\\f15e'}\r\n.icon-oxwall:before{content:'\\f06d'}\r\n.icon-pacman:before{content:'\\f2db'}\r\n.icon-pageback:before{content:'\\f31e'}\r\n.icon-pagebreak:before{content:'\\f1cc'}\r\n.icon-pageforward:before{content:'\\f31f'}\r\n.icon-pagesetup:before{content:'\\f331'}\r\n.icon-paintbrush:before{content:'\\f1e8'}\r\n.icon-paintroll:before{content:'\\f1fa'}\r\n.icon-palette-painting:before{content:'\\f1b9'}\r\n.icon-paperclip:before{content:'\\f284'}\r\n.icon-paperclipalt:before{content:'\\f285'}\r\n.icon-paperclipvertical:before{content:'\\f286'}\r\n.icon-paperplane:before{content:'\\f296'}\r\n.icon-parentheses:before{content:'\\f3c4'}\r\n.icon-parkeddomain:before{content:'\\f055'}\r\n.icon-password:before{content:'\\f03e'}\r\n.icon-passwordalt:before{content:'\\f03f'}\r\n.icon-pasta:before{content:'\\f408'}\r\n.icon-patch:before{content:'\\f2a3'}\r\n.icon-path:before{content:'\\f169'}\r\n.icon-pause:before{content:'\\f186'}\r\n.icon-paw-pet:before{content:'\\f29d'}\r\n.icon-pawn:before{content:'\\f2f8'}\r\n.icon-paypal:before{content:'\\f267'}\r\n.icon-peace:before{content:'\\f2a7'}\r\n.icon-pen:before{content:'\\f1ee'}\r\n.icon-pencil:before{content:'\\f1b7'}\r\n.icon-pepperoni:before{content:'\\f364'}\r\n.icon-percent:before{content:'\\25'}\r\n.icon-perl-camel:before{content:'\\f0b6'}\r\n.icon-perlalt:before{content:'\\f0b7'}\r\n.icon-phone-call:before{content:'\\f14f'}\r\n.icon-phonealt:before{content:'\\f15b'}\r\n.icon-phonebook:before{content:'\\f149'}\r\n.icon-phonebookalt:before{content:'\\f135'}\r\n.icon-phonemic:before{content:'\\f391'}\r\n.icon-phoneold:before{content:'\\f148'}\r\n.icon-photoshop:before{content:'\\f1cd'}\r\n.icon-php:before{content:'\\f09c'}\r\n.icon-phpbb:before{content:'\\f063'}\r\n.icon-phppear:before{content:'\\f09b'}\r\n.icon-piano:before{content:'\\f19e'}\r\n.icon-picture:before{content:'\\22b7'}\r\n.icon-pictureframe:before{content:'\\f41e'}\r\n.icon-piggybank:before{content:'\\f257'}\r\n.icon-pigpena:before{content:'\\f456'}\r\n.icon-pigpenb:before{content:'\\f457'}\r\n.icon-pigpenc:before{content:'\\f458'}\r\n.icon-pigpend:before{content:'\\f459'}\r\n.icon-pigpene:before{content:'\\f45a'}\r\n.icon-pigpenf:before{content:'\\f45b'}\r\n.icon-pigpeng:before{content:'\\f45c'}\r\n.icon-pigpenh:before{content:'\\f45d'}\r\n.icon-pigpeni:before{content:'\\f45e'}\r\n.icon-pigpenj:before{content:'\\f45f'}\r\n.icon-pigpenk:before{content:'\\f460'}\r\n.icon-pigpenl:before{content:'\\f461'}\r\n.icon-pigpenm:before{content:'\\f462'}\r\n.icon-pigpenn:before{content:'\\f463'}\r\n.icon-pigpeno:before{content:'\\f464'}\r\n.icon-pigpenp:before{content:'\\f465'}\r\n.icon-pigpenq:before{content:'\\f466'}\r\n.icon-pigpenr:before{content:'\\f467'}\r\n.icon-pigpens:before{content:'\\f468'}\r\n.icon-pigpent:before{content:'\\f469'}\r\n.icon-pigpenu:before{content:'\\f46a'}\r\n.icon-pigpenv:before{content:'\\f46b'}\r\n.icon-pigpenw:before{content:'\\f46c'}\r\n.icon-pigpenx:before{content:'\\f46d'}\r\n.icon-pigpeny:before{content:'\\f46e'}\r\n.icon-pigpenz:before{content:'\\f46f'}\r\n.icon-pilcrow:before{content:'\\00b6'}\r\n.icon-pill-antivirusalt:before{content:'\\f0aa'}\r\n.icon-pin:before{content:'\\f20a'}\r\n.icon-pipe:before{content:'\\01c0'}\r\n.icon-piwigo:before{content:'\\f0ad'}\r\n.icon-pizza:before{content:'\\f35c'}\r\n.icon-placeadd:before{content:'\\f221'}\r\n.icon-placealt:before{content:'\\f224'}\r\n.icon-placealtadd:before{content:'\\f225'}\r\n.icon-placealtdelete:before{content:'\\f226'}\r\n.icon-placedelete:before{content:'\\f222'}\r\n.icon-placeios:before{content:'\\f20c'}\r\n.icon-plane:before{content:'\\f23e'}\r\n.icon-plaque:before{content:'\\f2b8'}\r\n.icon-play:before{content:'\\f184'}\r\n.icon-play-circle:before{content:'\\f17e'}\r\n.icon-playstore:before{content:'\\f255'}\r\n.icon-playvideo:before{content:'\\f03d'}\r\n.icon-plug:before{content:'\\f0ea'}\r\n.icon-pluginalt:before{content:'\\f098'}\r\n.icon-plus:before{content:'\\002b'}\r\n.icon-plus-sign:before{content:'\\f476'}\r\n.icon-pocket:before{content:'\\f16b'}\r\n.icon-podcast:before{content:'\\f1a2'}\r\n.icon-podium-winner:before{content:'\\f2d6'}\r\n.icon-pokemon:before{content:'\\f354'}\r\n.icon-police:before{content:'\\f2aa'}\r\n.icon-polygonlasso:before{content:'\\f397'}\r\n.icon-post:before{content:'\\f12e'}\r\n.icon-postalt:before{content:'\\f130'}\r\n.icon-pound:before{content:'\\f25b'}\r\n.icon-poundalt:before{content:'\\f25c'}\r\n.icon-powerjack:before{content:'\\f0fd'}\r\n.icon-powerplug:before{content:'\\f0ed'}\r\n.icon-powerplugeu:before{content:'\\f28b'}\r\n.icon-powerplugus:before{content:'\\f28c'}\r\n.icon-presentation:before{content:'\\f0c4'}\r\n.icon-prestashop:before{content:'\\f061'}\r\n.icon-pretzel:before{content:'\\f3cf'}\r\n.icon-preview:before{content:'\\f330'}\r\n.icon-previous:before{content:'\\f18b'}\r\n.icon-print:before{content:'\\f125'}\r\n.icon-protecteddirectory:before{content:'\\f04d'}\r\n.icon-pscircle:before{content:'\\f2bb'}\r\n.icon-pscursor:before{content:'\\f2c3'}\r\n.icon-psdown:before{content:'\\f2c6'}\r\n.icon-psleft:before{content:'\\f2c7'}\r\n.icon-pslone:before{content:'\\f2cc'}\r\n.icon-psltwo:before{content:'\\f2cd'}\r\n.icon-psright:before{content:'\\f2c5'}\r\n.icon-psrone:before{content:'\\f2ce'}\r\n.icon-psrtwo:before{content:'\\f2cf'}\r\n.icon-pssquare:before{content:'\\f2bc'}\r\n.icon-pstriangle:before{content:'\\f2bd'}\r\n.icon-psup:before{content:'\\f2c4'}\r\n.icon-psx:before{content:'\\f2be'}\r\n.icon-pull:before{content:'\\f089'}\r\n.icon-punisher:before{content:'\\f343'}\r\n.icon-push:before{content:'\\f088'}\r\n.icon-puzzle-plugin:before{content:'\\f0a0'}\r\n.icon-python:before{content:'\\f071'}\r\n.icon-qrcode:before{content:'\\f275'}\r\n.icon-quake:before{content:'\\f355'}\r\n.icon-queen:before{content:'\\f2fd'}\r\n.icon-query:before{content:'\\f08a'}\r\n.icon-question-sign:before{content:'\\f0a3'}\r\n.icon-quote:before{content:'\\f12f'}\r\n.icon-quotedown:before{content:'\\f329'}\r\n.icon-quoteup:before{content:'\\f328'}\r\n.icon-raceflag:before{content:'\\f38e'}\r\n.icon-racquet:before{content:'\\f2f2'}\r\n.icon-radio:before{content:'\\f1a1'}\r\n.icon-radioactive:before{content:'\\f282'}\r\n.icon-radiobutton:before{content:'\\f312'}\r\n.icon-railroad:before{content:'\\f248'}\r\n.icon-rain:before{content:'\\f22f'}\r\n.icon-ram:before{content:'\\f02c'}\r\n.icon-random:before{content:'\\f188'}\r\n.icon-rar:before{content:'\\f117'}\r\n.icon-raspberry:before{content:'\\f368'}\r\n.icon-raspberrypi:before{content:'\\f369'}\r\n.icon-rawaccesslogs:before{content:'\\f0c1'}\r\n.icon-razor:before{content:'\\f416'}\r\n.icon-reademail:before{content:'\\f173'}\r\n.icon-record:before{content:'\\f189'}\r\n.icon-rectangle:before{content:'\\25ad'}\r\n.icon-recycle:before{content:'\\f297'}\r\n.icon-reddit:before{content:'\\f154'}\r\n.icon-redirect:before{content:'\\f054'}\r\n.icon-refresh:before{content:'\\f078'}\r\n.icon-reliability:before{content:'\\f016'}\r\n.icon-remote:before{content:'\\f298'}\r\n.icon-remove:before{content:'\\00d7'}\r\n.icon-remove-circle:before{content:'\\f470'}\r\n.icon-remove-sign:before{content:'\\f478'}\r\n.icon-removefriend:before{content:'\\f3db'}\r\n.icon-repeat:before{content:'\\f32b'}\r\n.icon-repeatone:before{content:'\\f196'}\r\n.icon-resellerhosting:before{content:'\\f03a'}\r\n.icon-residentevil:before{content:'\\f350'}\r\n.icon-resistor:before{content:'\\f3eb'}\r\n.icon-resize:before{content:'\\f1ed'}\r\n.icon-resize-full:before{content:'\\f325'}\r\n.icon-resize-horizontal:before{content:'\\f318'}\r\n.icon-resize-small:before{content:'\\f326'}\r\n.icon-resize-vertical:before{content:'\\f319'}\r\n.icon-restart:before{content:'\\f11f'}\r\n.icon-restaurantmenu:before{content:'\\f362'}\r\n.icon-restore:before{content:'\\f30d'}\r\n.icon-restricted:before{content:'\\f0ab'}\r\n.icon-retweet:before{content:'\\f486'}\r\n.icon-rim:before{content:'\\f36f'}\r\n.icon-ring:before{content:'\\02da'}\r\n.icon-road:before{content:'\\f249'}\r\n.icon-roadsign-roadsignright:before{content:'\\f21b'}\r\n.icon-roadsignleft:before{content:'\\f240'}\r\n.icon-robocop:before{content:'\\f357'}\r\n.icon-rocket-launch:before{content:'\\f29c'}\r\n.icon-rook:before{content:'\\f2fa'}\r\n.icon-root:before{content:'\\f33c'}\r\n.icon-rorschach:before{content:'\\f358'}\r\n.icon-rotateclockwise:before{content:'\\f202'}\r\n.icon-rotatecounterclockwise:before{content:'\\f203'}\r\n.icon-roundrectangle:before{content:'\\f1bd'}\r\n.icon-route:before{content:'\\f402'}\r\n.icon-router:before{content:'\\f0e9'}\r\n.icon-rss:before{content:'\\f17b'}\r\n.icon-rubberstamp:before{content:'\\f274'}\r\n.icon-ruby:before{content:'\\f067'}\r\n.icon-ruler:before{content:'\\f1ef'}\r\n.icon-sad:before{content:'\\f13d'}\r\n.icon-safetypin:before{content:'\\f417'}\r\n.icon-satellite:before{content:'\\f38a'}\r\n.icon-satellitedish-remotemysql:before{content:'\\f0c0'}\r\n.icon-save-floppy:before{content:'\\f0c8'}\r\n.icon-scales:before{content:'\\f3fd'}\r\n.icon-science-atom:before{content:'\\f2b0'}\r\n.icon-scope-scan:before{content:'\\f212'}\r\n.icon-scopealt:before{content:'\\f237'}\r\n.icon-screenshot:before{content:'\\f109'}\r\n.icon-screw:before{content:'\\f426'}\r\n.icon-screwdriver:before{content:'\\f292'}\r\n.icon-screwdriveralt:before{content:'\\f293'}\r\n.icon-script:before{content:'\\f08d'}\r\n.icon-sd:before{content:'\\f106'}\r\n.icon-search:before{content:'\\f0c5'}\r\n.icon-searchdocument:before{content:'\\f419'}\r\n.icon-searchfolder:before{content:'\\f41a'}\r\n.icon-security-shield:before{content:'\\f02d'}\r\n.icon-securityalt-shieldalt:before{content:'\\f02e'}\r\n.icon-selection-rectangleselection:before{content:'\\f1b0'}\r\n.icon-selectionadd:before{content:'\\f1b2'}\r\n.icon-selectionintersect:before{content:'\\f1b4'}\r\n.icon-selectionremove:before{content:'\\f1b3'}\r\n.icon-seo:before{content:'\\f030'}\r\n.icon-server:before{content:'\\f026'}\r\n.icon-servers:before{content:'\\f027'}\r\n.icon-settingsandroid:before{content:'\\f309'}\r\n.icon-settingsfour-gearsalt:before{content:'\\f306'}\r\n.icon-settingsthree-gears:before{content:'\\f307'}\r\n.icon-settingstwo-gearalt:before{content:'\\f308'}\r\n.icon-shades-sunglasses:before{content:'\\f294'}\r\n.icon-shapes:before{content:'\\f1dd'}\r\n.icon-share:before{content:'\\f47d'}\r\n.icon-share-alt:before{content:'\\f16c'}\r\n.icon-sharealt:before{content:'\\f147'}\r\n.icon-sharedfile:before{content:'\\f0ef'}\r\n.icon-sharedhosting:before{content:'\\f037'}\r\n.icon-sharethree:before{content:'\\f414'}\r\n.icon-sheriff:before{content:'\\f2a9'}\r\n.icon-shipping:before{content:'\\f23f'}\r\n.icon-shopping:before{content:'\\f010'}\r\n.icon-shopping-cart:before{content:'\\f035'}\r\n.icon-shoppingbag:before{content:'\\f273'}\r\n.icon-shortcut:before{content:'\\f043'}\r\n.icon-shovel:before{content:'\\f290'}\r\n.icon-shredder:before{content:'\\f27c'}\r\n.icon-shutdown:before{content:'\\f11e'}\r\n.icon-sidebar:before{content:'\\f124'}\r\n.icon-signal:before{content:'\\f100'}\r\n.icon-sim:before{content:'\\f0e1'}\r\n.icon-simalt:before{content:'\\f121'}\r\n.icon-skrill:before{content:'\\f268'}\r\n.icon-skull:before{content:'\\f38d'}\r\n.icon-skype:before{content:'\\f141'}\r\n.icon-skypeaway:before{content:'\\f39f'}\r\n.icon-skypebusy:before{content:'\\f3a0'}\r\n.icon-skypeoffline:before{content:'\\f3a1'}\r\n.icon-skypeonline:before{content:'\\f39e'}\r\n.icon-smaller:before{content:'\\f30b'}\r\n.icon-smf:before{content:'\\f062'}\r\n.icon-smile:before{content:'\\263a'}\r\n.icon-snow:before{content:'\\f22e'}\r\n.icon-snowman:before{content:'\\f37c'}\r\n.icon-socialnetwork:before{content:'\\f03b'}\r\n.icon-software:before{content:'\\f09a'}\r\n.icon-sortbynameascending-atoz:before{content:'\\f1c2'}\r\n.icon-sortbynamedescending-ztoa:before{content:'\\f1c1'}\r\n.icon-sortbysizeascending:before{content:'\\f1c3'}\r\n.icon-sortbysizedescending:before{content:'\\f1c4'}\r\n.icon-soundwave:before{content:'\\f194'}\r\n.icon-soup:before{content:'\\f3d1'}\r\n.icon-spaceinvaders:before{content:'\\f352'}\r\n.icon-spades:before{content:'\\f2f5'}\r\n.icon-spam:before{content:'\\f047'}\r\n.icon-spamalt:before{content:'\\f048'}\r\n.icon-spawn:before{content:'\\f344'}\r\n.icon-speaker:before{content:'\\f372'}\r\n.icon-speed:before{content:'\\f40b'}\r\n.icon-spider:before{content:'\\f346'}\r\n.icon-spiderman:before{content:'\\f347'}\r\n.icon-split:before{content:'\\f335'}\r\n.icon-spoon:before{content:'\\f213'}\r\n.icon-spray:before{content:'\\f1c7'}\r\n.icon-spreadsheet:before{content:'\\f0c3'}\r\n.icon-squareapp:before{content:'\\f26f'}\r\n.icon-squarebrackets:before{content:'\\f0b3'}\r\n.icon-ssh:before{content:'\\f04e'}\r\n.icon-sslmanager:before{content:'\\f04f'}\r\n.icon-stadium:before{content:'\\f3d6'}\r\n.icon-stamp:before{content:'\\f242'}\r\n.icon-stampalt:before{content:'\\f243'}\r\n.icon-star:before{content:'\\f13a'}\r\n.icon-star-empty:before{content:'\\f13b'}\r\n.icon-starempty:before{content:'\\f2de'}\r\n.icon-starfull:before{content:'\\f2e0'}\r\n.icon-starhalf:before{content:'\\f2df'}\r\n.icon-steak:before{content:'\\f360'}\r\n.icon-steam:before{content:'\\f2dd'}\r\n.icon-step-backward:before{content:'\\f198'}\r\n.icon-step-forward:before{content:'\\f197'}\r\n.icon-sticker:before{content:'\\f3f5'}\r\n.icon-stiletto:before{content:'\\f429'}\r\n.icon-stockdown:before{content:'\\f252'}\r\n.icon-stocks:before{content:'\\f250'}\r\n.icon-stockup:before{content:'\\f251'}\r\n.icon-stomach:before{content:'\\f3e1'}\r\n.icon-stop:before{content:'\\f185'}\r\n.icon-stopwatch:before{content:'\\f219'}\r\n.icon-storage-box:before{content:'\\f011'}\r\n.icon-storagealt-drawer:before{content:'\\f012'}\r\n.icon-store:before{content:'\\f272'}\r\n.icon-storm:before{content:'\\f230'}\r\n.icon-stove:before{content:'\\f371'}\r\n.icon-strawberry:before{content:'\\f3f3'}\r\n.icon-strikethrough:before{content:'\\f1f7'}\r\n.icon-student-school:before{content:'\\f288'}\r\n.icon-stumbleupon:before{content:'\\f40c'}\r\n.icon-subdomain:before{content:'\\f052'}\r\n.icon-submarine:before{content:'\\f373'}\r\n.icon-subscript:before{content:'\\f1ea'}\r\n.icon-subtractshape:before{content:'\\f1fe'}\r\n.icon-sum:before{content:'\\f33b'}\r\n.icon-sun-day:before{content:'\\f206'}\r\n.icon-sunnysideup:before{content:'\\f365'}\r\n.icon-superman:before{content:'\\f33f'}\r\n.icon-superscript:before{content:'\\f1eb'}\r\n.icon-support:before{content:'\\f013'}\r\n.icon-supportalt:before{content:'\\f014'}\r\n.icon-switch:before{content:'\\f28a'}\r\n.icon-switchoff:before{content:'\\f32d'}\r\n.icon-switchoffalt:before{content:'\\f28e'}\r\n.icon-switchon:before{content:'\\f32c'}\r\n.icon-switchonalt:before{content:'\\f28d'}\r\n.icon-sword:before{content:'\\f2ed'}\r\n.icon-sync:before{content:'\\f0bd'}\r\n.icon-syncalt:before{content:'\\f11c'}\r\n.icon-synckeeplocal:before{content:'\\f33e'}\r\n.icon-synckeepserver:before{content:'\\f33d'}\r\n.icon-syringe-antivirus:before{content:'\\f0a9'}\r\n.icon-tablet:before{content:'\\f118'}\r\n.icon-tabletennis-pingpong:before{content:'\\f2f0'}\r\n.icon-taco:before{content:'\\f3cd'}\r\n.icon-tag:before{content:'\\f032'}\r\n.icon-tagalt-pricealt:before{content:'\\f264'}\r\n.icon-tags:before{content:'\\f482'}\r\n.icon-tagvertical:before{content:'\\f15f'}\r\n.icon-tank:before{content:'\\f423'}\r\n.icon-target:before{content:'\\f2a6'}\r\n.icon-taskmanager-logprograms:before{content:'\\f04b'}\r\n.icon-tasks:before{content:'\\f0e0'}\r\n.icon-taxi:before{content:'\\f3a4'}\r\n.icon-tea:before{content:'\\f3cb'}\r\n.icon-teapot:before{content:'\\f42c'}\r\n.icon-telescope:before{content:'\\f3ef'}\r\n.icon-temperature-thermometer:before{content:'\\f20d'}\r\n.icon-temperaturealt-thermometeralt:before{content:'\\f20e'}\r\n.icon-tennis:before{content:'\\f2ea'}\r\n.icon-tent-camping:before{content:'\\f215'}\r\n.icon-terminal:before{content:'\\f114'}\r\n.icon-tethering:before{content:'\\f0f1'}\r\n.icon-tetrisone:before{content:'\\f34b'}\r\n.icon-tetristhree:before{content:'\\f34d'}\r\n.icon-tetristwo:before{content:'\\f34c'}\r\n.icon-text-height:before{content:'\\f1f8'}\r\n.icon-text-width:before{content:'\\f1f9'}\r\n.icon-th:before{content:'\\f110'}\r\n.icon-th-large:before{content:'\\f112'}\r\n.icon-th-list:before{content:'\\f113'}\r\n.icon-theather:before{content:'\\f39c'}\r\n.icon-theme-style:before{content:'\\f041'}\r\n.icon-thissideup:before{content:'\\f41d'}\r\n.icon-threecolumns:before{content:'\\f1ab'}\r\n.icon-thumbs-down:before{content:'\\f139'}\r\n.icon-thumbs-up:before{content:'\\f138'}\r\n.icon-ticket:before{content:'\\f3dc'}\r\n.icon-tictactoe:before{content:'\\f39a'}\r\n.icon-tie-business:before{content:'\\2040'}\r\n.icon-time:before{content:'\\f210'}\r\n.icon-timeline:before{content:'\\f253'}\r\n.icon-tint:before{content:'\\f208'}\r\n.icon-toast:before{content:'\\f2ad'}\r\n.icon-toiletpaper:before{content:'\\f384'}\r\n.icon-tooth:before{content:'\\f3de'}\r\n.icon-toothbrush:before{content:'\\f385'}\r\n.icon-tophat:before{content:'\\f3f0'}\r\n.icon-torigate:before{content:'\\f411'}\r\n.icon-touchpad:before{content:'\\f115'}\r\n.icon-trafficlight:before{content:'\\f22a'}\r\n.icon-transform:before{content:'\\f1a6'}\r\n.icon-trash:before{content:'\\f0ce'}\r\n.icon-trashempty:before{content:'\\f0cf'}\r\n.icon-trashfull:before{content:'\\f0d0'}\r\n.icon-travel:before{content:'\\f422'}\r\n.icon-treediagram:before{content:'\\f0ec'}\r\n.icon-treeornament:before{content:'\\f37e'}\r\n.icon-triangle:before{content:'\\25b3'}\r\n.icon-tron:before{content:'\\f34f'}\r\n.icon-trophy:before{content:'\\f2d7'}\r\n.icon-truck:before{content:'\\f211'}\r\n.icon-trumpet:before{content:'\\f375'}\r\n.icon-tumblr:before{content:'\\f164'}\r\n.icon-tv:before{content:'\\f1a4'}\r\n.icon-twitter:before{content:'\\f16a'}\r\n.icon-twocolumnsleft:before{content:'\\f1a9'}\r\n.icon-twocolumnsleftalt:before{content:'\\f1aa'}\r\n.icon-twocolumnsright:before{content:'\\f1a7'}\r\n.icon-twocolumnsrightalt:before{content:'\\f1a8'}\r\n.icon-ubuntu:before{content:'\\f120'}\r\n.icon-umbrella:before{content:'\\f218'}\r\n.icon-underline:before{content:'\\f1f6'}\r\n.icon-undo:before{content:'\\f32a'}\r\n.icon-unlock:before{content:'\\f0bf'}\r\n.icon-upleft:before{content:'\\f302'}\r\n.icon-upload:before{content:'\\f47a'}\r\n.icon-uploadalt:before{content:'\\f11b'}\r\n.icon-upright:before{content:'\\f303'}\r\n.icon-uptime:before{content:'\\f017'}\r\n.icon-usb:before{content:'\\f10d'}\r\n.icon-usbalt:before{content:'\\f10e'}\r\n.icon-usbplug:before{content:'\\f10f'}\r\n.icon-user:before{content:'\\f133'}\r\n.icon-userfilter:before{content:'\\f05d'}\r\n.icon-usfootball:before{content:'\\f2ec'}\r\n.icon-value-coins:before{content:'\\f018'}\r\n.icon-vector:before{content:'\\f1b6'}\r\n.icon-vendetta:before{content:'\\f3c5'}\r\n.icon-video:before{content:'\\f17d'}\r\n.icon-viking:before{content:'\\f379'}\r\n.icon-vimeo:before{content:'\\f168'}\r\n.icon-vinyl:before{content:'\\f0cc'}\r\n.icon-violin:before{content:'\\f1a5'}\r\n.icon-virus:before{content:'\\f0a8'}\r\n.icon-visa:before{content:'\\f3c2'}\r\n.icon-visitor:before{content:'\\f097'}\r\n.icon-vlc-cone:before{content:'\\f192'}\r\n.icon-voice:before{content:'\\f18c'}\r\n.icon-volume-down:before{content:'\\f0e3'}\r\n.icon-volume-off:before{content:'\\f0e4'}\r\n.icon-volume-up:before{content:'\\f0e2'}\r\n.icon-vps:before{content:'\\f025'}\r\n.icon-wacom:before{content:'\\f1bb'}\r\n.icon-walle:before{content:'\\f3bc'}\r\n.icon-wallet:before{content:'\\e000'}\r\n.icon-warcraft:before{content:'\\f3bf'}\r\n.icon-warmedal:before{content:'\\f2e4'}\r\n.icon-warning-sign:before{content:'\\f316'}\r\n.icon-washer:before{content:'\\f39b'}\r\n.icon-watch:before{content:'\\f378'}\r\n.icon-watertap-plumbing:before{content:'\\f22d'}\r\n.icon-wave-sea:before{content:'\\f23c'}\r\n.icon-wavealt-seaalt:before{content:'\\f23b'}\r\n.icon-webcam:before{content:'\\f0fe'}\r\n.icon-webcamalt:before{content:'\\f129'}\r\n.icon-webhostinghub:before{content:'\\f031'}\r\n.icon-webmail:before{content:'\\f045'}\r\n.icon-webpage:before{content:'\\f033'}\r\n.icon-webplatform:before{content:'\\f3c3'}\r\n.icon-websitealt:before{content:'\\f01c'}\r\n.icon-websitebuilder:before{content:'\\f034'}\r\n.icon-weight:before{content:'\\f430'}\r\n.icon-westernunion:before{content:'\\f26a'}\r\n.icon-wheel:before{content:'\\f228'}\r\n.icon-wheelchair:before{content:'\\f3fe'}\r\n.icon-whistle:before{content:'\\f3d8'}\r\n.icon-whmcs:before{content:'\\f066'}\r\n.icon-wifi:before{content:'\\f0ff'}\r\n.icon-wind:before{content:'\\f41b'}\r\n.icon-windleft:before{content:'\\f424'}\r\n.icon-windows:before{content:'\\f019'}\r\n.icon-windright:before{content:'\\f425'}\r\n.icon-wine:before{content:'\\f238'}\r\n.icon-wizard:before{content:'\\f03c'}\r\n.icon-wizardalt:before{content:'\\f1fb'}\r\n.icon-wizardhat:before{content:'\\f337'}\r\n.icon-woman-female:before{content:'\\f2a2'}\r\n.icon-women:before{content:'\\f24d'}\r\n.icon-wordpress:before{content:'\\f074'}\r\n.icon-wrench:before{content:'\\f05b'}\r\n.icon-wrenchalt:before{content:'\\f2b2'}\r\n.icon-xbox:before{content:'\\f353'}\r\n.icon-xmen:before{content:'\\f345'}\r\n.icon-yahoo:before{content:'\\f151'}\r\n.icon-yen:before{content:'\\00a5'}\r\n.icon-yenalt:before{content:'\\f25d'}\r\n.icon-yinyang:before{content:'\\262f'}\r\n.icon-youtube:before{content:'\\f142'}\r\n.icon-zelda:before{content:'\\f3b8'}\r\n.icon-zikula:before{content:'\\f0ac'}\r\n.icon-zip:before{content:'\\f116'}\r\n.icon-zodiac-aquarius:before{content:'\\f3b4'}\r\n.icon-zodiac-aries:before{content:'\\f3aa'}\r\n.icon-zodiac-cancer:before{content:'\\f3ad'}\r\n.icon-zodiac-capricorn:before{content:'\\f3b3'}\r\n.icon-zodiac-gemini:before{content:'\\f3ac'}\r\n.icon-zodiac-leo:before{content:'\\f3ae'}\r\n.icon-zodiac-libra:before{content:'\\f3b0'}\r\n.icon-zodiac-pisces:before{content:'\\f3b5'}\r\n.icon-zodiac-sagitarius:before{content:'\\f3b2'}\r\n.icon-zodiac-scorpio:before{content:'\\f3b1'}\r\n.icon-zodiac-taurus:before{content:'\\f3ab'}\r\n.icon-zodiac-virgo:before{content:'\\f3af'}\r\n.icon-zoom-in:before{content:'\\f320'}\r\n.icon-zoom-out:before{content:'\\f321'}\r\n.icon-vk:before{content:'\\f34e'}\r\n.icon-bitcoin:before{content:'\\f584'}\r\n.icon-rouble:before{content:'\\f4ca'}\r\n.icon-phpnuke:before{content:'\\f48c'}\r\n.icon-modx:before{content:'\\f48d'}\r\n.icon-eoneohseven:before{content:'\\f48e'}\r\n.icon-subrion:before{content:'\\f48f'}\r\n.icon-typothree:before{content:'\\f490'}\r\n.icon-tikiwiki:before{content:'\\f491'}\r\n.icon-pligg:before{content:'\\f492'}\r\n.icon-pyrocms:before{content:'\\f493'}\r\n.icon-mambo:before{content:'\\f494'}\r\n.icon-contao:before{content:'\\f495'}\r\n.icon-crackedegg:before{content:'\\f496'}\r\n.icon-coffeecupalt:before{content:'\\f497'}\r\n.icon-reademailalt:before{content:'\\f498'}\r\n.icon-train:before{content:'\\f499'}\r\n.icon-shoebox:before{content:'\\f49a'}\r\n.icon-bathtub:before{content:'\\f49b'}\r\n.icon-ninegag:before{content:'\\f49c'}\r\n.icon-pebble:before{content:'\\f49d'}\r\n.icon-musicthree:before{content:'\\f49e'}\r\n.icon-stairsup:before{content:'\\f49f'}\r\n.icon-stairsdown:before{content:'\\f4a0'}\r\n.icon-bookalt:before{content:'\\f4a1'}\r\n.icon-programclose:before{content:'\\f4a2'}\r\n.icon-programok:before{content:'\\f4a3'}\r\n.icon-splitalt:before{content:'\\f4a4'}\r\n.icon-solarsystem:before{content:'\\f4a5'}\r\n.icon-honeycomb:before{content:'\\f4a6'}\r\n.icon-tools:before{content:'\\f4a7'}\r\n.icon-xoops:before{content:'\\f4a8'}\r\n.icon-pixie:before{content:'\\f4a9'}\r\n.icon-dotclear:before{content:'\\f4aa'}\r\n.icon-impresscms:before{content:'\\f4ab'}\r\n.icon-saurus:before{content:'\\f4ac'}\r\n.icon-impresspages:before{content:'\\f4ad'}\r\n.icon-monstra:before{content:'\\f4ae'}\r\n.icon-snews:before{content:'\\f4af'}\r\n.icon-jcore:before{content:'\\f4b0'}\r\n.icon-silverstripe:before{content:'\\f4b1'}\r\n.icon-btwoevolution:before{content:'\\f4b2'}\r\n.icon-nucleus:before{content:'\\f4b3'}\r\n.icon-symphony:before{content:'\\f4b5'}\r\n.icon-vanillacms:before{content:'\\f4b6'}\r\n.icon-bbpress:before{content:'\\f4b7'}\r\n.icon-phpbbalt:before{content:'\\f4b8'}\r\n.icon-chyrp:before{content:'\\f4b9'}\r\n.icon-pivotx:before{content:'\\f4ba'}\r\n.icon-pagecookery:before{content:'\\f4bb'}\r\n.icon-moviereelalt:before{content:'\\f4bc'}\r\n.icon-cassettealt:before{content:'\\f4bd'}\r\n.icon-photobucket:before{content:'\\f4be'}\r\n.icon-technorati:before{content:'\\f4bf'}\r\n.icon-theverge:before{content:'\\f4c0'}\r\n.icon-stacks:before{content:'\\f4c1'}\r\n.icon-dotlist:before{content:'\\f4c2'}\r\n.icon-numberlist:before{content:'\\f4c3'}\r\n.icon-indentleft:before{content:'\\f4c4'}\r\n.icon-indentright:before{content:'\\f4c5'}\r\n.icon-fblike:before{content:'\\f4c6'}\r\n.icon-fbdislike:before{content:'\\f4c7'}\r\n.icon-sale:before{content:'\\f4c8'}\r\n.icon-sharetronix:before{content:'\\f4c9'}\r\n.icon-markerdown:before{content:'\\f4cb'}\r\n.icon-markerup:before{content:'\\f4cc'}\r\n.icon-markerleft:before{content:'\\f4cd'}\r\n.icon-markerright:before{content:'\\f4ce'}\r\n.icon-bookmarkalt:before{content:'\\f4cf'}\r\n.icon-calendarthree:before{content:'\\f4d0'}\r\n.icon-wineglass:before{content:'\\f4d1'}\r\n.icon-slidersoff:before{content:'\\f4d2'}\r\n.icon-slidersmiddle:before{content:'\\f4d3'}\r\n.icon-slidersfull:before{content:'\\f4d4'}\r\n.icon-slidersdesc:before{content:'\\f4d5'}\r\n.icon-slidersasc:before{content:'\\f4d6'}\r\n.icon-slideronefull:before{content:'\\f4d7'}\r\n.icon-slidertwofull:before{content:'\\f4d8'}\r\n.icon-sliderthreefull:before{content:'\\f4d9'}\r\n.icon-noborders:before{content:'\\f4da'}\r\n.icon-bottomborder:before{content:'\\f4db'}\r\n.icon-topborder:before{content:'\\f4dc'}\r\n.icon-leftborder:before{content:'\\f4dd'}\r\n.icon-rightborder:before{content:'\\f4de'}\r\n.icon-horizontalborder:before{content:'\\f4df'}\r\n.icon-verticalborder:before{content:'\\f4e0'}\r\n.icon-outerborders:before{content:'\\f4e1'}\r\n.icon-innerborders:before{content:'\\f4e2'}\r\n.icon-fullborders:before{content:'\\f4e3'}\r\n.icon-networksignalalt:before{content:'\\f4e4'}\r\n.icon-resizeverticalalt:before{content:'\\f4e5'}\r\n.icon-resizehorizontalalt:before{content:'\\f4e6'}\r\n.icon-moneyalt:before{content:'\\f4e7'}\r\n.icon-fontcase:before{content:'\\f4e8'}\r\n.icon-playstation:before{content:'\\f4e9'}\r\n.icon-cube:before{content:'\\f4ea'}\r\n.icon-sphere:before{content:'\\f4eb'}\r\n.icon-ceilinglight:before{content:'\\f4ec'}\r\n.icon-chandelier:before{content:'\\f4ed'}\r\n.icon-details:before{content:'\\f4ee'}\r\n.icon-detailsalt:before{content:'\\f4ef'}\r\n.icon-bullet:before{content:'\\f4f0'}\r\n.icon-gun:before{content:'\\f4f1'}\r\n.icon-processorthree:before{content:'\\f4f2'}\r\n.icon-world:before{content:'\\f4f3'}\r\n.icon-statistics:before{content:'\\f4f4'}\r\n.icon-shoppingcartalt:before{content:'\\f4f5'}\r\n.icon-microphonealt:before{content:'\\f4f6'}\r\n.icon-routeralt:before{content:'\\f4f7'}\r\n.icon-shell:before{content:'\\f4f8'}\r\n.icon-squareplay:before{content:'\\f4f9'}\r\n.icon-squarestop:before{content:'\\f4fa'}\r\n.icon-squarepause:before{content:'\\f4fb'}\r\n.icon-squarerecord:before{content:'\\f4fc'}\r\n.icon-squareforward:before{content:'\\f4fd'}\r\n.icon-squareback:before{content:'\\f4fe'}\r\n.icon-squarenext:before{content:'\\f4ff'}\r\n.icon-squareprevious:before{content:'\\f500'}\r\n.icon-mega:before{content:'\\f501'}\r\n.icon-charliechaplin:before{content:'\\f502'}\r\n.icon-popcorn:before{content:'\\f503'}\r\n.icon-fatarrowright:before{content:'\\f504'}\r\n.icon-fatarrowleft:before{content:'\\f505'}\r\n.icon-fatarrowdown:before{content:'\\f506'}\r\n.icon-fatarrowup:before{content:'\\f507'}\r\n.icon-shirtbutton:before{content:'\\f508'}\r\n.icon-shirtbuttonalt:before{content:'\\f509'}\r\n.icon-cuckooclock:before{content:'\\f50a'}\r\n.icon-lens:before{content:'\\f50b'}\r\n.icon-voltage:before{content:'\\f50c'}\r\n.icon-planealt:before{content:'\\f50d'}\r\n.icon-busalt:before{content:'\\f50e'}\r\n.icon-lipstick:before{content:'\\f50f'}\r\n.icon-plantalt:before{content:'\\f510'}\r\n.icon-paperboat:before{content:'\\f511'}\r\n.icon-texture:before{content:'\\f512'}\r\n.icon-dominoone:before{content:'\\f513'}\r\n.icon-dominotwo:before{content:'\\f514'}\r\n.icon-dominothree:before{content:'\\f515'}\r\n.icon-dominofour:before{content:'\\f516'}\r\n.icon-dominofive:before{content:'\\f517'}\r\n.icon-dominosix:before{content:'\\f518'}\r\n.icon-dominoseven:before{content:'\\f519'}\r\n.icon-dominoeight:before{content:'\\f51a'}\r\n.icon-dominonine:before{content:'\\f51b'}\r\n.icon-connected:before{content:'\\f51c'}\r\n.icon-connectedpc:before{content:'\\f51d'}\r\n.icon-musicsheet:before{content:'\\f51e'}\r\n.icon-rdio:before{content:'\\f51f'}\r\n.icon-spotify:before{content:'\\f520'}\r\n.icon-deviantart:before{content:'\\f521'}\r\n.icon-yelp:before{content:'\\f522'}\r\n.icon-behance:before{content:'\\f523'}\r\n.icon-nfc:before{content:'\\f524'}\r\n.icon-earbudsalt:before{content:'\\f525'}\r\n.icon-earbuds:before{content:'\\f526'}\r\n.icon-amazon:before{content:'\\f527'}\r\n.icon-openid:before{content:'\\f528'}\r\n.icon-digg:before{content:'\\f529'}\r\n.icon-retweet:before{content:'\\f52a'}\r\n.icon-moonnew:before{content:'\\f52b'}\r\n.icon-moonwaxingcrescent:before{content:'\\f52c'}\r\n.icon-moonfirstquarter:before{content:'\\f52d'}\r\n.icon-moonwaxinggibbous:before{content:'\\f52e'}\r\n.icon-moonfull:before{content:'\\f52f'}\r\n.icon-moonwaninggibbous:before{content:'\\f530'}\r\n.icon-moonthirdquarter:before{content:'\\f531'}\r\n.icon-moonwaningcrescent:before{content:'\\f532'}\r\n.icon-planet:before{content:'\\f533'}\r\n.icon-sodacup:before{content:'\\f534'}\r\n.icon-cocktail:before{content:'\\f535'}\r\n.icon-church:before{content:'\\f536'}\r\n.icon-mosque:before{content:'\\f537'}\r\n.icon-comedy:before{content:'\\f538'}\r\n.icon-tragedy:before{content:'\\f539'}\r\n.icon-bacon:before{content:'\\f53a'}\r\n.icon-trailor:before{content:'\\f53b'}\r\n.icon-tshirt:before{content:'\\f53c'}\r\n.icon-design:before{content:'\\f53d'}\r\n.icon-spiderweb:before{content:'\\f53e'}\r\n.icon-fireplace:before{content:'\\f53f'}\r\n.icon-tallglass:before{content:'\\f540'}\r\n.icon-grapes:before{content:'\\f541'}\r\n.icon-biohazard:before{content:'\\f542'}\r\n.icon-directions:before{content:'\\f543'}\r\n.icon-equalizerthree:before{content:'\\f544'}\r\n.icon-mountains:before{content:'\\f545'}\r\n.icon-bing:before{content:'\\f546'}\r\n.icon-windowseight:before{content:'\\f547'}\r\n.icon-microsoftoffice:before{content:'\\f548'}\r\n.icon-salealt:before{content:'\\f549'}\r\n.icon-purse:before{content:'\\f54a'}\r\n.icon-chickenalt:before{content:'\\f54b'}\r\n.icon-podium:before{content:'\\f54c'}\r\n.icon-findfriends:before{content:'\\f54d'}\r\n.icon-microphonethree:before{content:'\\f54e'}\r\n.icon-workshirt:before{content:'\\f54f'}\r\n.icon-donotdisturb:before{content:'\\f550'}\r\n.icon-addtags:before{content:'\\f551'}\r\n.icon-removetags:before{content:'\\f556'}\r\n.icon-carbattery:before{content:'\\f553'}\r\n.icon-debug:before{content:'\\f554'}\r\n.icon-trojan:before{content:'\\f555'}\r\n.icon-molecule:before{content:'\\f556'}\r\n.icon-safetygoggles:before{content:'\\f557'}\r\n.icon-leather:before{content:'\\f558'}\r\n.icon-teddybear:before{content:'\\f559'}\r\n.icon-stroller:before{content:'\\f55a'}\r\n.icon-circleplay:before{content:'\\f55b'}\r\n.icon-circlestop:before{content:'\\f55c'}\r\n.icon-circlepause:before{content:'\\f55d'}\r\n.icon-circlerecord:before{content:'\\f55e'}\r\n.icon-circleforward:before{content:'\\f55f'}\r\n.icon-circlebackward:before{content:'\\f560'}\r\n.icon-circlenext:before{content:'\\f561'}\r\n.icon-circleprevious:before{content:'\\f562'}\r\n.icon-circleplayempty:before{content:'\\f563'}\r\n.icon-circlestopempty:before{content:'\\f564'}\r\n.icon-circlepauseempty:before{content:'\\f565'}\r\n.icon-circlerecordempty:before{content:'\\f566'}\r\n.icon-circleforwardempty:before{content:'\\f567'}\r\n.icon-circlebackwardempty:before{content:'\\f568'}\r\n.icon-circlenextempty:before{content:'\\f569'}\r\n.icon-circlepreviousempty:before{content:'\\f56a'}\r\n.icon-belt:before{content:'\\f56b'}\r\n.icon-bait:before{content:'\\f56c'}\r\n.icon-manalt:before{content:'\\f56d'}\r\n.icon-womanalt:before{content:'\\f56e'}\r\n.icon-clover:before{content:'\\f56f'}\r\n.icon-pacifier:before{content:'\\f570'}\r\n.icon-calcplus:before{content:'\\f571'}\r\n.icon-calcminus:before{content:'\\f572'}\r\n.icon-calcmultiply:before{content:'\\f573'}\r\n.icon-calcdivide:before{content:'\\f574'}\r\n.icon-calcequals:before{content:'\\f575'}\r\n.icon-city:before{content:'\\f576'}\r\n.icon-hdvideo:before{content:'\\f577'}\r\n.icon-horizontalexpand:before{content:'\\f578'}\r\n.icon-horizontalcontract:before{content:'\\f579'}\r\n.icon-radar:before{content:'\\f57a'}\r\n.icon-threed:before{content:'\\f57b'}\r\n.icon-flickralt:before{content:'\\f57c'}\r\n.icon-pattern:before{content:'\\f57d'}\r\n.icon-elevator:before{content:'\\f57e'}\r\n.icon-escalator:before{content:'\\f57f'}\r\n.icon-portrait:before{content:'\\f580'}\r\n.icon-cigar:before{content:'\\f581'}\r\n.icon-dropbox:before{content:'\\f582'}\r\n.icon-origami:before{content:'\\f583'}\r\n.icon-opensource:before{content:'\\f585'}\r\n.icon-redaxscript:before{content:'\\f586'}\r\n.icon-mahara:before{content:'\\f587'}\r\n.icon-forkcms:before{content:'\\f588'}\r\n.icon-pimcore:before{content:'\\f589'}\r\n.icon-bigace:before{content:'\\f58a'}\r\n.icon-aef:before{content:'\\f58b'}\r\n.icon-punbb:before{content:'\\f58c'}\r\n.icon-phorum:before{content:'\\f58d'}\r\n.icon-fluxbb:before{content:'\\f58e'}\r\n.icon-minibb:before{content:'\\f58f'}\r\n.icon-zenphoto:before{content:'\\f590'}\r\n.icon-fourimages:before{content:'\\f591'}\r\n.icon-plogger:before{content:'\\f592'}\r\n.icon-jcow:before{content:'\\f593'}\r\n.icon-elgg:before{content:'\\f594'}\r\n.icon-etano:before{content:'\\f595'}\r\n.icon-openclassifieds:before{content:'\\f596'}\r\n.icon-osclass:before{content:'\\f597'}\r\n.icon-openx:before{content:'\\f598'}\r\n.icon-phplist:before{content:'\\f599'}\r\n.icon-roundcube:before{content:'\\f59a'}\r\n.icon-pommo:before{content:'\\f59b'}\r\n.icon-webinsta:before{content:'\\f59c'}\r\n.icon-limesurvey:before{content:'\\f59d'}\r\n.icon-fengoffice:before{content:'\\f59e'}\r\n.icon-eyeos:before{content:'\\f59f'}\r\n.icon-dotproject:before{content:'\\f5a0'}\r\n.icon-collabtive:before{content:'\\f5a1'}\r\n.icon-projectpier:before{content:'\\f5a2'}\r\n.icon-taskfreak:before{content:'\\f5a3'}\r\n.icon-eventum:before{content:'\\f5a4'}\r\n.icon-traq:before{content:'\\f5a5'}\r\n.icon-mantisbugtracker:before{content:'\\f5a6'}\r\n.icon-oscommerce:before{content:'\\f5a7'}\r\n.icon-zencart:before{content:'\\f5a8'}\r\n.icon-tomatocart:before{content:'\\f5a9'}\r\n.icon-boxbilling:before{content:'\\f5aa'}\r\n.icon-zurmo:before{content:'\\f5ab'}\r\n.icon-orangehrm:before{content:'\\f5ac'}\r\n.icon-vtiger:before{content:'\\f5ad'}\r\n.icon-mibew:before{content:'\\f5ae'}\r\n.icon-phpmyfaq:before{content:'\\f5af'}\r\n.icon-yiiframework:before{content:'\\f5b0'}\r\n.icon-zendframework:before{content:'\\f5b1'}\r\n.icon-fuelphp:before{content:'\\f5b2'}\r\n.icon-kohana:before{content:'\\f5b3'}\r\n.icon-smarty:before{content:'\\f5b4'}\r\n.icon-sidu:before{content:'\\f5b5'}\r\n.icon-simplepie:before{content:'\\f5b6'}\r\n.icon-projectsend:before{content:'\\f5b7'}\r\n.icon-extjs:before{content:'\\f5b8'}\r\n.icon-raphael:before{content:'\\f5b9'}\r\n.icon-sizzle:before{content:'\\f5ba'}\r\n.icon-yui:before{content:'\\f5bb'}\r\n.icon-scissorsalt:before{content:'\\f5bc'}\r\n.icon-cuthere:before{content:'\\f5bd'}\r\n.icon-coinsalt:before{content:'\\f5be'}\r\n.icon-parkingmeter:before{content:'\\f5bf'}\r\n.icon-treethree:before{content:'\\f5c0'}\r\n.icon-packarchive:before{content:'\\f5c1'}\r\n.icon-unpackarchive:before{content:'\\f5c2'}\r\n.icon-terminalalt:before{content:'\\f5c3'}\r\n.icon-jersey:before{content:'\\f5c4'}\r\n.icon-vial:before{content:'\\f5c5'}\r\n.icon-noteslist:before{content:'\\f5c6'}\r\n.icon-notestasks:before{content:'\\f5c7'}\r\n.icon-notesdate:before{content:'\\f5c8'}\r\n.icon-noteslocation:before{content:'\\f5c9'}\r\n.icon-noteslistalt:before{content:'\\f5ca'}\r\n.icon-notestasksalt:before{content:'\\f5cb'}\r\n.icon-notesdatealt:before{content:'\\f5cc'}\r\n.icon-noteslocationalt:before{content:'\\f5cd'}\r\n.icon-useralt:before{content:'\\f5ce'}\r\n.icon-adduseralt:before{content:'\\f5cf'}\r\n.icon-removeuseralt:before{content:'\\f5d0'}\r\n.icon-banuseralt:before{content:'\\f5d1'}\r\n.icon-banuser:before{content:'\\f5d2'}\r\n.icon-paintrollalt:before{content:'\\f5d3'}\r\n.icon-textcursor:before{content:'\\f5d4'}\r\n.icon-textfield:before{content:'\\f5d5'}\r\n.icon-precisecursor:before{content:'\\f5d6'}\r\n.icon-brokenlink:before{content:'\\f5d7'}\r\n.icon-bookmarkthree:before{content:'\\f5d8'}\r\n.icon-bookmarkfour:before{content:'\\f5d9'}\r\n.icon-warmedalalt:before{content:'\\f5da'}\r\n.icon-thinking:before{content:'\\f5db'}\r\n.icon-commentlove:before{content:'\\f5dc'}\r\n.icon-commentsmiley:before{content:'\\f5dd'}\r\n.icon-sharetwo:before{content:'\\f147'}\r\n.icon-emptystar:before{content:'\\f2de'}\r\n.icon-halfstar:before{content:'\\f2df'}\r\n.icon-fullstar:before{content:'\\f2e0'}\r\n.icon-forbidden:before{content:'\\f314'}\r\n.icon-indentleftalt:before{content:'\\f4c4'}\r\n.icon-indentrightalt:before{content:'\\f4c5'}\r\n.icon-modxalt:before{content:'\\f5de'}\r\n.icon-apple:before{content:'\\f5df'}\r\n.icon-greekcolumn:before{content:'\\f5e0'}\r\n.icon-walletalt:before{content:'\\f5e1'}\r\n.icon-dollarsquare:before{content:'\\f5e2'}\r\n.icon-poundsquare:before{content:'\\f5e3'}\r\n.icon-yensquare:before{content:'\\f5e4'}\r\n.icon-eurosquare:before{content:'\\f5e5'}\r\n.icon-bitcoinsquare:before{content:'\\f5e6'}\r\n.icon-roublesquare:before{content:'\\f5e7'}\r\n.icon-roublealt:before{content:'\\f5e8'}\r\n.icon-bitcoinalt:before{content:'\\f5e9'}\r\n.icon-gavel:before{content:'\\f5ea'}\r\n.icon-barchartasc:before{content:'\\f5eb'}\r\n.icon-barchartdesc:before{content:'\\f5ec'}\r\n.icon-house:before{content:'\\f5ed'}\r\n.icon-garage:before{content:'\\f5ee'}\r\n.icon-milk:before{content:'\\f5ef'}\r\n.icon-hryvnia:before{content:'\\f5f0'}\r\n.icon-hryvniasquare:before{content:'\\f5f1'}\r\n.icon-hryvniaalt:before{content:'\\f5f2'}\r\n.icon-beeralt:before{content:'\\f5f3'}\r\n.icon-trolleyfull:before{content:'\\f5f4'}\r\n.icon-trolleyload:before{content:'\\f5f5'}\r\n.icon-trolleyunload:before{content:'\\f5f6'}\r\n.icon-trolleyempty:before{content:'\\f5f7'}\r\n.icon-mootools:before{content:'\\f5f8'}\r\n.icon-mootoolstwo:before{content:'\\f5f9'}\r\n.icon-mootoolsthree:before{content:'\\f5fa'}\r\n.icon-mysqlthree:before{content:'\\f5fb'}\r\n.icon-mysqlalt:before{content:'\\f5fc'}\r\n.icon-pgsql:before{content:'\\f5fd'}\r\n.icon-mongodb:before{content:'\\f5fe'}\r\n.icon-neofourj:before{content:'\\f5ff'}\r\n.icon-nosql:before{content:'\\f600'}\r\n.icon-catface:before{content:'\\f601'}\r\n.icon-polaroid:before{content:'\\f602'}\r\n.icon-clouderror:before{content:'\\f603'}\r\n.icon-camcorder:before{content:'\\f604'}\r\n.icon-projector:before{content:'\\f605'}\r\n.icon-sdvideo:before{content:'\\f606'}\r\n.icon-fx:before{content:'\\f607'}\r\n.icon-gramophone:before{content:'\\f608'}\r\n.icon-speakeralt:before{content:'\\f609'}\r\n.icon-hddalt:before{content:'\\f60a'}\r\n.icon-usbflash:before{content:'\\f60b'}\r\n.icon-manillaenvelope:before{content:'\\f60c'}\r\n.icon-stickynote:before{content:'\\f60d'}\r\n.icon-stickynotealt:before{content:'\\f60e'}\r\n.icon-torch:before{content:'\\f60f'}\r\n.icon-flashlightalt:before{content:'\\f610'}\r\n.icon-campfire:before{content:'\\f611'}\r\n.icon-cctv:before{content:'\\f612'}\r\n.icon-drill:before{content:'\\f613'}\r\n.icon-lampalt:before{content:'\\f614'}\r\n.icon-flowerpot:before{content:'\\f615'}\r\n.icon-defragment:before{content:'\\f616'}\r\n.icon-panoramio:before{content:'\\f617'}\r\n.icon-panorama:before{content:'\\f618'}\r\n.icon-photosphere:before{content:'\\f619'}\r\n.icon-panoramaalt:before{content:'\\f61a'}\r\n.icon-timer:before{content:'\\f61b'}\r\n.icon-burstmode:before{content:'\\f61c'}\r\n.icon-cameraflash:before{content:'\\f61d'}\r\n.icon-autoflash:before{content:'\\f61e'}\r\n.icon-noflash:before{content:'\\f61f'}\r\n.icon-threetofour:before{content:'\\f620'}\r\n.icon-sixteentonine:before{content:'\\f621'}\r\n.icon-cat:before{content:'\\f622'}\r\n.icon-dog:before{content:'\\f623'}\r\n.icon-rabbit:before{content:'\\f624'}\r\n.icon-koala:before{content:'\\f625'}\r\n.icon-butterflyalt:before{content:'\\f626'}\r\n.icon-butterfly:before{content:'\\f627'}\r\n.icon-wwf:before{content:'\\f628'}\r\n.icon-poop:before{content:'\\f629'}\r\n.icon-poopalt:before{content:'\\f62a'}\r\n.icon-kiwi:before{content:'\\f62b'}\r\n.icon-kiwifruit:before{content:'\\f62c'}\r\n.icon-lemon:before{content:'\\f62d'}\r\n.icon-pear:before{content:'\\f62e'}\r\n.icon-watermelon:before{content:'\\f62f'}\r\n.icon-onion:before{content:'\\f630'}\r\n.icon-turnip:before{content:'\\f631'}\r\n.icon-eggplant:before{content:'\\f632'}\r\n.icon-avocado:before{content:'\\f633'}\r\n.icon-perfume:before{content:'\\f634'}\r\n.icon-arch:before{content:'\\f635'}\r\n.icon-pluspages:before{content:'\\f636'}\r\n.icon-community:before{content:'\\f637'}\r\n.icon-pluscircles:before{content:'\\f638'}\r\n.icon-googleplusold:before{content:'\\f639'}\r\n.icon-plusgames:before{content:'\\f63a'}\r\n.icon-event:before{content:'\\f63b'}\r\n.icon-miui:before{content:'\\f63c'}\r\n.icon-hot:before{content:'\\f63d'}\r\n.icon-flowup:before{content:'\\f63e'}\r\n.icon-flowdown:before{content:'\\f63f'}\r\n.icon-moustache:before{content:'\\f640'}\r\n.icon-angle:before{content:'\\f641'}\r\n.icon-sleep:before{content:'\\f642'}\r\n.icon-acorn:before{content:'\\f643'}\r\n.icon-steamalt:before{content:'\\f644'}\r\n.icon-resizeupleft:before{content:'\\f645'}\r\n.icon-resizeupright:before{content:'\\f646'}\r\n.icon-resizedownright:before{content:'\\f647'}\r\n.icon-resizedownleft:before{content:'\\f648'}\r\n.icon-hammeralt:before{content:'\\f649'}\r\n.icon-bamboo:before{content:'\\f64a'}\r\n.icon-mypictures:before{content:'\\f64b'}\r\n.icon-mymusic:before{content:'\\f64c'}\r\n.icon-myvideos:before{content:'\\f64d'}\r\n.icon-systemfolder:before{content:'\\f64e'}\r\n.icon-bookthree:before{content:'\\f64f'}\r\n.icon-compile:before{content:'\\f650'}\r\n.icon-report:before{content:'\\f651'}\r\n.icon-fliphorizontal:before{content:'\\f652'}\r\n.icon-flipvertical:before{content:'\\f653'}\r\n.icon-construction:before{content:'\\f654'}\r\n.icon-counteralt:before{content:'\\f655'}\r\n.icon-counter:before{content:'\\f656'}\r\n.icon-papercutter:before{content:'\\f657'}\r\n.icon-snaptodot:before{content:'\\f658'}\r\n.icon-snaptogrid:before{content:'\\f659'}\r\n.icon-caligraphy:before{content:'\\f65a'}\r\n.icon-icecreamthree:before{content:'\\f65b'}\r\n.icon-skitch:before{content:'\\f65c'}\r\n.icon-archlinux:before{content:'\\f65d'}\r\n.icon-elementaryos:before{content:'\\f65e'}\r\n.icon-loadingone:before{content:'\\f65f'}\r\n.icon-loadingtwo:before{content:'\\f660'}\r\n.icon-loadingthree:before{content:'\\f661'}\r\n.icon-loadingfour:before{content:'\\f662'}\r\n.icon-loadingfive:before{content:'\\f663'}\r\n.icon-loadingsix:before{content:'\\f664'}\r\n.icon-loadingseven:before{content:'\\f665'}\r\n.icon-loadingeight:before{content:'\\f666'}\r\n.icon-brokenheart:before{content:'\\f667'}\r\n.icon-heartarrow:before{content:'\\f668'}\r\n.icon-heartsparkle:before{content:'\\f669'}\r\n.icon-cell:before{content:'\\f66a'}\r\n.icon-panda:before{content:'\\f66b'}\r\n.icon-refreshalt:before{content:'\\f66c'}\r\n.icon-mirror:before{content:'\\f66d'}\r\n.icon-headphonesthree:before{content:'\\f66e'}\r\n.icon-fan:before{content:'\\f66f'}\r\n.icon-tornado:before{content:'\\f670'}\r\n.icon-hangout:before{content:'\\f671'}\r\n.icon-beaker:before{content:'\\f672'}\r\n.icon-beakeralt:before{content:'\\f673'}\r\n.icon-phonescreensize:before{content:'\\f674'}\r\n.icon-tabletscreensize:before{content:'\\f675'}\r\n.icon-notification:before{content:'\\f676'}\r\n.icon-googleglass:before{content:'\\f677'}\r\n.icon-pinterest:before{content:'\\f678'}\r\n.icon-soundcloud:before{content:'\\f679'}\r\n.icon-alarmclock:before{content:'\\f67a'}\r\n.icon-addalarm:before{content:'\\f67b'}\r\n.icon-deletealarm:before{content:'\\f67c'}\r\n.icon-turnoffalarm:before{content:'\\f67d'}\r\n.icon-snooze:before{content:'\\f67e'}\r\n.icon-bringforward:before{content:'\\f67f'}\r\n.icon-sendbackward:before{content:'\\f680'}\r\n.icon-bringtofront:before{content:'\\f681'}\r\n.icon-sendtoback:before{content:'\\f682'}\r\n.icon-tectile:before{content:'\\f683'}\r\n.icon-grave:before{content:'\\f684'}\r\n.icon-gravetwo:before{content:'\\f685'}\r\n.icon-gravethree:before{content:'\\f686'}\r\n.icon-gravefour:before{content:'\\f687'}\r\n.icon-textlayer:before{content:'\\f688'}\r\n.icon-vectoralt:before{content:'\\f689'}\r\n.icon-drmanhattan:before{content:'\\f68a'}\r\n.icon-foursquarealt:before{content:'\\f68b'}\r\n.icon-hashtag:before{content:'\\f68c'}\r\n.icon-enteralt:before{content:'\\f68d'}\r\n.icon-exitalt:before{content:'\\f68e'}\r\n.icon-cartalt:before{content:'\\f68f'}\r\n.icon-vaultthree:before{content:'\\f690'}\r\n.icon-fatundo:before{content:'\\f691'}\r\n.icon-fatredo:before{content:'\\f692'}\r\n.icon-feedly:before{content:'\\f693'}\r\n.icon-feedlyalt:before{content:'\\f694'}\r\n.icon-squareheart:before{content:'\\f695'}\r\n.icon-squarestar:before{content:'\\f696'}\r\n.icon-squarecomment:before{content:'\\f697'}\r\n.icon-squarelike:before{content:'\\f698'}\r\n.icon-squarebookmark:before{content:'\\f699'}\r\n.icon-squaresearch:before{content:'\\f69a'}\r\n.icon-squaresettings:before{content:'\\f69b'}\r\n.icon-squarevoice:before{content:'\\f69c'}\r\n.icon-google:before{content:'\\f69d'}\r\n.icon-emojigrinalt:before{content:'\\f69e'}\r\n.icon-emojigrin:before{content:'\\f69f'}\r\n.icon-constellation:before{content:'\\f6a0'}\r\n.icon-emojisurprise:before{content:'\\f6a1'}\r\n.icon-emojidead:before{content:'\\f6a2'}\r\n.icon-emojiangry:before{content:'\\f6a3'}\r\n.icon-emojidevil:before{content:'\\f6a4'}\r\n.icon-emojiwink:before{content:'\\f6a5'}\r\n.icon-moonorbit:before{content:'\\f6a6'}\r\n.icon-emojismile:before{content:'\\f6a7'}\r\n.icon-emojisorry:before{content:'\\f6a8'}\r\n.icon-emojiconfused:before{content:'\\f6a9'}\r\n.icon-emojisleep:before{content:'\\f6aa'}\r\n.icon-emojicry:before{content:'\\f6ab'}\r\n.icon-circlefork:before{content:'\\f6ac'}\r\n.icon-circlespoon:before{content:'\\f6ad'}\r\n.icon-circleknife:before{content:'\\f6ae'}\r\n.icon-circlepencil:before{content:'\\f6af'}\r\n.icon-circlehammer:before{content:'\\f6b0'}\r\n.icon-circlescrewdriver:before{content:'\\f6b1'}\r\n.icon-middlefinger:before{content:'\\f6b2'}\r\n.icon-heavymetal:before{content:'\\f6b3'}\r\n.icon-turnright:before{content:'\\f6b4'}\r\n.icon-turnleft:before{content:'\\f6b5'}\r\n.icon-vineapp:before{content:'\\f6b6'}\r\n.icon-vineappalt:before{content:'\\f6b7'}\r\n.icon-finance:before{content:'\\f6b8'}\r\n.icon-survey:before{content:'\\f6b9'}\r\n.icon-hangouts:before{content:'\\f6ba'}\r\n.icon-square0:before{content:'\\f6bb'}\r\n.icon-square1:before{content:'\\f6bc'}\r\n.icon-square2:before{content:'\\f6bd'}\r\n.icon-square3:before{content:'\\f6be'}\r\n.icon-square4:before{content:'\\f6bf'}\r\n.icon-square5:before{content:'\\f6c0'}\r\n.icon-square6:before{content:'\\f6c1'}\r\n.icon-square7:before{content:'\\f6c2'}\r\n.icon-square8:before{content:'\\f6c3'}\r\n.icon-square9:before{content:'\\f6c4'}\r\n.icon-squarea:before{content:'\\f6c5'}\r\n.icon-squareb:before{content:'\\f6c6'}\r\n.icon-squarec:before{content:'\\f6c7'}\r\n.icon-squared:before{content:'\\f6c8'}\r\n.icon-squaree:before{content:'\\f6c9'}\r\n.icon-squaref:before{content:'\\f6ca'}\r\n.icon-squareg:before{content:'\\f6cb'}\r\n.icon-squareh:before{content:'\\f6cc'}\r\n.icon-squarei:before{content:'\\f6cd'}\r\n.icon-squarej:before{content:'\\f6ce'}\r\n.icon-squarek:before{content:'\\f6cf'}\r\n.icon-squarel:before{content:'\\f6d0'}\r\n.icon-squarem:before{content:'\\f6d1'}\r\n.icon-squaren:before{content:'\\f6d2'}\r\n.icon-squareo:before{content:'\\f6d3'}\r\n.icon-squarep:before{content:'\\f6d4'}\r\n.icon-squareq:before{content:'\\f6d5'}\r\n.icon-squarer:before{content:'\\f6d6'}\r\n.icon-squares:before{content:'\\f6d7'}\r\n.icon-squaret:before{content:'\\f6d8'}\r\n.icon-squareu:before{content:'\\f6d9'}\r\n.icon-squarev:before{content:'\\f6da'}\r\n.icon-squarew:before{content:'\\f6db'}\r\n.icon-squarex:before{content:'\\f6dc'}\r\n.icon-squarey:before{content:'\\f6dd'}\r\n.icon-squarez:before{content:'\\f6de'}\r\n.icon-shuttle:before{content:'\\f6df'}\r\n.icon-meteor:before{content:'\\f6e0'}\r\n.icon-galaxy:before{content:'\\f6e1'}\r\n.icon-observatory:before{content:'\\f6e2'}\r\n.icon-astronaut:before{content:'\\f6e3'}\r\n.icon-asteroid:before{content:'\\f6e4'}\r\n.icon-sunrise:before{content:'\\f6e5'}\r\n.icon-sunset:before{content:'\\f6e6'}\r\n.icon-tiderise:before{content:'\\f6e7'}\r\n.icon-tidefall:before{content:'\\f6e8'}\r\n.icon-mushroomcloud:before{content:'\\f6e9'}\r\n.icon-galaxyalt:before{content:'\\f6ea'}\r\n.icon-sputnik:before{content:'\\f6eb'}\r\n.icon-sextant:before{content:'\\f6ec'}\r\n.icon-spock:before{content:'\\f6ed'}\r\n.icon-meteorite:before{content:'\\f6ee'}\r\n.icon-deathstar:before{content:'\\f6ef'}\r\n.icon-deathstarbulding:before{content:'\\f6f0'}\r\n.icon-fallingstar:before{content:'\\f6f1'}\r\n.icon-windmill:before{content:'\\f6f2'}\r\n.icon-windmillalt:before{content:'\\f6f3'}\r\n.icon-pumpjack:before{content:'\\f6f4'}\r\n.icon-nuclearplant:before{content:'\\f6f5'}\r\n.icon-solarpanel:before{content:'\\f6f6'}\r\n.icon-barrel:before{content:'\\f6f7'}\r\n.icon-canister:before{content:'\\f6f8'}\r\n.icon-railtunnel:before{content:'\\f6f9'}\r\n.icon-roadtunnel:before{content:'\\f6fa'}\r\n.icon-pickaxe:before{content:'\\f6fb'}\r\n.icon-cow:before{content:'\\f6fc'}\r\n.icon-sheep:before{content:'\\f6fd'}\r\n.icon-fountain:before{content:'\\f6fe'}\r\n.icon-circlezero:before{content:'\\f6ff'}\r\n.icon-circleone:before{content:'\\f700'}\r\n.icon-circletwo:before{content:'\\f701'}\r\n.icon-circlethree:before{content:'\\f702'}\r\n.icon-circlefour:before{content:'\\f703'}\r\n.icon-circlefive:before{content:'\\f704'}\r\n.icon-circlesix:before{content:'\\f705'}\r\n.icon-circleseven:before{content:'\\f706'}\r\n.icon-circleeight:before{content:'\\f707'}\r\n.icon-circlenine:before{content:'\\f708'}\r\n.icon-circlea:before{content:'\\f709'}\r\n.icon-circleb:before{content:'\\f70a'}\r\n.icon-circlec:before{content:'\\f70b'}\r\n.icon-circled:before{content:'\\f70c'}\r\n.icon-circlee:before{content:'\\f70d'}\r\n.icon-circlef:before{content:'\\f70e'}\r\n.icon-circleg:before{content:'\\f70f'}\r\n.icon-circleh:before{content:'\\f710'}\r\n.icon-circlei:before{content:'\\f711'}\r\n.icon-circlej:before{content:'\\f712'}\r\n.icon-circlek:before{content:'\\f713'}\r\n.icon-circlel:before{content:'\\f714'}\r\n.icon-circlem:before{content:'\\f715'}\r\n.icon-circlen:before{content:'\\f716'}\r\n.icon-circleo:before{content:'\\f717'}\r\n.icon-circlep:before{content:'\\f718'}\r\n.icon-circleq:before{content:'\\f719'}\r\n.icon-circler:before{content:'\\f71a'}\r\n.icon-circles:before{content:'\\f71b'}\r\n.icon-circlet:before{content:'\\f71c'}\r\n.icon-circleu:before{content:'\\f71d'}\r\n.icon-circlev:before{content:'\\f71e'}\r\n.icon-circlew:before{content:'\\f71f'}\r\n.icon-circlex:before{content:'\\f720'}\r\n.icon-circley:before{content:'\\f721'}\r\n.icon-circlez:before{content:'\\f722'}\r\n.icon-creeper:before{content:'\\f723'}\r\n.icon-minecraft:before{content:'\\f724'}\r\n.icon-minecraftalt:before{content:'\\f725'}\r\n.icon-pixelsword:before{content:'\\f726'}\r\n.icon-pixelbroadsword:before{content:'\\f727'}\r\n.icon-pixelwand:before{content:'\\f728'}\r\n.icon-pixelpotion:before{content:'\\f729'}\r\n.icon-pixelpotionalt:before{content:'\\f72a'}\r\n.icon-pixelpickaxe:before{content:'\\f72b'}\r\n.icon-pixelbow:before{content:'\\f72c'}\r\n.icon-pixelarrow:before{content:'\\f72d'}\r\n.icon-pixelaxe:before{content:'\\f72e'}\r\n.icon-pixeldagger:before{content:'\\f72f'}\r\n.icon-pixelbastardsword:before{content:'\\f730'}\r\n.icon-pixellance:before{content:'\\f731'}\r\n.icon-pixelbattleaxe:before{content:'\\f732'}\r\n.icon-pixelshovel:before{content:'\\f733'}\r\n.icon-pixelsphere:before{content:'\\f734'}\r\n.icon-pixelelixir:before{content:'\\f735'}\r\n.icon-pixelchest:before{content:'\\f736'}\r\n.icon-pixelshield:before{content:'\\f737'}\r\n.icon-pixelheart:before{content:'\\f738'}\r\n.icon-rudder:before{content:'\\f739'}\r\n.icon-folderalt:before{content:'\\f73a'}\r\n.icon-removefolderalt:before{content:'\\f73b'}\r\n.icon-addfolderalt:before{content:'\\f73c'}\r\n.icon-deletefolderalt:before{content:'\\f73d'}\r\n.icon-openfolderalt:before{content:'\\f73e'}\r\n.icon-clipboardalt:before{content:'\\f73f'}\r\n.icon-pastealt:before{content:'\\f740'}\r\n.icon-loadingflowccw:before{content:'\\f741'}\r\n.icon-loadingflowcw:before{content:'\\f742'}\r\n.icon-code:before{content:'\\f743'}\r\n.icon-cloveralt:before{content:'\\f744'}\r\n.icon-lips:before{content:'\\f745'}\r\n.icon-kiss:before{content:'\\f746'}\r\n.icon-manualshift:before{content:'\\f747'}\r\n.icon-simcardthree:before{content:'\\f748'}\r\n.icon-parthenon:before{content:'\\f749'}\r\n.icon-addcomment:before{content:'\\f74a'}\r\n.icon-deletecomment:before{content:'\\f74b'}\r\n.icon-gender:before{content:'\\f74c'}\r\n.icon-callalt:before{content:'\\f74d'}\r\n.icon-outgoingcallalt:before{content:'\\f74e'}\r\n.icon-incomingcallalt:before{content:'\\f74f'}\r\n.icon-missedcallalt:before{content:'\\f750'}\r\n.icon-export:before{content:'\\f751'}\r\n.icon-import:before{content:'\\f752'}\r\n.icon-cherryalt:before{content:'\\f753'}\r\n.icon-panties:before{content:'\\f754'}\r\n.icon-kimai:before{content:'\\f755'}\r\n.icon-livejournal:before{content:'\\f756'}\r\n.icon-livejournalalt:before{content:'\\f757'}\r\n.icon-tagged:before{content:'\\f758'}\r\n.icon-temple:before{content:'\\f759'}\r\n.icon-mayanpyramid:before{content:'\\f75a'}\r\n.icon-egyptpyramid:before{content:'\\f75b'}\r\n.icon-tampermonkey:before{content:'\\f75c'}\r\n.icon-pushbullet:before{content:'\\f75d'}\r\n.icon-currents:before{content:'\\f75e'}\r\n.icon-communitysmall:before{content:'\\f75f'}\r\n.icon-squaregithub:before{content:'\\f760'}\r\n.icon-projectfork:before{content:'\\f761'}\r\n.icon-projectmerge:before{content:'\\f762'}\r\n.icon-projectcompare:before{content:'\\f763'}\r\n.icon-history:before{content:'\\f764'}\r\n.icon-notebook:before{content:'\\f765'}\r\n.icon-issue:before{content:'\\f766'}\r\n.icon-issueclosed:before{content:'\\f767'}\r\n.icon-issuereopened:before{content:'\\f768'}\r\n.icon-rubyalt:before{content:'\\f769'}\r\n.icon-lighton:before{content:'\\f76a'}\r\n.icon-lightoff:before{content:'\\f76b'}\r\n.icon-bellalt:before{content:'\\f76c'}\r\n.icon-versions:before{content:'\\f777'}\r\n.icon-twog:before{content:'\\f76e'}\r\n.icon-threeg:before{content:'\\f76f'}\r\n.icon-fourg:before{content:'\\f770'}\r\n.icon-gpsalt:before{content:'\\f771'}\r\n.icon-circleloaderfull:before{content:'\\f772'}\r\n.icon-circleloaderseven:before{content:'\\f773'}\r\n.icon-circleloadersix:before{content:'\\f774'}\r\n.icon-circleloaderfive:before{content:'\\f775'}\r\n.icon-circleloaderfour:before{content:'\\f776'}\r\n.icon-circleloaderthree:before{content:'\\f777'}\r\n.icon-circleloadertwo:before{content:'\\f778'}\r\n.icon-circleloaderone:before{content:'\\f779'}\r\n.icon-circleloaderempty:before{content:'\\f77a'}\r\n.icon-whatsapp:before{content:'\\f77b'}\r\n.icon-whatsappalt:before{content:'\\f77c'}\r\n.icon-viber:before{content:'\\f77d'}\r\n.icon-squareviber:before{content:'\\f77e'}\r\n.icon-teamviewer:before{content:'\\f77f'}\r\n.icon-tunein:before{content:'\\f780'}\r\n.icon-tuneinalt:before{content:'\\f781'}\r\n.icon-weightscale:before{content:'\\f782'}\r\n.icon-boxing:before{content:'\\f783'}\r\n.icon-speedalt:before{content:'\\f784'}\r\n.icon-scriptalt:before{content:'\\f785'}\r\n.icon-splitthree:before{content:'\\f786'}\r\n.icon-mergethree:before{content:'\\f787'}\r\n.icon-layersthree:before{content:'\\f788'}\r\n.icon-mutemic:before{content:'\\f789'}\r\n.icon-zerply:before{content:'\\f78a'}\r\n.icon-circlegoogleplus:before{content:'\\f78b'}\r\n.icon-circletwitter:before{content:'\\f78c'}\r\n.icon-circlefacebook:before{content:'\\f78d'}\r\n.icon-circleyahoo:before{content:'\\f78e'}\r\n.icon-circlegithub:before{content:'\\f78f'}\r\n.icon-forumsalt:before{content:'\\f790'}\r\n.icon-circlepath:before{content:'\\f791'}\r\n.icon-circlevimeo:before{content:'\\f792'}\r\n.icon-circlevine:before{content:'\\f793'}\r\n.icon-instagramtwo:before{content:'\\f794'}\r\n.icon-instagramthree:before{content:'\\f795'}\r\n.icon-flickrthree:before{content:'\\f796'}\r\n.icon-quora:before{content:'\\f797'}\r\n.icon-squarequora:before{content:'\\f798'}\r\n.icon-circlequora:before{content:'\\f799'}\r\n.icon-picasa:before{content:'\\f79a'}\r\n.icon-branch:before{content:'\\f79b'}\r\n.icon-ingress:before{content:'\\f79c'}\r\n.icon-squarezerply:before{content:'\\f79d'}\r\n.icon-circlezerply:before{content:'\\f79e'}\r\n.icon-squarevimeo:before{content:'\\f79f'}\r\n.icon-squaretwitter:before{content:'\\f7a0'}\r\n.icon-brightnessalt:before{content:'\\f7a1'}\r\n.icon-brightnessalthalf:before{content:'\\f7a2'}\r\n.icon-brightnessaltfull:before{content:'\\f7a3'}\r\n.icon-brightnessaltauto:before{content:'\\f7a4'}\r\n.icon-shirtbuttonthree:before{content:'\\f7a5'}\r\n.icon-openshare:before{content:'\\f7a6'}\r\n.icon-copyapp:before{content:'\\f7a7'}\r\n.icon-bowl:before{content:'\\f7a8'}\r\n.icon-cloudalt:before{content:'\\f7a9'}\r\n.icon-cloudaltdownload:before{content:'\\f7aa'}\r\n.icon-cloudaltupload:before{content:'\\f7ab'}\r\n.icon-cloudaltsync:before{content:'\\f7ac'}\r\n.icon-cloudaltprivate:before{content:'\\f7ad'}\r\n.icon-flipboard:before{content:'\\f7ae'}\r\n.icon-octoloaderempty:before{content:'\\f7af'}\r\n.icon-octoloaderone:before{content:'\\f7b0'}\r\n.icon-octoloadertwo:before{content:'\\f7b1'}\r\n.icon-octoloaderthree:before{content:'\\f7b2'}\r\n.icon-octoloaderfour:before{content:'\\f7b3'}\r\n.icon-octoloaderfive:before{content:'\\f7b4'}\r\n.icon-octoloadersix:before{content:'\\f7b5'}\r\n.icon-octoloaderseven:before{content:'\\f7b6'}\r\n.icon-octoloaderfull:before{content:'\\f7b7'}\r\n.icon-selectionsymbol:before{content:'\\f7b8'}\r\n.icon-infinityalt:before{content:'\\f7b9'}\r\n.icon-pullrequest:before{content:'\\f7ba'}\r\n.icon-projectforkdelete:before{content:'\\f7bb'}\r\n.icon-projectforkprivate:before{content:'\\f7bc'}\r\n.icon-commit:before{content:'\\f7bd'}\r\n.icon-htmlfile:before{content:'\\f7be'}\r\n.icon-pushalt:before{content:'\\f7bf'}\r\n.icon-pullalt:before{content:'\\f7c0'}\r\n.icon-photonineframes:before{content:'\\f7c1'}\r\n.icon-wetfloor:before{content:'\\f7c2'}\r\n.icon-instagramfour:before{content:'\\f7c3'}\r\n.icon-circleinstagram:before{content:'\\f7c4'}\r\n.icon-videocamerathree:before{content:'\\f7c5'}\r\n.icon-subtitles:before{content:'\\f7c6'}\r\n.icon-subtitlesoff:before{content:'\\f7c7'}\r\n.icon-compress:before{content:'\\f7c8'}\r\n.icon-baby:before{content:'\\f7c9'}\r\n.icon-ducky:before{content:'\\f7ca'}\r\n.icon-handswipe:before{content:'\\f7cb'}\r\n.icon-swipeup:before{content:'\\f7cc'}\r\n.icon-swipedown:before{content:'\\f7cd'}\r\n.icon-twofingerswipedown:before{content:'\\f7ce'}\r\n.icon-twofingerswipeup:before{content:'\\f7cf'}\r\n.icon-doubletap:before{content:'\\f7d0'}\r\n.icon-dribbblealt:before{content:'\\f7d1'}\r\n.icon-circlecallmissed:before{content:'\\f7d2'}\r\n.icon-circlecallincoming:before{content:'\\f7d3'}\r\n.icon-circlecalloutgoing:before{content:'\\f7d4'}\r\n.icon-circledownload:before{content:'\\f7d5'}\r\n.icon-circleupload:before{content:'\\f7d6'}\r\n.icon-minismile:before{content:'\\f7d7'}\r\n.icon-minisad:before{content:'\\f7d8'}\r\n.icon-minilaugh:before{content:'\\f7d9'}\r\n.icon-minigrin:before{content:'\\f7da'}\r\n.icon-miniangry:before{content:'\\f7db'}\r\n.icon-minitongue:before{content:'\\f7dc'}\r\n.icon-minitonguealt:before{content:'\\f7dd'}\r\n.icon-miniwink:before{content:'\\f7de'}\r\n.icon-minitonguewink:before{content:'\\f7df'}\r\n.icon-miniconfused:before{content:'\\f7e0'}\r\n.icon-soundright:before{content:'\\f7e1'}\r\n.icon-soundleft:before{content:'\\f7e2'}\r\n.icon-savetodrive:before{content:'\\f7e3'}\r\n.icon-layerorderup:before{content:'\\f7e4'}\r\n.icon-layerorderdown:before{content:'\\f7e5'}\r\n.icon-layerorder:before{content:'\\f7e6'}\r\n.icon-circledribbble:before{content:'\\f7e7'}\r\n.icon-squaredribbble:before{content:'\\f7e8'}\r\n.icon-handexpand:before{content:'\\f7e9'}\r\n.icon-handpinch:before{content:'\\f7ea'}\r\n.icon-fontserif:before{content:'\\f7eb'}\r\n.icon-fontsansserif:before{content:'\\f7ec'}\r\n.icon-fontrounded:before{content:'\\f7ed'}\r\n.icon-fonthandwriting:before{content:'\\f7ee'}\r\n.icon-fonttypewriter:before{content:'\\f7ef'}\r\n.icon-fontcomic:before{content:'\\f7f0'}\r\n.icon-fontcaligraphy:before{content:'\\f7f1'}\r\n.icon-fontgothic:before{content:'\\f7f2'}\r\n.icon-fontstencil:before{content:'\\f7f3'}\r\n"
  },
  {
    "path": "templates/cpu.tmpl",
    "content": "<div id=\"cpu_chart\" class=\"chart\">\n</div>\n<table>\n    <tr>\n        <td colspan=\"2\" class=\"tb-head\">Overview</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator user\"></div>User</span>\n        </td>\n        <td class=\"right\">{{ cpu.user }} %</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator system\"></div>System</span>\n        </td>\n        <td class=\"right\">{{ cpu.sys }} %</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator idle\"></div>Idle</span>\n        </td>\n        <td class=\"right\">{{ cpu.idle }} %</td>\n    </tr>\n</table>\n<table>\n    <tr>\n        <td colspan=\"2\" class=\"tb-head\">Top Processes</td>\n    </tr>\n    {{#each procs:p}}\n    <tr>\n        <td>{{ command }}</td>\n        <td class=\"right\">{{ cpu }} %</td>\n    </tr>\n    {{/each}}\n</table>\n"
  },
  {
    "path": "templates/mem.tmpl",
    "content": "<div id=\"mem_chart\" class=\"chart\">\n</div>\n<table>\n    <tr>\n        <td colspan=\"2\" class=\"tb-head\">Overview</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator used\"></div>Used</span>\n        </td>\n        <td class=\"right\">{{ mem.used }}</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator wired\"></div>Wired</span>\n        </td>\n        <td class=\"right\">{{ mem.wired }}</td>\n    </tr>\n    <tr>\n        <td>\n            <span><div class=\"indicator unused\"></div>Unused</span>\n        </td>\n        <td class=\"right\">{{ mem.unused }}</td>\n    </tr>\n</table>\n<table>\n    <tr>\n        <td colspan=\"2\" class=\"tb-head\">Top Processes</td>\n    </tr>\n    {{#each procs:p}}\n    <tr>\n        <td>{{ command }}</td>\n        <td class=\"right\">{{ mem }}</td>\n    </tr>\n    {{/each}}\n</table>\n"
  }
]