From e470e2538fb4ff596fb774b875a68c61c26ee6a3 Mon Sep 17 00:00:00 2001 From: Sara Steiert Date: Sun, 5 Mar 2017 20:30:37 +0100 Subject: [PATCH] FIX everything --- Gruntfile.js | 23 ++---- GruntfilePdf.js | 21 ++--- .eslintrc.js => eslint.json | 0 package.json | 151 +++++++++++++++++----------------- pdf/resume-grey-boxes.pdf | Bin 90968 -> 90968 bytes pdf/resume-left-right.pdf | Bin 95593 -> 95593 bytes pdf/resume-oblique.pdf | Bin 55661 -> 55661 bytes pdf/resume-side-bar.pdf | Bin 50993 -> 50993 bytes pdf/resume-spotify.pdf | Bin 52127 -> 52127 bytes public/styles/style.min.css | 2 +- test/node/Config.js | 8 -- test/node/files/readFile.txt | 1 - test/node/files/writeFile.txt | 1 - test/test.js | 9 -- 14 files changed, 86 insertions(+), 130 deletions(-) rename .eslintrc.js => eslint.json (100%) delete mode 100755 test/node/Config.js delete mode 100755 test/node/files/readFile.txt delete mode 100755 test/node/files/writeFile.txt delete mode 100755 test/test.js diff --git a/Gruntfile.js b/Gruntfile.js index b790984..3f6ddce 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,4 +1,5 @@ module.exports = function(grunt) { + grunt.loadNpmTasks('grunt-exec'); require('load-grunt-tasks')(grunt); grunt.initConfig({ babel: { @@ -12,21 +13,9 @@ module.exports = function(grunt) { } } }, - execute: { - less: { - options: { - nodeargs: ['--harmony-async-await'], - args: ['less'] - }, - src: ['src/app.js'] - }, - wait: { - options: { - nodeargs: ['--harmony-async-await'], - args: ['wait'] - }, - src: ['src/app.js'] - } + exec: { + less: 'node --harmony-async-await src/app.js less', + wait: 'node --harmony-async-await src/app.js wait' }, bgShell: { _defaults: { @@ -44,7 +33,7 @@ module.exports = function(grunt) { 'resumes/**/*.less', 'less/**/*.less' ], - tasks: ['execute', 'babel', 'bgShell:express', 'execute:wait'], + tasks: ['exec:less', 'babel', 'bgShell:express', 'exec:wait'], options: { nospawn: false, livereload: true @@ -53,5 +42,5 @@ module.exports = function(grunt) { } }); - grunt.registerTask('default', ['babel', 'execute:less', 'bgShell:express', 'execute:wait', 'watch']); + grunt.registerTask('default', ['babel', 'exec:less', 'bgShell:express', 'exec:wait', 'watch']); }; diff --git a/GruntfilePdf.js b/GruntfilePdf.js index f7905d1..a5607e4 100755 --- a/GruntfilePdf.js +++ b/GruntfilePdf.js @@ -1,4 +1,5 @@ module.exports = function(grunt) { + grunt.loadNpmTasks('grunt-exec'); require('load-grunt-tasks')(grunt); grunt.initConfig({ babel: { @@ -12,23 +13,11 @@ module.exports = function(grunt) { } } }, - execute: { - less: { - options: { - nodeargs: ['--harmony-async-await'], - args: ['less'] - }, - src: ['src/app.js'] - }, - pdf: { - options: { - nodeargs: ['--harmony-async-await'], - args: ['pdf'] - }, - src: ['src/app.js'] - } + exec: { + less: 'node --harmony-async-await src/app.js less', + pdf: 'node --harmony-async-await src/app.js pdf' } }); - grunt.registerTask('default', ['babel', 'execute']); + grunt.registerTask('default', ['babel', 'exec:less', 'exec:pdf']); }; diff --git a/.eslintrc.js b/eslint.json similarity index 100% rename from .eslintrc.js rename to eslint.json diff --git a/package.json b/package.json index 94fd9f4..9007e4b 100755 --- a/package.json +++ b/package.json @@ -1,79 +1,76 @@ { - "name": "best-resume-ever", - "version": "1.0.0", - "description": "Collection of multiple resumes build with LESS and Mustache Templates.", - "repository": { - "type": "git", - "url": "git+https://github.com/salomonelli/best-resume-ever" - }, - "author": "salomonelli", - "homepage": "https://github.com/salomonelli/best-resume-ever", - "keywords": [ - "resume", - "template", - "mustache", - "less", - "cv", - "curriculum", - "vitae", - "electron", - "grunt" - ], - "scripts": { - "server": "node --harmony-async-await src/app.js server", - "dev": "grunt --verbose", - "pdf": "concurrently \"npm run server\" \"grunt --gruntfile GruntfilePdf.js --verbose\"", - "lint": "eslint src/", - "test": "nyc mocha --harmony-async-await \"test/*.js\"", - "istanbul": "istanbul cover node_modules/.bin/_mocha -- -- -u exports test/**/* --harmony-async-await" - }, - "dependencies": { - "@typopro/web-montserrat": "3.4.9", - "babel-cli": "6.22.2", - "babel-core": "6.22.1", - "babel-preset-es2015": "6.22.0", - "buffer-to-string": "0.1.0", - "clean-css": "4.0.4", - "electroshot": "1.2.0", - "express": "4.14.1", - "font-awesome": "4.7.0", - "fs": "0.0.1-security", - "hogan-express": "0.5.2", - "html-pdf": "2.1.0", - "html-to-pdf": "0.1.11", - "http": "0.0.0", - "jquery": "3.1.1", - "less": "2.7.2", - "less-plugin-clean-css": "1.5.1", - "local-web-server": "1.2.6", - "markdown-to-html": "0.0.13", - "material-design-icons": "3.0.1", - "mustache": "2.3.0", - "mustache-express": "1.2.4", - "normalize.css": "5.0.0", - "npm-font-open-sans-condensed": "1.0.3", - "open-sans-fontface": "1.4.0", - "path": "0.12.7", - "phantomjs-prebuilt": "2.1.14", - "raleway-webfont": "3.0.1", - "request": "2.79.0", - "request-promise": "4.1.1", - "roboto-fontface": "0.7.0", - "showdown": "1.6.3", - "typeface-chivo": "0.0.22", - "write": "0.3.2" - }, - "devDependencies": { - "eslint": "3.15.0", - "grunt": "1.0.1", - "grunt-babel": "6.0.0", - "grunt-bg-shell": "^2.3.3", - "grunt-cli": "1.2.0", - "grunt-contrib-watch": "1.0.0", - "grunt-execute": "0.2.2", - "load-grunt-tasks": "3.5.2", - "mocha": "3.2.0", - "nyc": "10.1.2", - "reload": "1.1.1" - } + "name": "best-resume-ever", + "version": "1.0.0", + "description": "Collection of multiple resumes build with LESS and Mustache Templates.", + "repository": { + "type": "git", + "url": "git+https://github.com/salomonelli/best-resume-ever" + }, + "author": "salomonelli", + "homepage": "https://github.com/salomonelli/best-resume-ever", + "keywords": [ + "resume", + "template", + "mustache", + "less", + "cv", + "curriculum", + "vitae", + "electron", + "grunt" + ], + "scripts": { + "server": "node --harmony-async-await src/app.js server", + "dev": "grunt --verbose", + "pdf": "concurrently \"npm run server\" \"grunt --gruntfile GruntfilePdf.js --verbose\"", + "lint": "eslint src/" + }, + "dependencies": { + "@typopro/web-montserrat": "3.4.9", + "babel-cli": "6.23.0", + "babel-core": "6.23.1", + "babel-preset-es2015": "6.22.0", + "buffer-to-string": "0.1.0", + "clean-css": "4.0.8", + "electroshot": "1.2.0", + "express": "4.15.0", + "font-awesome": "4.7.0", + "fs": "0.0.2", + "hogan-express": "0.5.2", + "html-pdf": "2.1.0", + "html-to-pdf": "0.1.11", + "http": "0.0.0", + "jquery": "3.1.1", + "less": "2.7.2", + "less-plugin-clean-css": "1.5.1", + "local-web-server": "1.2.6", + "markdown-to-html": "0.0.13", + "material-design-icons": "3.0.1", + "mustache": "2.3.0", + "mustache-express": "1.2.4", + "normalize.css": "5.0.0", + "npm-font-open-sans-condensed": "1.0.3", + "open-sans-fontface": "1.4.0", + "path": "0.12.7", + "phantomjs-prebuilt": "2.1.14", + "raleway-webfont": "3.0.1", + "request": "2.80.0", + "request-promise": "4.1.1", + "roboto-fontface": "0.7.0", + "showdown": "1.6.4", + "typeface-chivo": "0.0.22", + "write": "0.3.2" + }, + "devDependencies": { + "concurrently": "3.4.0", + "eslint": "3.17.0", + "grunt": "1.0.1", + "grunt-babel": "6.0.0", + "grunt-bg-shell": "2.3.3", + "grunt-cli": "1.2.0", + "grunt-contrib-watch": "1.0.0", + "grunt-exec": "2.0.0", + "load-grunt-tasks": "3.5.2", + "reload": "1.1.1" + } } diff --git a/pdf/resume-grey-boxes.pdf b/pdf/resume-grey-boxes.pdf index 31b35346303c61ac6a7acc796c6c3127b9ef990f..81874d524bba846b19c203c5b1d952796d8587c8 100644 GIT binary patch delta 60 zcmca{jP=Gb)(J5>#s;Q_mWCzOiE)rSF@c;*waBs-WRwWn^GzZU9%(*s-;P H@j?;+9V`)J delta 60 zcmca{jP=Gb)(J5>MnGU_YH4DkZD61dM4DXszWFIGi6yBD8ZK5w28QMaa3zf$TRRvp GBmn>(L=kTQ diff --git a/pdf/resume-left-right.pdf b/pdf/resume-left-right.pdf index 65c0232ad90b9b6702c7baa01153a40074cb447e..c0480fcb56d4e3e2b5524e4ff276729f7450f6c8 100644 GIT binary patch delta 60 zcmaF)iuL6y)(J5>#s;Q_mWCz<#@Yr3>OiE)rSF@c;*waBs-WRwWn^GzZU9%(*s-;P H@nH!7HG~oJ delta 60 zcmaF)iuL6y)(J5>MnGU_YH4DsZD61dM4DXszWFIGi6yBD8ZK5w28QMaa3zf$TRRvZ GmH+@YoDu#2 diff --git a/pdf/resume-oblique.pdf b/pdf/resume-oblique.pdf index 999761fd8837f9ab3e8cf7b89f6b1e35d5f1565c..40d70c1929c29c2cd9bbcf5133a548978fcfd604 100644 GIT binary patch delta 57 zcmaF6iTUj&<_R%6#s;Q_mWCzOiE)rSF@c;*waBs-WRwWn^GzZU9%ZvE%6t E0PGVG;s5{u delta 57 zcmaF6iTUj&<_R%6MnGU_YH4DoZD61dM4DXszWFIGi6yBD8ZK5w28QMaa3vc%p56ce D?FSI< diff --git a/pdf/resume-side-bar.pdf b/pdf/resume-side-bar.pdf index c7ca4e6f6bb8c1fe3440677d0b7b3b61faceec00..df1605197eb70bd897ec3caf61d35bc1bcd99a27 100644 GIT binary patch delta 57 zcmdnk$GowRc|weiv4N?frJ;#|iMD}(IuL1c>HFrVxFnXODrmS^85tOw8^D!p>{xjW E0Kzd3)Bpeg delta 57 zcmdnk$GowRc|wei5fB)fTAG+^8yKhqktUbEZ+?nPVo9okhKrSvfuXqpT*=0cmB#?X CQV-$) diff --git a/pdf/resume-spotify.pdf b/pdf/resume-spotify.pdf index 5c0305f134ed98b39dbf7c04a07d5c9e42604575..2d97e4663b1784bff6b04283001e6e285e68177a 100644 GIT binary patch delta 57 zcmbO~oq7Ir<_R%6#s;Q_mWCzOiE)rSF@c;*waBs-WRwWn^GzZU9%Zu|xbc E0KG;JHvj+t delta 57 zcmbO~oq7Ir<_R%6MnGU_YH4DjZD61dM4DXszWFIGi6yBD8ZK5w28QMaa3vc%#7_eN DzGn|b diff --git a/public/styles/style.min.css b/public/styles/style.min.css index de4a779..7fd788e 100755 --- a/public/styles/style.min.css +++ b/public/styles/style.min.css @@ -1 +1 @@ -@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Light/OpenSans-Light.eot);src:url(/open-sans-fontface/fonts/Light/OpenSans-Light.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.woff) format('woff'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.ttf) format('truetype'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.svg#OpenSansLight) format('svg');font-weight:300;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot);src:url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.woff) format('woff'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.svg#OpenSansLightItalic) format('svg');font-weight:300;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot);src:url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.woff) format('woff'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.ttf) format('truetype'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.svg#OpenSansRegular) format('svg');font-weight:400;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot);src:url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.woff) format('woff'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.ttf) format('truetype'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.svg#OpenSansItalic) format('svg');font-weight:400;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot);src:url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.woff) format('woff'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.ttf) format('truetype'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.svg#OpenSansSemibold) format('svg');font-weight:600;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot);src:url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.svg#OpenSansSemiboldItalic) format('svg');font-weight:600;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot);src:url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.woff) format('woff'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.ttf) format('truetype'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.svg#OpenSansBold) format('svg');font-weight:700;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot);src:url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.svg#OpenSansBoldItalic) format('svg');font-weight:700;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot);src:url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.woff) format('woff'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.ttf) format('truetype'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.svg#OpenSansExtrabold) format('svg');font-weight:800;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot);src:url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.svg#OpenSansExtraboldItalic) format('svg');font-weight:800;font-style:italic}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.ttf) format('truetype');font-style:normal;font-weight:900;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.ttf) format('truetype');font-style:normal;font-weight:700;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.ttf) format('truetype');font-style:normal;font-weight:300;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.ttf) format('truetype');font-style:normal;font-weight:400;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.ttf) format('truetype');font-style:normal;font-weight:200;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat Alternates';src:url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.ttf) format('truetype');font-style:normal;font-weight:700;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat Alternates';src:url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.ttf) format('truetype');font-style:normal;font-weight:400;font-stretch:normal;font-variant:normal}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Thin.ttf) format('truetype');font-style:normal;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Thin-Italic.ttf) format('truetype');font-style:italic;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraLight.ttf) format('truetype');font-style:normal;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraLight-Italic.ttf) format('truetype');font-style:italic;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Light.ttf) format('truetype');font-style:normal;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Light-Italic.ttf) format('truetype');font-style:italic;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Regular.ttf) format('truetype');font-style:normal;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Regular-Italic.ttf) format('truetype');font-style:italic;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Medium.ttf) format('truetype');font-style:normal;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Medium-Italic.ttf) format('truetype');font-style:italic;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-SemiBold.ttf) format('truetype');font-style:normal;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-SemiBold-Italic.ttf) format('truetype');font-style:italic;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Bold.ttf) format('truetype');font-style:normal;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Bold-Italic.ttf) format('truetype');font-style:italic;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraBold.ttf) format('truetype');font-style:normal;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraBold-Italic.ttf) format('truetype');font-style:italic;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Black.ttf) format('truetype');font-style:normal;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Black-Italic.ttf) format('truetype');font-style:italic;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:'Open Sans Condensed';font-weight:300;font-style:normal;src:url(/npm-font-open-sans-condensed/fonts/opensans-condlight.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condlight.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.svg#OpenSansCondensedLight) format('svg')}@font-face{font-family:'Open Sans Condensed';font-weight:300;font-style:italic;src:url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.svg#OpenSansCondensedLightItalic) format('svg')}@font-face{font-family:'Open Sans Condensed';font-weight:700;font-style:normal;src:url(/npm-font-open-sans-condensed/fonts/opensans-condbold.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condbold.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.svg#OpenSansCondensedBold) format('svg')}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(/material-design-icons/iconfont/MaterialIcons-Regular.eot);src:local('Material Icons'),local('MaterialIcons-Regular'),url(/material-design-icons/iconfont/MaterialIcons-Regular.woff2) format('woff2'),url(/material-design-icons/iconfont/MaterialIcons-Regular.woff) format('woff'),url(/material-design-icons/iconfont/MaterialIcons-Regular.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:liga}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot);src:local('Roboto Thin'),local('Roboto-Thin'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.svg#Roboto) format('svg');font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot);src:local('Roboto Thin'),local('Roboto-Thin'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot);src:local('Roboto ThinItalic'),local('Roboto-ThinItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.svg#Roboto) format('svg');font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot);src:local('Roboto ThinItalic'),local('Roboto-ThinItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot);src:local('Roboto Light'),local('Roboto-Light'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.svg#Roboto) format('svg');font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot);src:local('Roboto Light'),local('Roboto-Light'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot);src:local('Roboto LightItalic'),local('Roboto-LightItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.svg#Roboto) format('svg');font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot);src:local('Roboto LightItalic'),local('Roboto-LightItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot);src:local('Roboto Regular'),local('Roboto-Regular'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.svg#Roboto) format('svg');font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot);src:local('Roboto Regular'),local('Roboto-Regular'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot);src:local('Roboto RegularItalic'),local('Roboto-RegularItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.svg#Roboto) format('svg');font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot);src:local('Roboto RegularItalic'),local('Roboto-RegularItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot);src:local('Roboto Medium'),local('Roboto-Medium'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.svg#Roboto) format('svg');font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot);src:local('Roboto Medium'),local('Roboto-Medium'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot);src:local('Roboto MediumItalic'),local('Roboto-MediumItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.svg#Roboto) format('svg');font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot);src:local('Roboto MediumItalic'),local('Roboto-MediumItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot);src:local('Roboto Bold'),local('Roboto-Bold'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.svg#Roboto) format('svg');font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot);src:local('Roboto Bold'),local('Roboto-Bold'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot);src:local('Roboto BoldItalic'),local('Roboto-BoldItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.svg#Roboto) format('svg');font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot);src:local('Roboto BoldItalic'),local('Roboto-BoldItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot);src:local('Roboto Black'),local('Roboto-Black'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.svg#Roboto) format('svg');font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot);src:local('Roboto Black'),local('Roboto-Black'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot);src:local('Roboto BlackItalic'),local('Roboto-BlackItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.svg#Roboto) format('svg');font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot);src:local('Roboto BlackItalic'),local('Roboto-BlackItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot);src:local("Roboto-Condensed Regular"),local("Roboto-Condensed-Regular"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed) format("svg");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Condensed-Regular;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Regular.eot);src:local("Roboto-Condensed Regular"),local("Roboto-Condensed-Regular"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot);src:local("Roboto-Condensed RegularItalic"),local("Roboto-Condensed-RegularItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed) format("svg");font-weight:400;font-style:italic}@font-face{font-family:Roboto-Condensed-RegularItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot);src:local("Roboto-Condensed RegularItalic"),local("Roboto-Condensed-RegularItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot);src:local("Roboto-Condensed Light"),local("Roboto-Condensed-Light"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed) format("svg");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Condensed-Light;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Light.eot);src:local("Roboto-Condensed Light"),local("Roboto-Condensed-Light"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot);src:local("Roboto-Condensed LightItalic"),local("Roboto-Condensed-LightItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed) format("svg");font-weight:300;font-style:italic}@font-face{font-family:Roboto-Condensed-LightItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-LightItalic.eot);src:local("Roboto-Condensed LightItalic"),local("Roboto-Condensed-LightItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot);src:local("Roboto-Condensed Bold"),local("Roboto-Condensed-Bold"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed) format("svg");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Condensed-Bold;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Bold.eot);src:local("Roboto-Condensed Bold"),local("Roboto-Condensed-Bold"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot);src:local("Roboto-Condensed BoldItalic"),local("Roboto-Condensed-BoldItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed) format("svg");font-weight:700;font-style:italic}@font-face{font-family:Roboto-Condensed-BoldItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot);src:local("Roboto-Condensed BoldItalic"),local("Roboto-Condensed-BoldItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot);src:local('Roboto-Slab Thin'),local('Roboto-Slab-Thin'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.svg#Roboto-Slab) format('svg');font-weight:100;font-style:normal}@font-face{font-family:Roboto-Slab-Thin;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot);src:local('Roboto-Slab Thin'),local('Roboto-Slab-Thin'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot);src:local('Roboto-Slab Light'),local('Roboto-Slab-Light'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.svg#Roboto-Slab) format('svg');font-weight:300;font-style:normal}@font-face{font-family:Roboto-Slab-Light;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot);src:local('Roboto-Slab Light'),local('Roboto-Slab-Light'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot);src:local('Roboto-Slab Regular'),local('Roboto-Slab-Regular'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.svg#Roboto-Slab) format('svg');font-weight:400;font-style:normal}@font-face{font-family:Roboto-Slab-Regular;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot);src:local('Roboto-Slab Regular'),local('Roboto-Slab-Regular'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot);src:local('Roboto-Slab Bold'),local('Roboto-Slab-Bold'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.svg#Roboto-Slab) format('svg');font-weight:700;font-style:normal}@font-face{font-family:Roboto-Slab-Bold;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot);src:local('Roboto-Slab Bold'),local('Roboto-Slab-Bold'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.svg#Roboto-Slab) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:300;src:url(/typeface-chivo/files/chivo-latin-300.eot);src:local('Chivo Light '),local('Chivo-Light'),url(/typeface-chivo/files/chivo-latin-300.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-300.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-300.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-300.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:300;src:url(/typeface-chivo/files/chivo-latin-300italic.eot);src:local('Chivo Light italic'),local('Chivo-Lightitalic'),url(/typeface-chivo/files/chivo-latin-300italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-300italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-300italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-300italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:400;src:url(/typeface-chivo/files/chivo-latin-400.eot);src:local('Chivo Regular '),local('Chivo-Regular'),url(/typeface-chivo/files/chivo-latin-400.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-400.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-400.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-400.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:400;src:url(/typeface-chivo/files/chivo-latin-400italic.eot);src:local('Chivo Regular italic'),local('Chivo-Regularitalic'),url(/typeface-chivo/files/chivo-latin-400italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-400italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-400italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-400italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:700;src:url(/typeface-chivo/files/chivo-latin-700italic.eot);src:local('Chivo Bold italic'),local('Chivo-Bolditalic'),url(/typeface-chivo/files/chivo-latin-700italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-700italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-700italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-700italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:900;src:url(/typeface-chivo/files/chivo-latin-900.eot);src:local('Chivo #000 '),local('Chivo-Black'),url(/typeface-chivo/files/chivo-latin-900.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-900.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-900.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-900.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:700;src:url(/typeface-chivo/files/chivo-latin-700.eot);src:local('Chivo Bold '),local('Chivo-Bold'),url(/typeface-chivo/files/chivo-latin-700.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-700.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-700.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-700.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:900;src:url(/typeface-chivo/files/chivo-latin-900italic.eot);src:local('Chivo #000 italic'),local('Chivo-Blackitalic'),url(/typeface-chivo/files/chivo-latin-900italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-900italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-900italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-900italic.svg#chivo) format('svg')}/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}body{overflow-x:hidden;background:#ccc;font-family:'Open Sans',sans-serif;margin:0;padding:0;-webkit-print-color-adjust:exact;box-sizing:border-box}body page{background:#fff;position:relative;width:21cm;height:29.7cm;display:block;page-break-after:auto;overflow:hidden}body page .resume{display:inline-block;width:100%}body .index-page{padding-left:5%;width:90%;padding-top:20px}body .index-page h3{font-size:30px}body .index-page .resume{display:inline-block;text-decoration:none;margin-right:10px;margin-bottom:10px}body .index-page .resume img{height:300px;width:auto;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);transition:all .3s cubic-bezier(.25,.8,.25,1)}body .index-page .resume img:hover{box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}body .index-page .resume .resume-title{text-align:center;display:block;text-decoration:none;margin-top:10px;color:#000}@media print{body,page{margin:0;box-shadow:0;width:100%;height:100%}} \ No newline at end of file +@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Light/OpenSans-Light.eot);src:url(/open-sans-fontface/fonts/Light/OpenSans-Light.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.woff) format('woff'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.ttf) format('truetype'),url(/open-sans-fontface/fonts/Light/OpenSans-Light.svg#OpenSansLight) format('svg');font-weight:300;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot);src:url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.woff) format('woff'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/LightItalic/OpenSans-LightItalic.svg#OpenSansLightItalic) format('svg');font-weight:300;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot);src:url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.woff) format('woff'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.ttf) format('truetype'),url(/open-sans-fontface/fonts/Regular/OpenSans-Regular.svg#OpenSansRegular) format('svg');font-weight:400;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot);src:url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.woff) format('woff'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.ttf) format('truetype'),url(/open-sans-fontface/fonts/Italic/OpenSans-Italic.svg#OpenSansItalic) format('svg');font-weight:400;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot);src:url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.woff) format('woff'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.ttf) format('truetype'),url(/open-sans-fontface/fonts/Semibold/OpenSans-Semibold.svg#OpenSansSemibold) format('svg');font-weight:600;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot);src:url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/SemiboldItalic/OpenSans-SemiboldItalic.svg#OpenSansSemiboldItalic) format('svg');font-weight:600;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot);src:url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.woff) format('woff'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.ttf) format('truetype'),url(/open-sans-fontface/fonts/Bold/OpenSans-Bold.svg#OpenSansBold) format('svg');font-weight:700;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot);src:url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/BoldItalic/OpenSans-BoldItalic.svg#OpenSansBoldItalic) format('svg');font-weight:700;font-style:italic}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot);src:url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.woff) format('woff'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.ttf) format('truetype'),url(/open-sans-fontface/fonts/ExtraBold/OpenSans-ExtraBold.svg#OpenSansExtrabold) format('svg');font-weight:800;font-style:normal}@font-face{font-family:'Open Sans';src:url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot);src:url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot?#iefix) format('embedded-opentype'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.woff) format('woff'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.ttf) format('truetype'),url(/open-sans-fontface/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.svg#OpenSansExtraboldItalic) format('svg');font-weight:800;font-style:italic}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Black.ttf) format('truetype');font-style:normal;font-weight:900;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Bold.ttf) format('truetype');font-style:normal;font-weight:700;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Light.ttf) format('truetype');font-style:normal;font-weight:300;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Regular.ttf) format('truetype');font-style:normal;font-weight:400;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat';src:url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-Montserrat-Thin.ttf) format('truetype');font-style:normal;font-weight:200;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat Alternates';src:url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Bold.ttf) format('truetype');font-style:normal;font-weight:700;font-stretch:normal;font-variant:normal}@font-face{font-family:'TypoPRO Montserrat Alternates';src:url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.eot);src:local('*'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.eot?#iefix) format('embedded-opentype'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.woff) format('woff'),url(/@typopro/web-montserrat/TypoPRO-MontserratAlternates-Regular.ttf) format('truetype');font-style:normal;font-weight:400;font-stretch:normal;font-variant:normal}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Thin.ttf) format('truetype');font-style:normal;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Thin-Italic.ttf) format('truetype');font-style:italic;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraLight.ttf) format('truetype');font-style:normal;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraLight-Italic.ttf) format('truetype');font-style:italic;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Light.ttf) format('truetype');font-style:normal;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Light-Italic.ttf) format('truetype');font-style:italic;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Regular.ttf) format('truetype');font-style:normal;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Regular-Italic.ttf) format('truetype');font-style:italic;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Medium.ttf) format('truetype');font-style:normal;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Medium-Italic.ttf) format('truetype');font-style:italic;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-SemiBold.ttf) format('truetype');font-style:normal;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-SemiBold-Italic.ttf) format('truetype');font-style:italic;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Bold.ttf) format('truetype');font-style:normal;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Bold-Italic.ttf) format('truetype');font-style:italic;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraBold.ttf) format('truetype');font-style:normal;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-ExtraBold-Italic.ttf) format('truetype');font-style:italic;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Black.ttf) format('truetype');font-style:normal;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/raleway-webfont/fonts/Raleway-Black-Italic.ttf) format('truetype');font-style:italic;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:'Open Sans Condensed';font-weight:300;font-style:normal;src:url(/npm-font-open-sans-condensed/fonts/opensans-condlight.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condlight.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlight.svg#OpenSansCondensedLight) format('svg')}@font-face{font-family:'Open Sans Condensed';font-weight:300;font-style:italic;src:url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condlightitalic.svg#OpenSansCondensedLightItalic) format('svg')}@font-face{font-family:'Open Sans Condensed';font-weight:700;font-style:normal;src:url(/npm-font-open-sans-condensed/fonts/opensans-condbold.eot);src:url(/npm-font-open-sans-condensed/fonts/opensans-condbold.eot?#iefix) format('embedded-opentype'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.woff) format('woff'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.ttf) format('truetype'),url(/npm-font-open-sans-condensed/fonts/opensans-condbold.svg#OpenSansCondensedBold) format('svg')}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(/material-design-icons/iconfont/MaterialIcons-Regular.eot);src:local('Material Icons'),local('MaterialIcons-Regular'),url(/material-design-icons/iconfont/MaterialIcons-Regular.woff2) format('woff2'),url(/material-design-icons/iconfont/MaterialIcons-Regular.woff) format('woff'),url(/material-design-icons/iconfont/MaterialIcons-Regular.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga'}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot);src:local('Roboto Thin'),local('Roboto-Thin'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.svg#Roboto) format('svg');font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot);src:local('Roboto Thin'),local('Roboto-Thin'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Thin.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot);src:local('Roboto ThinItalic'),local('Roboto-ThinItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.svg#Roboto) format('svg');font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot);src:local('Roboto ThinItalic'),local('Roboto-ThinItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-ThinItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot);src:local('Roboto Light'),local('Roboto-Light'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.svg#Roboto) format('svg');font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot);src:local('Roboto Light'),local('Roboto-Light'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Light.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot);src:local('Roboto LightItalic'),local('Roboto-LightItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.svg#Roboto) format('svg');font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot);src:local('Roboto LightItalic'),local('Roboto-LightItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-LightItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot);src:local('Roboto Regular'),local('Roboto-Regular'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.svg#Roboto) format('svg');font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot);src:local('Roboto Regular'),local('Roboto-Regular'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Regular.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot);src:local('Roboto RegularItalic'),local('Roboto-RegularItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.svg#Roboto) format('svg');font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot);src:local('Roboto RegularItalic'),local('Roboto-RegularItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-RegularItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot);src:local('Roboto Medium'),local('Roboto-Medium'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.svg#Roboto) format('svg');font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot);src:local('Roboto Medium'),local('Roboto-Medium'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Medium.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot);src:local('Roboto MediumItalic'),local('Roboto-MediumItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.svg#Roboto) format('svg');font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot);src:local('Roboto MediumItalic'),local('Roboto-MediumItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-MediumItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot);src:local('Roboto Bold'),local('Roboto-Bold'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.svg#Roboto) format('svg');font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot);src:local('Roboto Bold'),local('Roboto-Bold'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Bold.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot);src:local('Roboto BoldItalic'),local('Roboto-BoldItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.svg#Roboto) format('svg');font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot);src:local('Roboto BoldItalic'),local('Roboto-BoldItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BoldItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot);src:local('Roboto Black'),local('Roboto-Black'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.svg#Roboto) format('svg');font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot);src:local('Roboto Black'),local('Roboto-Black'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-Black.svg#Roboto) format('svg')}@font-face{font-family:Roboto;src:url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot);src:local('Roboto BlackItalic'),local('Roboto-BlackItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.svg#Roboto) format('svg');font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot);src:local('Roboto BlackItalic'),local('Roboto-BlackItalic'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.woff) format('woff'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto/Roboto-BlackItalic.svg#Roboto) format('svg')}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot);src:local("Roboto-Condensed Regular"),local("Roboto-Condensed-Regular"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed) format("svg");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Condensed-Regular;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Regular.eot);src:local("Roboto-Condensed Regular"),local("Roboto-Condensed-Regular"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot);src:local("Roboto-Condensed RegularItalic"),local("Roboto-Condensed-RegularItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed) format("svg");font-weight:400;font-style:italic}@font-face{font-family:Roboto-Condensed-RegularItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot);src:local("Roboto-Condensed RegularItalic"),local("Roboto-Condensed-RegularItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot);src:local("Roboto-Condensed Light"),local("Roboto-Condensed-Light"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed) format("svg");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Condensed-Light;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Light.eot);src:local("Roboto-Condensed Light"),local("Roboto-Condensed-Light"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot);src:local("Roboto-Condensed LightItalic"),local("Roboto-Condensed-LightItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed) format("svg");font-weight:300;font-style:italic}@font-face{font-family:Roboto-Condensed-LightItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-LightItalic.eot);src:local("Roboto-Condensed LightItalic"),local("Roboto-Condensed-LightItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot);src:local("Roboto-Condensed Bold"),local("Roboto-Condensed-Bold"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed) format("svg");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Condensed-Bold;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Bold.eot);src:local("Roboto-Condensed Bold"),local("Roboto-Condensed-Bold"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Condensed;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot);src:local("Roboto-Condensed BoldItalic"),local("Roboto-Condensed-BoldItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed) format("svg");font-weight:700;font-style:italic}@font-face{font-family:Roboto-Condensed-BoldItalic;src:url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot);src:local("Roboto-Condensed BoldItalic"),local("Roboto-Condensed-BoldItalic"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix) format("embedded-opentype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2) format("woff2"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff) format("woff"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf) format("truetype"),url(/roboto-fontface/fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed) format("svg")}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot);src:local('Roboto-Slab Thin'),local('Roboto-Slab-Thin'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.svg#Roboto-Slab) format('svg');font-weight:100;font-style:normal}@font-face{font-family:Roboto-Slab-Thin;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot);src:local('Roboto-Slab Thin'),local('Roboto-Slab-Thin'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Thin.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot);src:local('Roboto-Slab Light'),local('Roboto-Slab-Light'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.svg#Roboto-Slab) format('svg');font-weight:300;font-style:normal}@font-face{font-family:Roboto-Slab-Light;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot);src:local('Roboto-Slab Light'),local('Roboto-Slab-Light'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Light.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot);src:local('Roboto-Slab Regular'),local('Roboto-Slab-Regular'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.svg#Roboto-Slab) format('svg');font-weight:400;font-style:normal}@font-face{font-family:Roboto-Slab-Regular;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot);src:local('Roboto-Slab Regular'),local('Roboto-Slab-Regular'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Regular.svg#Roboto-Slab) format('svg')}@font-face{font-family:Roboto-Slab;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot);src:local('Roboto-Slab Bold'),local('Roboto-Slab-Bold'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.svg#Roboto-Slab) format('svg');font-weight:700;font-style:normal}@font-face{font-family:Roboto-Slab-Bold;src:url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot);src:local('Roboto-Slab Bold'),local('Roboto-Slab-Bold'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.eot?#iefix) format('embedded-opentype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2) format('woff2'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.woff) format('woff'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf) format('truetype'),url(/roboto-fontface/fonts/Roboto-Slab/Roboto-Slab-Bold.svg#Roboto-Slab) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:300;src:url(/typeface-chivo/files/chivo-latin-300.eot);src:local('Chivo Light '),local('Chivo-Light'),url(/typeface-chivo/files/chivo-latin-300.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-300.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-300.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-300.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:300;src:url(/typeface-chivo/files/chivo-latin-300italic.eot);src:local('Chivo Light italic'),local('Chivo-Lightitalic'),url(/typeface-chivo/files/chivo-latin-300italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-300italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-300italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-300italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:400;src:url(/typeface-chivo/files/chivo-latin-400.eot);src:local('Chivo Regular '),local('Chivo-Regular'),url(/typeface-chivo/files/chivo-latin-400.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-400.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-400.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-400.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:400;src:url(/typeface-chivo/files/chivo-latin-400italic.eot);src:local('Chivo Regular italic'),local('Chivo-Regularitalic'),url(/typeface-chivo/files/chivo-latin-400italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-400italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-400italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-400italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:700;src:url(/typeface-chivo/files/chivo-latin-700italic.eot);src:local('Chivo Bold italic'),local('Chivo-Bolditalic'),url(/typeface-chivo/files/chivo-latin-700italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-700italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-700italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-700italic.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:900;src:url(/typeface-chivo/files/chivo-latin-900.eot);src:local('Chivo #000 '),local('Chivo-Black'),url(/typeface-chivo/files/chivo-latin-900.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-900.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-900.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-900.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:normal;font-weight:700;src:url(/typeface-chivo/files/chivo-latin-700.eot);src:local('Chivo Bold '),local('Chivo-Bold'),url(/typeface-chivo/files/chivo-latin-700.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-700.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-700.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-700.svg#chivo) format('svg')}@font-face{font-family:Chivo;font-style:italic;font-weight:900;src:url(/typeface-chivo/files/chivo-latin-900italic.eot);src:local('Chivo #000 italic'),local('Chivo-Blackitalic'),url(/typeface-chivo/files/chivo-latin-900italic.eot?#iefix) format('embedded-opentype'),url(/typeface-chivo/files/chivo-latin-900italic.woff2) format('woff2'),url(/typeface-chivo/files/chivo-latin-900italic.woff) format('woff'),url(/typeface-chivo/files/chivo-latin-900italic.svg#chivo) format('svg')}/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}body{overflow-x:hidden;background:#ccc;font-family:'Open Sans',sans-serif;margin:0;padding:0;-webkit-print-color-adjust:exact;box-sizing:border-box}body page{background:#fff;position:relative;width:21cm;height:29.7cm;display:block;page-break-after:auto;overflow:hidden}body page .resume{display:inline-block;width:100%}body .index-page{padding-left:5%;width:90%;padding-top:20px}body .index-page h3{font-size:30px}body .index-page .resume{display:inline-block;text-decoration:none;margin-right:10px;margin-bottom:10px}body .index-page .resume img{height:300px;width:auto;box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);transition:all .3s cubic-bezier(.25,.8,.25,1)}body .index-page .resume img:hover{box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22)}body .index-page .resume .resume-title{text-align:center;display:block;text-decoration:none;margin-top:10px;color:#000}@media print{body,page{margin:0;box-shadow:0;width:100%;height:100%}} \ No newline at end of file diff --git a/test/node/Config.js b/test/node/Config.js deleted file mode 100755 index c5e4696..0000000 --- a/test/node/Config.js +++ /dev/null @@ -1,8 +0,0 @@ -/* global it, describe */ -const assert = require('assert'); -const Config = require('../../src/node/Config'); -describe('Config', () => { - it('should contain a valid port number', () => { - assert(Config.port > 0); - }); -}); diff --git a/test/node/files/readFile.txt b/test/node/files/readFile.txt deleted file mode 100755 index 1e6483a..0000000 --- a/test/node/files/readFile.txt +++ /dev/null @@ -1 +0,0 @@ -any content to be read diff --git a/test/node/files/writeFile.txt b/test/node/files/writeFile.txt deleted file mode 100755 index 5c568ed..0000000 --- a/test/node/files/writeFile.txt +++ /dev/null @@ -1 +0,0 @@ -alskldjaksldjaklsjdla0.8618659579531889 \ No newline at end of file diff --git a/test/test.js b/test/test.js deleted file mode 100755 index c35951e..0000000 --- a/test/test.js +++ /dev/null @@ -1,9 +0,0 @@ -/* global it, describe */ -const assert = require('assert'); -describe('Array', () => { - describe('#indexOf()', () => { - it('should return -1 when the value is not present', () => { - assert.equal(-1, [1, 2, 3].indexOf(4)); - }); - }); -});