├── data ├── instagram.com.css └── stripe.com.css ├── .gitignore ├── src └── test.css ├── templates ├── footer.html ├── index.html └── nav.html ├── urls.json ├── README.md ├── getcss.js ├── package.json ├── css ├── github.css └── test.min.css └── index.js /data/instagram.com.css: -------------------------------------------------------------------------------- 1 | undefined -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /src/test.css: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * If you want to add your own css framework it could go here. It doesn't have to./ 4 | * But it could. 5 | * 6 | * / 7 | -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /urls.json: -------------------------------------------------------------------------------- 1 | [ 2 | "http://github.com", 3 | "https://pinterest.com", 4 | "http://mapbox.com", 5 | "http://bluebottlecoffee.com", 6 | "http://instagram.com", 7 | "http://etsy.com", 8 | "http://apple.com", 9 | "http://kickstarter.com", 10 | "http://twitter.com", 11 | "http://tumblr.com", 12 | "http://soundcloud.com", 13 | "http://stripe.com", 14 | "http://bbc.com" 15 | ] 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSSSTATS AVERAGES 2 | 3 | ## About 4 | 5 | Using cssstats module to generate averages for some basic css stats across popular websites on the internetz. 6 | 7 | For consideration: 8 | Total & Unique 9 | 10 | 1. font-size 11 | 2. colors 12 | 3. background color 13 | 4. display 14 | 5. width 15 | 6. float 16 | 7. text-align 17 | 18 | ## Setup 19 | Needs work... 20 | ``` 21 | npm install . && npm start 22 | ``` 23 | 24 | getcss.js sets up all the fixtures 25 | index.js does some stuff to generate averages 26 | 27 | ## License 28 | 29 | The MIT License (MIT) 30 | 31 | 32 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CSSSTATS - Averages 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 |
18 |
19 | 20 |
21 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /getcss.js: -------------------------------------------------------------------------------- 1 | // Need access to the filesystem 2 | var fs = require('fs') 3 | // Lodash for templating. This could be swapped out by something else 4 | var _ = require('lodash') 5 | // Used to turn the filesize into a human readable format 6 | var filesize = require('filesize') 7 | var cssstats = require('cssstats') 8 | var getcss = require('get-css') 9 | var removeProtocol = require('remove-protocol') 10 | var urls = require('./urls.json') 11 | 12 | var options = { 13 | timeout: 5000 14 | } 15 | 16 | urls.forEach(function (url) { 17 | getcss(url, options).then(function (response) { 18 | var domain = removeProtocol(url) 19 | fs.writeFileSync('./data/' + domain + '.css', response.css) 20 | }) 21 | .catch(function (error) { 22 | console.log("Can't get css because" + error) 23 | }) 24 | }) 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cssstats-averages", 3 | "version": "1.0.4", 4 | "description": "Averages for some css stats on top websites", 5 | "main": "index.html", 6 | "repository": { 7 | "type": "git", 8 | "url": "git://github.com/mrmrs/cssstats-starter-kit.git" 9 | }, 10 | "keywords": [ 11 | "css", 12 | "performance", 13 | "statistics", 14 | "build", 15 | "design" 16 | ], 17 | "author": "mrmrs", 18 | "license": "MIT", 19 | "devDependencies": { 20 | "cssstats": "^3.0.0-beta.2", 21 | "filesize": "^3.3.0", 22 | "get-css": "^1.2.1", 23 | "lodash": "^4.16.6", 24 | "postcss": "^5.2.5", 25 | "tachyons-cli": "^1.0.8", 26 | "watch": "^1.0.1" 27 | }, 28 | "contributors": [ 29 | { 30 | "name": "mrmrs", 31 | "email": "hi@mrmrs.cc" 32 | } 33 | ], 34 | "scripts": { 35 | "start": "node index.js", 36 | "build:watch": "watch 'npm start' ." 37 | }, 38 | "dependencies": { 39 | "remove-protocol": "^1.0.1" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /templates/nav.html: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /css/github.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CSSSTATS - Starter Kit 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 |
18 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // Need access to the filesystem 2 | var fs = require('fs') 3 | // Lodash for templating. This could be swapped out by something else 4 | var _ = require('lodash') 5 | // Used to turn the filesize into a human readable format 6 | var filesize = require('filesize') 7 | var cssstats = require('cssstats') 8 | var getcss = require('get-css') 9 | 10 | 11 | var allFontSizes = [] 12 | 13 | var options = { 14 | timeout: 5000 15 | }; 16 | 17 | var github = cssstats(fs.readFileSync('./data/github.css', 'utf8')) 18 | var pinterest = cssstats(fs.readFileSync('./data/pinterest.css', 'utf8')) 19 | var mapbox = cssstats(fs.readFileSync('./data/mapbox.css', 'utf8')) 20 | var bluebottlecoffee = cssstats(fs.readFileSync('./data/bluebottlecoffee.css', 'utf8')) 21 | var instagram = cssstats(fs.readFileSync('./data/instagram.css', 'utf8')) 22 | var etsy = cssstats(fs.readFileSync('./data/etsy.css', 'utf8')) 23 | var apple = cssstats(fs.readFileSync('./data/apple.css', 'utf8')) 24 | var kickstarter = cssstats(fs.readFileSync('./data/kickstarter.css', 'utf8')) 25 | var twitter = cssstats(fs.readFileSync('./data/twitter.css', 'utf8')) 26 | var tumblr = cssstats(fs.readFileSync('./data/tumblr.css', 'utf8')) 27 | var soundcloud = cssstats(fs.readFileSync('./data/soundcloud.css', 'utf8')) 28 | var stripe = cssstats(fs.readFileSync('./data/stripe.css', 'utf8')) 29 | var bbc = cssstats(fs.readFileSync('./data/bbc.css', 'utf8')) 30 | 31 | var githubTypeScale = _.uniq(github.declarations.getAllFontSizes()).length 32 | allFontSizes.push(githubTypeScale) 33 | var twitterTypeScale = _.uniq(twitter.declarations.getAllFontSizes()).length 34 | allFontSizes.push(twitterTypeScale) 35 | var stripeTypeScale = _.uniq(stripe.declarations.getAllFontSizes()).length 36 | allFontSizes.push(stripeTypeScale) 37 | 38 | var sum = allFontSizes.reduce(function(a, b) { return a + b; }); 39 | var avg = sum / allFontSizes.length; 40 | 41 | console.log("Twitter has " + twitterTypeScale) 42 | console.log("GitHub has " + githubTypeScale) 43 | console.log("Stripe has " + stripeTypeScale) 44 | console.log("This averages out to be " + avg + " font-sizes per website") 45 | 46 | // These are templates for nav partials you can add site wide nav to. 47 | // Would be easy to extend this to document things in a modular fashion. 48 | var siteFooter = fs.readFileSync('./templates/footer.html', 'utf8') 49 | var siteNav = fs.readFileSync('./templates/nav.html', 'utf8') 50 | 51 | // Where the base lodash template lives 52 | var template = fs.readFileSync('./templates/index.html', 'utf8') 53 | var tpl = _.template(template) 54 | var html = tpl({ 55 | }) 56 | 57 | // File to write too, this is configurable 58 | fs.writeFileSync('./index.html', html) 59 | -------------------------------------------------------------------------------- /css/test.min.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v2.1.2 | MIT License | git.io/normalize */ 2 | article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:0.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,body{height:100%}nav,main,section,article,aside,header,footer,div,details,summary,form,fieldset,textarea,input[type="text"],input[type="tel"],input[type="url"],input[type="email"],input[type="search"],input[type="number"],input[type="password"],nav:before,main:before,section:before,article:before,aside:before,header:before,footer:before,div:before,details:before,summary:before,form:before,fieldset:before,textarea:before,input[type="text"]:before,input[type="tel"]:before,input[type="url"]:before,input[type="email"]:before,input[type="search"]:before,input[type="number"]:before,input[type="password"]:before,nav:after,main:after,section:after,article:after,aside:after,header:after,footer:after,div:after,details:after,summary:after,form:after,fieldset:after,textarea:after,input[type="text"]:after,input[type="tel"]:after,input[type="url"]:after,input[type="email"]:after,input[type="search"]:after,input[type="number"]:after,input[type="password"]:after,.border-box,.border-box:before,.border-box:after{box-sizing:border-box}.bg-cv{background-size:cover}.bg-cn{background-size:contain}@media screen and (min-width:30em){.bg-cv-ns{background-size:cover}.bg-cn-ns{background-size:contain}}@media screen and (min-width:30em) and (max-width:60em){.bg-cv-m{background-size:cover}.bg-cn-m{background-size:contain}}@media screen and (min-width:60em){.bg-cv-l{background-size:cover}.bg-cn-l{background-size:contain}}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.bn{border-style:solid;border-width:0}.bda{border-style:dotted;border-width:1px}.bdt{border-top-style:dotted;border-top-width:1px}.bdr{border-right-style:dotted;border-right-width:1px}.bdb{border-bottom-style:dotted;border-bottom-width:1px}.bdl{border-left-style:dotted;border-left-width:1px}.bhn{border-right-width:0;border-left-width:0}.bvn{border-top-width:0;border-bottom-width:0}@media screen and (min-width:30em){.ba-ns{border-style:solid;border-width:1px}.bt-ns{border-top-style:solid;border-top-width:1px}.br-ns{border-right-style:solid;border-right-width:1px}.bb-ns{border-bottom-style:solid;border-bottom-width:1px}.bl-ns{border-left-style:solid;border-left-width:1px}.bda-ns{border-style:dotted;border-width:1px}.bdt-ns{border-top-style:dotted;border-top-width:1px}.bdr-ns{border-right-style:dotted;border-right-width:1px}.bdb-ns{border-bottom-style:dotted;border-bottom-width:1px}.bdl-ns{border-left-style:dotted;border-left-width:1px}.bn-ns{border-style:solid;border-width:0}.bhn-ns{border-right-width:0;border-left-width:0}}@media screen and (min-width:30em) and (max-width:60em){.ba-m{border-style:solid;border-width:1px}.bt-m{border-top-style:solid;border-top-width:1px}.br-m{border-right-style:solid;border-right-width:1px}.bb-m{border-bottom-style:solid;border-bottom-width:1px}.bl-m{border-left-style:solid;border-left-width:1px}.bda-m{border-style:dotted;border-width:1px}.bdt-m{border-top-style:dotted;border-top-width:1px}.bdr-m{border-right-style:dotted;border-right-width:1px}.bdb-m{border-bottom-style:dotted;border-bottom-width:1px}.bdl-m{border-left-style:dotted;border-left-width:1px}.bn-m{border-style:solid;border-width:0}}@media screen and (min-width:60em){.ba-l{border-style:solid;border-width:1px}.bt-l{border-top-style:solid;border-top-width:1px}.br-l{border-right-style:solid;border-right-width:1px}.bb-l{border-bottom-style:solid;border-bottom-width:1px}.bl-l{border-left-style:solid;border-left-width:1px}.bda-l{border-style:dotted;border-width:1px}.bdt-l{border-top-style:dotted;border-top-width:1px}.bdr-l{border-right-style:dotted;border-right-width:1px}.bdb-l{border-bottom-style:dotted;border-bottom-width:1px}.bdl-l{border-left-style:dotted;border-left-width:1px}.bn-l{border-style:solid;border-width:0}}.b--black{border-color:#000}.b--near-black{border-color:#111}.b--dark-gray{border-color:#333}.b--mid-gray{border-color:#555}.b--gray{border-color:#777}.b--silver{border-color:#999}.b--light-silver{border-color:#aaa}.b--light-gray{border-color:#eee}.b--near-white{border-color:#f4f4f4}.b--white{border-color:#fff}.b--white-10{border-color:hsla(0,0,100%,.1)}.b--white-20{border-color:hsla(0,0,100%,.2)}.b--white-25{border-color:hsla(0,0,100%,.25)}.b--white-30{border-color:hsla(0,0,100%,.3)}.b--white-40{border-color:hsla(0,0,100%,.4)}.b--white-50{border-color:hsla(0,0,100%,.5)}.b--white-60{border-color:hsla(0,0,100%,.6)}.b--white-70{border-color:hsla(0,0,100%,.7)}.b--white-75{border-color:hsla(0,0,100%,.75)}.b--white-80{border-color:hsla(0,0,100%,.8)}.b--white-90{border-color:hsla(0,0,100%,.9)}.b--black-0125{border-color:hsla(0,0,0,.0125)}.b--black-025{border-color:hsla(0,0,0,.025)}.b--black-05{border-color:hsla(0,0,0,.05)}.b--black-10{border-color:hsla(0,0,0,.1)}.b--black-20{border-color:hsla(0,0,0,.2)}.b--black-25{border-color:hsla(0,0,0,.25)}.b--black-30{border-color:hsla(0,0,0,.3)}.b--black-40{border-color:hsla(0,0,0,.4)}.b--black-50{border-color:hsla(0,0,0,.5)}.b--black-60{border-color:hsla(0,0,0,.6)}.b--black-70{border-color:hsla(0,0,0,.7)}.b--black-75{border-color:hsla(0,0,0,.75)}.b--black-80{border-color:hsla(0,0,0,.8)}.b--black-90{border-color:hsla(0,0,0,.9)}.b--blue{border-color:#0074D9}.b--light-blue{border-color:#64a8ff}.b--lightest-blue{border-color:#a2dfff}.b--dark-blue{border-color:#0045a1}.b--darkest-blue{border-color:#002f86}.b--yellow{border-color:#fff93c}.b--light-yellow{border-color:#fffa60}.b--lightest-yellow{border-color:#fffca6}.b--dark-yellow{border-color:#e2c100}.b--darkest-yellow{border-color:#c4a600}.b--orange{border-color:#FF851B}.b--light-orange{border-color:#ffa942}.b--lightest-orange{border-color:#ffc55d}.b--dark-orange{border-color:#d05e00}.b--darkest-orange{border-color:#b14400}.b--red{border-color:#d82c2c}.b--light-red{border-color:#f94f44}.b--lightest-red{border-color:#ff6c5c}.b--dark-red{border-color:#bd001a}.b--darkest-red{border-color:#9d0003}.b--teal{border-color:#27bfa8}.b--light-teal{border-color:#4eddc5}.b--lightest-teal{border-color:#6ffae0}.b--dark-teal{border-color:#25a28f}.b--darkest-teal{border-color:#008876}.b--green{border-color:#3D9970}.b--light-green{border-color:#5ab48a}.b--lightest-green{border-color:#75d0a4}.b--dark-green{border-color:#1e7f58}.b--darkest-green{border-color:#006540}.b--pink{border-color:#F012BE}.b--light-pink{border-color:#ff57e8}.b--lightest-pink{border-color:#ff81ff}.b--dark-pink{border-color:#d100a3}.b--darkest-pink{border-color:#b20088}.b--purple{border-color:#980bc6}.b--light-purple{border-color:#b536e2}.b--lightest-purple{border-color:#d355ff}.b--dark-purple{border-color:#7b00a9}.b--darkest-purple{border-color:#5f008e}.brn{border-radius:0}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br5{border-radius:2rem}.br-100{border-radius:100%}@media screen and (min-width:30em){.brn-ns{border-radius:0}.br1-ns{border-radius:.125rem}.br2-ns{border-radius:.25rem}.br3-ns{border-radius:.5rem}.br4-ns{border-radius:1rem}.br5-ns{border-radius:2rem}.br-100-ns{border-radius:100%}}@media screen and (min-width:30em) and (max-width:60em){.brn-m{border-radius:0}.br1-m{border-radius:.125rem}.br2-m{border-radius:.25rem}.br3-m{border-radius:.5rem}.br4-m{border-radius:1rem}.br5-m{border-radius:2rem}.br-100-m{border-radius:100%}}@media screen and (min-width:60em){.brn-l{border-radius:0}.br1-l{border-radius:.125rem}.br2-l{border-radius:.25rem}.br3-l{border-radius:.5rem}.br4-l{border-radius:1rem}.br5-l{border-radius:2rem}.br-100-l{border-radius:100%}}.bs-none{border-style:none}.bs-dotted{border-style:dotted}.bs-solid{border-style:solid}@media screen and (min-width:30em){.bs-none-ns{border-style:none}.bs-dotted-ns{border-style:dotted}.bs-solid-ns{border-style:solid}}@media screen and (min-width:30em) and (max-width:60em){.bs-none-m{border-style:none}.bs-dotted-m{border-style:dotted}.bs-solid-m{border-style:solid}}@media screen and (min-width:60em){.bs-none-l{border-style:none}.bs-dotted-l{border-style:dotted}.bs-solid-l{border-style:solid}}.bw0{border-width:0}.bw1{border-width:.125rem}.bw2{border-width:.25rem}.bw3{border-width:.5rem}.bw4{border-width:1rem}.bw5{border-width:2rem}@media screen and (min-width:30em){.bw0-ns{border-width:0}.bw1-ns{border-width:.125rem}.bw2-ns{border-width:.25rem}.bw3-ns{border-width:.5rem}.bw4-ns{border-width:1rem}.bw5-ns{border-width:2rem}}@media screen and (min-width:30em) and (max-width:60em){.bw0-m{border-width:0}.bw1-m{border-width:.125rem}.bw2-m{border-width:.25rem}.bw3-m{border-width:.5rem}.bw4-m{border-width:1rem}.bw5-m{border-width:2rem}}@media screen and (min-width:60em){.bw0-l{border-width:0}.bw1-l{border-width:.125rem}.bw2-l{border-width:.25rem}.bw3-l{border-width:.5rem}.bw4-l{border-width:1rem}.bw5-l{border-width:2rem}}.pre{overflow-x:auto;overflow-y:hidden;overflow:scroll}.code{white-space:pre;font-size:14px}.top-0{top:0}.left-0{left:0}.right-0{right:0}.bottom-0{bottom:0}.top-1{top:1rem}.left-1{left:1rem}.right-1{right:1rem}.bottom-1{bottom:1rem}.top-2{top:2rem}.left-2{left:2rem}.right-2{right:2rem}.bottom-2{bottom:2rem}.top-4{top:4rem}.left-4{left:4rem}.right-4{right:4rem}.bottom-4{bottom:4rem}@media screen and (min-width:30em){.top-0-ns{top:0}.left-0-ns{left:0}.right-0-ns{right:0}.bottom-0-ns{bottom:0}.top-1-ns{top:1rem}.left-1-ns{left:1rem}.right-1-ns{right:1rem}.bottom-1-ns{bottom:1rem}.top-2-ns{top:2rem}.left-2-ns{left:2rem}.right-2-ns{right:2rem}.bottom-2-ns{bottom:2rem}.top-4-ns{top:4rem}.left-4-ns{left:4rem}.right-4-ns{right:4rem}.bottom-4-ns{bottom:4rem}}@media screen and (min-width:30em) and (max-width:60em){.top-0-m{top:0}.left-0-m{left:0}.right-0-m{right:0}.bottom-0-m{bottom:0}.top-1-m{top:1rem}.left-1-m{left:1rem}.right-1-m{right:1rem}.bottom-1-m{bottom:1rem}.top-2-m{top:2rem}.left-2-m{left:2rem}.right-2-m{right:2rem}.bottom-2-m{bottom:2rem}.top-4-m{top:4rem}.left-4-m{left:4rem}.right-4-m{right:4rem}.bottom-4-m{bottom:4rem}}@media screen and (min-width:60em){.top-0-l{top:0}.left-0-l{left:0}.right-0-l{right:0}.bottom-0-l{bottom:0}.top-1-l{top:1rem}.left-1-l{left:1rem}.right-1-l{right:1rem}.bottom-1-l{bottom:1rem}.top-2-l{top:2rem}.left-2-l{left:2rem}.right-2-l{right:2rem}.bottom-2-l{bottom:2rem}.top-4-l{top:4rem}.left-4-l{left:4rem}.right-4-l{right:4rem}.bottom-4-l{bottom:4rem}}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dit{display:inline-table}.dt{display:table;table-layout:fixed;width:100%}.dtr{display:table-row}.dtc{display:table-cell}.dtcol{display:table-column}.dtcolg{display:table-column-group}@media screen and (min-width:30em){.dn-ns{display:none}.di-ns{display:inline}.db-ns{display:block}.dib-ns{display:inline-block}.dit-ns{display:inline-table}.dt-ns{display:table;table-layout:fixed;width:100%}.dtr-ns{display:table-row}.dtc-ns{display:table-cell}.dtcol-ns{display:table-column}.dtcolg-ns{display:table-column-group}}@media screen and (min-width:30em) and (max-width:60em){.dn-m{display:none}.di-m{display:inline}.db-m{display:block}.dib-m{display:inline-block}.dit-m{display:inline-table}.dt-m{display:table;table-layout:fixed;width:100%}.dtr-m{display:table-row}.dtc-m{display:table-cell}.dtcol-m{display:table-column}.dtcolg-m{display:table-column-group}}@media screen and (min-width:60em){.dn-l{display:none}.di-l{display:inline}.db-l{display:block}.dib-l{display:inline-block}.dit-l{display:inline-table}.dt-l{display:table;table-layout:fixed;width:100%}.dtr-l{display:table-row}.dtc-l{display:table-cell}.dtcol-l{display:table-column}.dtcolg-l{display:table-column-group}}.fl{float:left;display:inline}.fr{float:right;display:inline}.fn{float:none}@media screen and (min-width:30em){.fl-ns{float:left;display:inline}.fr-ns{float:right;display:inline}.fn-ns{float:none!important}}@media screen and (min-width:30em) and (max-width:60em){.fl-m{float:left;display:inline}.fr-m{float:right;display:inline}.fn-m{float:none}}@media screen and (min-width:60em){.fl-l{float:left;display:inline}.fr-l{float:right;display:inline}.fn-l{float:none}}.sans-serif{font-family:'avenir next',avenir,helvetica,'helvetica neue',arial,sans-serif}.serif{font-family:times,TimesNewRoman,"Times New Roman",georgia,serif}code,.code{font-family:Consolas,monaco,monospace}.helvetica{font-family:helvetica,'helvetica neue',arial,sans-serif}.bodoni{font-family:"Bodoni MT",Didot,"Didot LT STD","Hoefler Text",Garamond,Times,"Times New Roman",serif}.calisto{font-family:"Calisto MT","Bookman Old Style",Bookman,"Goudy Old Style",Garamond,"Hoefler Text","Bitstream Charter",Georgia,serif}.garamond{font-family:Garamond,Baskerville,"Baskerville Old Face","Hoefler Text","Times New Roman",serif}.times{font-family:Times,TimesNewRoman,"Times New Roman",Baskerville,Georgia,serif}.fsn{font-style:normal}.i{font-style:italic}@media screen and (min-width:30em){.fsn-ns{font-style:normal}.i-ns{font-style:italic}}@media screen and (min-width:30em) and (max-width:60em){.fsn-m{font-style:normal}.i-m{font-style:italic}}@media screen and (min-width:60em){.fsn-l{font-style:normal}.i-l{font-style:italic}}.normal{font-weight:normal}.b{font-weight:bold}.thin{font-weight:100}.book{font-weight:400}.semibold{font-weight:500}.bold{font-weight:600}.heavy{font-weight:700}.ultrabold{font-weight:900}@media screen and (min-width:30em){.normal-ns{font-weight:normal}.b-ns{font-weight:bold}.thin-ns{font-weight:100}.book-ns{font-weight:400}.semibold-ns{font-weight:500}.bold-ns{font-weight:600}.heavy-ns{font-weight:700}.ultrabold-ns{font-weight:900}}@media screen and (min-width:30em) and (max-width:60em){.normal-m{font-weight:normal}.b-m{font-weight:bold}.thin-m{font-weight:100}.book-m{font-weight:400}.semibold-m{font-weight:500}.bold-m{font-weight:600}.heavy-m{font-weight:700}.ultrabold-m{font-weight:900}}@media screen and (min-width:60em){.normal-l{font-weight:normal}.b-l{font-weight:bold}.thin-l{font-weight:100}.book-l{font-weight:400}.semibold-l{font-weight:500}.bold-l{font-weight:600}.heavy-l{font-weight:700}.ultrabold-l{font-weight:900}}.input-text{outline:0;appearance:none;-webkit-appearance:none;-moz-appearance:none}.input-text:focus,.input-text:hover{outline:0}.input-invisible{outline:0;border:0}.h1{height:1rem}.h2{height:2rem}.h3{height:4rem}.h4{height:8rem}.h5{height:16rem}.h6{height:32rem}.h-10{height:10%}.h-20{height:20%}.h-25{height:25%}.h-30{height:30%}.h-40{height:40%}.h-50{height:50%}.h-60{height:60%}.h-70{height:70%}.h-75{height:75%}.h-80{height:80%}.h-90{height:90%}.h-100{height:100%}.h-at{height:auto}.h-i{height:inherit}@media screen and (min-width:30em){.h1-ns{height:1rem}.h2-ns{height:2rem}.h3-ns{height:4rem}.h4-ns{height:8rem}.h5-ns{height:16rem}.h6-ns{height:32rem}.h-10-ns{height:10%}.h-20-ns{height:20%}.h-25-ns{height:25%}.h-30-ns{height:30%}.h-40-ns{height:40%}.h-50-ns{height:50%}.h-60-ns{height:60%}.h-70-ns{height:70%}.h-75-ns{height:75%}.h-80-ns{height:80%}.h-90-ns{height:90%}.h-100-ns{height:100%}.h-at-ns{height:auto}.h-i-ns{height:inherit}}@media screen and (min-width:30em) and (max-width:60em){.h1-m{height:1rem}.h2-m{height:2rem}.h3-m{height:4rem}.h4-m{height:8rem}.h5-m{height:16rem}.h6-m{height:32rem}.h-10-m{height:10%}.h-20-m{height:20%}.h-25-m{height:25%}.h-30-m{height:30%}.h-40-m{height:40%}.h-50-m{height:50%}.h-60-m{height:60%}.h-70-m{height:70%}.h-75-m{height:75%}.h-80-m{height:80%}.h-90-m{height:90%}.h-100-m{height:100%}.h-at-m{height:auto}.h-i-m{height:inherit}}@media screen and (min-width:60em){.h1-l{height:1rem}.h2-l{height:2rem}.h3-l{height:4rem}.h4-l{height:8rem}.h5-l{height:16rem}.h6-l{height:32rem}.h-10-l{height:10%}.h-20-l{height:20%}.h-25-l{height:25%}.h-30-l{height:30%}.h-40-l{height:40%}.h-50-l{height:50%}.h-60-l{height:60%}.h-70-l{height:70%}.h-75-l{height:75%}.h-80-l{height:80%}.h-90-l{height:90%}.h-100-l{height:100%}.h-at-l{height:auto}.h-i-l{height:inherit}}img{max-width:100%}.tracked{letter-spacing:.16em}.tracked-tight{letter-spacing:-.05em}.tracked-mega{letter-spacing:.3em}@media screen and (min-width:30em){.tracked-ns{letter-spacing:.16em}.tracked-tight-ns{letter-spacing:-.1em}.tracked-mega-ns{letter-spacing:.3em}}@media screen and (min-width:30em) and (max-width:60em){.tracked-m{letter-spacing:.16em}.tracked-tight-m{letter-spacing:-.1em}.tracked-mega-m{letter-spacing:.3em}}@media screen and (min-width:60em){.tracked-l{letter-spacing:.16em}.tracked-tight-l{letter-spacing:-.1em}.tracked-mega-l{letter-spacing:.3em}}.lh-solid{line-height:1}.lh-title{line-height:1.3}.lh-copy{line-height:1.6}@media screen and (min-width:30em){.lh-solid-ns{line-height:1}.lh-title-ns{line-height:1.3}.lh-copy-ns{line-height:1.6}}@media screen and (min-width:30em) and (max-width:60em){.lh-solid-m{line-height:1}.lh-title-m{line-height:1.3}.lh-copy-m{line-height:1.6}}@media screen and (min-width:60em){.lh-solid-l{line-height:1}.lh-title-l{line-height:1.3}.lh-copy-l{line-height:1.6}}.link{text-decoration:none;transition:color .15s ease-in}.link:link,.link:visited{transition:color .15s ease-in}.link:hover{transition:color .15s ease-in}.link:active{transition:color .15s ease-in}.link:focus{transition:color .15s ease-in}.underline{text-decoration:underline}.underline-hover:hover{text-decoration:underline}.list{list-style-type:none}@media screen and (min-width:30em){.list-ns{list-style-type:none}}@media screen and (min-width:30em) and (max-width:60em){.list-m{list-style:none}}@media screen and (min-width:60em){.list-l{list-style-type:none}}.mw-100{max-width:100%}.mw-75{max-width:75%}.mw-50{max-width:50%}.mw-25{max-width:25%}.mw1{max-width:1rem}.mw2{max-width:2rem}.mw3{max-width:4rem}.mw4{max-width:8rem}.mw5{max-width:16rem}.mw6{max-width:32rem}.mw7{max-width:48rem}.mw8{max-width:64rem}.mw9{max-width:96rem}.mw10{max-width:128rem}.mw-none{max-width:none}@media screen and (min-width:30em){.mw-100-ns{max-width:100%}.mw-75-ns{max-width:75%}.mw-50-ns{max-width:50%}.mw-25-ns{max-width:25%}.mw1-ns{max-width:1rem}.mw2-ns{max-width:2rem}.mw3-ns{max-width:4rem}.mw4-ns{max-width:8rem}.mw5-ns{max-width:16rem}.mw6-ns{max-width:32rem}.mw7-ns{max-width:48rem}.mw8-ns{max-width:64rem}.mw9-ns{max-width:96rem}.mw10-ns{max-width:128rem}.mw-none-ns{max-width:none}}@media screen and (min-width:30em) and (max-width:60em){.mw-100-m{max-width:100%}.mw-75-m{max-width:75%}.mw-50-m{max-width:50%}.mw-25-m{max-width:25%}.mw1-m{max-width:1rem}.mw2-m{max-width:2rem}.mw3-m{max-width:4rem}.mw4-m{max-width:8rem}.mw5-m{max-width:16rem}.mw6-m{max-width:32rem}.mw7-m{max-width:48rem}.mw8-m{max-width:64rem}.mw9-m{max-width:96rem}.mw10-m{max-width:128rem}.mw-none-m{max-width:none}}@media screen and (min-width:60em){.mw-100-l{max-width:100%}.mw-75-l{max-width:75%}.mw-50-l{max-width:50%}.mw-25-l{max-width:25%}.mw1-l{max-width:1rem}.mw2-l{max-width:2rem}.mw3-l{max-width:4rem}.mw4-l{max-width:8rem}.mw5-l{max-width:16rem}.mw6-l{max-width:32rem}.mw7-l{max-width:48rem}.mw8-l{max-width:64rem}.mw9-l{max-width:96rem}.mw10-l{max-width:128rem}.mw-none-l{max-width:none}}.w1{width:1rem}.w2{width:2rem}.w3{width:4rem}.w4{width:8rem}.w5{width:16rem}.w-10{width:10%}.w-20{width:20%}.w-25{width:25%}.w-33{width:33%}.w-34{width:34%}.w-40{width:40%}.w-50{width:50%}.w-60{width:60%}.w-75{width:75%}.w-80{width:80%}.w-100{width:100%}.w-auto{width:auto}@media screen and (min-width:30em){.w1-ns{width:1rem}.w2-ns{width:2rem}.w3-ns{width:4rem}.w4-ns{width:8rem}.w5-ns{width:16rem}.w-10-ns{width:10%}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-33-ns{width:33%}.w-34-ns{width:34%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-60-ns{width:60%}.w-75-ns{width:75%}.w-80-ns{width:80%}.w-100-ns{width:100%}.w-auto-ns{width:auto}}@media screen and (min-width:30em) and (max-width:60em){.w1-m{width:1rem}.w2-m{width:2rem}.w3-m{width:4rem}.w4-m{width:8rem}.w5-m{width:16rem}.w-10-m{width:10%}.w-20-m{width:20%}.w-25-m{width:25%}.w-33-m{width:33%}.w-34-m{width:34%}.w-40-m{width:40%}.w-50-m{width:50%}.w-60-m{width:60%}.w-75-m{width:75%}.w-80-m{width:80%}.w-100-m{width:100%}.w-auto-m{width:auto}}@media screen and (min-width:60em){.w1-l{width:1rem}.w2-l{width:2rem}.w3-l{width:4rem}.w4-l{width:8rem}.w5-l{width:16rem}.w-10-l{width:10%}.w-20-l{width:20%}.w-25-l{width:25%}.w-33-l{width:33%}.w-34-l{width:34%}.w-40-l{width:40%}.w-50-l{width:50%}.w-60-l{width:60%}.w-75-l{width:75%}.w-80-l{width:80%}.w-100-l{width:100%}.w-auto-l{width:auto}}.of-vis{overflow:visible}.of-hid,.oh{overflow:hidden}.of-scr{overflow:scroll}.of-aut{overflow:auto}.ofx-vis{overflow-x:visible}.ofx-hid{overflow-x:hidden}.ofx-scr{overflow-x:scroll}.ofx-aut{overflow-x:auto}.ofy-vis{overflow-y:visible}.ofy-hid{overflow-y:hidden}.ofy-scr{overflow-y:scroll}.ofy-aut{overflow-y:auto}@media screen and (min-width:30em){.of-vis-ns{overflow:visible}.of-hid-ns,.oh{overflow:hidden}.of-scr-ns{overflow:scroll}.of-aut-ns{overflow:auto}.ofx-vis-ns{overflow-x:visible}.ofx-hid-ns{overflow-x:hidden}.ofx-scr-ns{overflow-x:scroll}.ofx-aut-ns{overflow-x:auto}.ofy-vis-ns{overflow-y:visible}.ofy-hid-ns{overflow-y:hidden}.ofy-scr-ns{overflow-y:scroll}.ofy-aut-ns{overflow-y:auto}}@media screen and (min-width:30em) and (max-width:60em){.of-vis-m{overflow:visible}.of-hid-m{overflow:hidden}.of-scr-m{overflow:scroll}.of-aut-m{overflow:auto}.ofx-vis-m{overflow-x:visible}.ofx-hid-m{overflow-x:hidden}.ofx-scr-m{overflow-x:scroll}.ofx-aut-m{overflow-x:auto}.ofy-vis-m{overflow-y:visible}.ofy-hid-m{overflow-y:hidden}.ofy-scr-m{overflow-y:scroll}.ofy-aut-m{overflow-y:auto}}@media screen and (min-width:60em){.of-vis-l{overflow:visible}.of-hid-l{overflow:hidden}.of-scr-l{overflow:scroll}.of-aut-l{overflow:auto}.ofx-vis-l{overflow-x:visible}.ofx-hid-l{overflow-x:hidden}.ofx-scr-l{overflow-x:scroll}.ofx-aut-l{overflow-x:auto}.ofy-vis-l{overflow-y:visible}.ofy-hid-l{overflow-y:hidden}.ofy-scr-l{overflow-y:scroll}.ofy-aut-l{overflow-y:auto}}.pos-stat{position:static}.pos-rel{position:relative}.pos-abs{position:absolute}@media screen and (min-width:30em){.pos-stat-ns{position:static}.pos-rel-ns{position:relative}.pos-abs-ns{position:absolute}}@media screen and (min-width:30em) and (max-width:60em){.pos-stat-m{position:static}.pos-rel-m{position:relative}.pos-abs-m{position:absolute}}@media screen and (min-width:60em){.pos-stat-l{position:static}.pos-rel-l{position:relative}.pos-abs-l{position:absolute}}.black-100{color:rgba(0,0,0,1)}.black-90{color:rgba(0,0,0,.9)}.black-80{color:rgba(0,0,0,.8)}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black-40{color:rgba(0,0,0,.4)}.black-30{color:rgba(0,0,0,.3)}.black-20{color:rgba(0,0,0,.2)}.black-10{color:rgba(0,0,0,.1)}.black-05{color:rgba(0,0,0,.05)}.bg-black-100{background-color:rgba(0,0,0,1)}.bg-black-90{background-color:rgba(0,0,0,.9)}.bg-black-80{background-color:rgba(0,0,0,.8)}.bg-black-70{background-color:rgba(0,0,0,.7)}.bg-black-60{background-color:rgba(0,0,0,.6)}.bg-black-50{background-color:rgba(0,0,0,.5)}.bg-black-40{background-color:rgba(0,0,0,.4)}.bg-black-30{background-color:rgba(0,0,0,.3)}.bg-black-20{background-color:rgba(0,0,0,.2)}.bg-black-10{background-color:rgba(0,0,0,.1)}.bg-black-05{background-color:rgba(0,0,0,.05)}.bg-black-025{background-color:rgba(0,0,0,.025)}.bg-black-0125{background-color:rgba(0,0,0,.0125)}.bg-black-100-focus:hover{background-color:rgba(0,0,0,1)}.bg-black-100-focus:focus{background-color:rgba(0,0,0,1)}.bg-black-90-focus:hover{background-color:rgba(0,0,0,.9)}.bg-black-90-focus:focus{background-color:rgba(0,0,0,.9)}.bg-black-80-focus:hover{background-color:rgba(0,0,0,.8)}.bg-black-80-focus:focus{background-color:rgba(0,0,0,.8)}.bg-black-70-focus:hover{background-color:rgba(0,0,0,.7)}.bg-black-70-focus:focus{background-color:rgba(0,0,0,.7)}.bg-black-60-focus:hover{background-color:rgba(0,0,0,.6)}.bg-black-60-focus:focus{background-color:rgba(0,0,0,.6)}.bg-black-50-focus:hover{background-color:rgba(0,0,0,.5)}.bg-black-50-focus:focus{background-color:rgba(0,0,0,.5)}.bg-black-40-focus:hover{background-color:rgba(0,0,0,.4)}.bg-black-40-focus:focus{background-color:rgba(0,0,0,.4)}.bg-black-30-focus:hover{background-color:rgba(0,0,0,.3)}.bg-black-30-focus:focus{background-color:rgba(0,0,0,.3)}.bg-black-20-focus:hover{background-color:rgba(0,0,0,.2)}.bg-black-20-focus:focus{background-color:rgba(0,0,0,.2)}.bg-black-10-focus:hover{background-color:rgba(0,0,0,.1)}.bg-black-10-focus:focus{background-color:rgba(0,0,0,.1)}.bg-black-05-focus:hover{background-color:rgba(0,0,0,.05)}.bg-black-05-focus:focus{background-color:rgba(0,0,0,.05)}.bg-black-025-focus:hover{background-color:rgba(0,0,0,.025)}.bg-black-025-focus:focus{background-color:rgba(0,0,0,.025)}.white-100{color:rgba(255,255,255,1)}.white-100::placeholder{color:rgba(255,255,255,1)}.white-90{color:rgba(255,255,255,.9)}.white-90::placeholder{color:rgba(255,255,255,.9)}.white-80{color:rgba(255,255,255,.8)}.white-80::placeholder{color:rgba(255,255,255,.8)}.white-70{color:rgba(255,255,255,.7)}.white-70::placeholder{color:rgba(255,255,255,.7)}.white-60{color:rgba(255,255,255,.6)}.white-60::placeholder{color:rgba(255,255,255,.6)}.white-50{color:rgba(255,255,255,.5)}.white-50::placeholder{color:rgba(255,255,255,.5)}.white-40{color:rgba(255,255,255,.4)}.white-40::placeholder{color:rgba(255,255,255,.4)}.white-30{color:rgba(255,255,255,.3)}.white-30::placeholder{color:rgba(255,255,255,.3)}.white-20{color:rgba(255,255,255,.2)}.white-20::placeholder{color:rgba(255,255,255,.2)}.white-10{color:rgba(255,255,255,.1)}.white-10::placeholder{color:rgba(255,255,255,.1)}.bg-white-100{background-color:rgba(255,255,255,1)}.bg-white-90{background-color:rgba(255,255,255,.9)}.bg-white-80{background-color:rgba(255,255,255,.8)}.bg-white-70{background-color:rgba(255,255,255,.7)}.bg-white-60{background-color:rgba(255,255,255,.6)}.bg-white-50{background-color:rgba(255,255,255,.5)}.bg-white-40{background-color:rgba(255,255,255,.4)}.bg-white-30{background-color:rgba(255,255,255,.3)}.bg-white-20{background-color:rgba(255,255,255,.2)}.bg-white-10{background-color:rgba(255,255,255,.1)}.bg-white-05{background-color:rgba(255,255,255,.05)}.bg-white-025{background-color:rgba(255,255,255,.025)}.bg-white-100-focus:hover{background-color:rgba(255,255,255,1)}.bg-white-100-focus:focus{background-color:rgba(255,255,255,1)}.bg-white-90-focus:hover{background-color:rgba(255,255,255,.9)}.bg-white-90-focus:focus{background-color:rgba(255,255,255,.9)}.bg-white-80-focus:hover{background-color:rgba(255,255,255,.8)}.bg-white-80-focus:focus{background-color:rgba(255,255,255,.8)}.bg-white-70-focus:hover{background-color:rgba(255,255,255,.7)}.bg-white-70-focus:focus{background-color:rgba(255,255,255,.7)}.bg-white-60-focus:hover{background-color:rgba(255,255,255,.6)}.bg-white-60-focus:focus{background-color:rgba(255,255,255,.6)}.bg-white-50-focus:hover{background-color:rgba(255,255,255,.5)}.bg-white-50-focus:focus{background-color:rgba(255,255,255,.5)}.bg-white-40-focus:hover{background-color:rgba(255,255,255,.4)}.bg-white-40-focus:focus{background-color:rgba(255,255,255,.4)}.bg-white-30-focus:hover{background-color:rgba(255,255,255,.3)}.bg-white-30-focus:focus{background-color:rgba(255,255,255,.3)}.bg-white-20-focus:hover{background-color:rgba(255,255,255,.2)}.bg-white-20-focus:focus{background-color:rgba(255,255,255,.2)}.bg-white-10-focus:hover{background-color:rgba(255,255,255,.1)}.bg-white-10-focus:focus{background-color:rgba(255,255,255,.1)}.black{color:#111}.dark-gray{color:#333}.mid-gray{color:#555}.gray{color:#777}.silver{color:#999}.light-silver{color:#aaa}.light-gray{color:#eee}.near-white{color:#f4f4f4}.white{color:#fff}.blue{color:#0074D9}.light-blue{color:#64a8ff}.lightest-blue{color:#a2dfff}.dark-blue{color:#0045a1}.darkest-blue{color:#002f86}.yellow{color:#fff93c}.light-yellow{color:#fffa60}.lightest-yellow{color:#fffca6}.dark-yellow{color:#e2c100}.darkest-yellow{color:#c4a600}.orange{color:#FF851B}.light-orange{color:#ffa942}.lightest-orange{color:#ffc55d}.dark-orange{color:#d05e00}.darkest-orange{color:#b14400}.red{color:#d82c2c}.light-red{color:#f94f44}.lightest-red{color:#ff6c5c}.dark-red{color:#bd001a}.darkest-red{color:#9d0003}.teal{color:#27bfa8}.light-teal{color:#4eddc5}.lightest-teal{color:#6ffae0}.dark-teal{color:#25a28f}.darkest-teal{color:#008876}.green{color:#3D9970}.light-green{color:#5ab48a}.lightest-green{color:#75d0a4}.dark-green{color:#1e7f58}.darkest-green{color:#006540}.pink{color:#F012BE}.light-pink{color:#ff57e8}.lightest-pink{color:#ff81ff}.dark-pink{color:#d100a3}.darkest-pink{color:#b20088}.purple{color:#980bc6}.light-purple{color:#b536e2}.lightest-purple{color:#d355ff}.dark-purple{color:#7b00a9}.darkest-purple{color:#5f008e}.bg-black{background-color:#111}.bg-dark-gray{background-color:#333}.bg-mid-gray{background-color:#555}.bg-gray{background-color:#777}.bg-silver{background-color:#999}.bg-light-silver{background-color:#aaa}.bg-light-gray{background-color:#eee}.bg-near-white{background-color:#f4f4f4}.bg-white{background-color:#fff}.bg-blue{background-color:#0074D9}.bg-light-blue{background-color:#64a8ff}.bg-lightest-blue{background-color:#a2dfff}.bg-dark-blue{background-color:#0045a1}.bg-darkest-blue{background-color:#002f86}.bg-yellow{background-color:#fff93c}.bg-light-yellow{background-color:#fffa60}.bg-lightest-yellow{background-color:#fffca6}.bg-dark-yellow{background-color:#e2c100}.bg-darkest-yellow{background-color:#c4a600}.bg-orange{background-color:#FF851B}.bg-light-orange{background-color:#ffa942}.bg-lightest-orange{background-color:#ffc55d}.bg-dark-orange{background-color:#d05e00}.bg-darkest-orange{background-color:#b14400}.bg-red{background-color:#d82c2c}.bg-light-red{background-color:#f94f44}.bg-lightest-red{background-color:#ff6c5c}.bg-dark-red{background-color:#bd001a}.bg-darkest-red{background-color:#9d0003}.bg-teal{background-color:#27bfa8}.bg-light-teal{background-color:#4eddc5}.bg-lightest-teal{background-color:#6ffae0}.bg-dark-teal{background-color:#25a28f}.bg-darkest-teal{background-color:#008876}.bg-green{background-color:#3D9970}.bg-light-green{background-color:#5ab48a}.bg-lightest-green{background-color:#75d0a4}.bg-dark-green{background-color:#1e7f58}.bg-darkest-green{background-color:#006540}.bg-pink{background-color:#F012BE}.bg-light-pink{background-color:#ff57e8}.bg-lightest-pink{background-color:#ff81ff}.bg-dark-pink{background-color:#d100a3}.bg-darkest-pink{background-color:#b20088}.bg-purple{background-color:#980bc6}.bg-light-purple{background-color:#b536e2}.bg-lightest-purple{background-color:#d355ff}.bg-dark-purple{background-color:#7b00a9}.bg-darkest-purple{background-color:#5f008e}.focus-black:focus{color:#000}.focus-near-black:focus{color:#111}.focus-dark-gray:focus{color:#333}.focus-mid-gray:focus{color:#555}.focus-gray:focus{color:#777}.focus-silver:focus{color:#999}.focus-light-silver:focus{color:#aaa}.focus-moon-gray:focus{color:#ccc}.focus-light-gray:focus{color:#eee}.focus-near-white:focus{color:#f4f4f4}.focus-white:focus{color:#fff}.focus-blue:focus{color:#0074D9}.focus-light-blue:focus{color:#64a8ff}.focus-lightest-blue:focus{color:#a2dfff}.focus-dark-blue:focus{color:#0045a1}.focus-darkest-blue:focus{color:#002f86}.focus-yellow:focus{color:#fff93c}.focus-light-yellow:focus{color:#fffa60}.focus-lightest-yellow:focus{color:#fffca6}.focus-dark-yellow:focus{color:#e2c100}.focus-darkest-yellow:focus{color:#c4a600}.focus-orange:focus{color:#FF851B}.focus-light-orange:focus{color:#ffa942}.focus-lightest-orange:focus{color:#ffc55d}.focus-dark-orange:focus{color:#d05e00}.focus-darkest-orange:focus{color:#b14400}.focus-red:focus{color:#d82c2c}.focus-light-red:focus{color:#f94f44}.focus-lightest-red:focus{color:#ff6c5c}.focus-dark-red:focus{color:#bd001a}.focus-darkest-red:focus{color:#9d0003}.focus-teal:focus{color:#27bfa8}.focus-light-teal:focus{color:#4eddc5}.focus-lightest-teal:focus{color:#6ffae0}.focus-dark-teal:focus{color:#25a28f}.focus-darkest-teal:focus{color:#008876}.focus-green:focus{color:#3D9970}.focus-light-green:focus{color:#5ab48a}.focus-lightest-green:focus{color:#75d0a4}.focus-dark-green:focus{color:#1e7f58}.focus-darkest-green:focus{color:#006540}.focus-pink:focus{color:#F012BE}.focus-light-pink:focus{color:#ff57e8}.focus-lightest-pink:focus{color:#ff81ff}.focus-dark-pink:focus{color:#d100a3}.focus-darkest-pink:focus{color:#b20088}.focus-purple:focus{color:#980bc6}.focus-light-purple:focus{color:#b536e2}.focus-lightest-purple:focus{color:#d355ff}.focus-dark-purple:focus{color:#7b00a9}.focus-darkest-purple:focus{color:#5f008e}.bg-focus-black:focus{background-color:#000}.bg-focus-near-black:focus{background-color:#111}.bg-focus-dark-gray:focus{background-color:#333}.bg-focus-mid-gray:focus{background-color:#555}.bg-focus-gray:focus{background-color:#777}.bg-focus-silver:focus{background-color:#999}.bg-focus-light-silver:focus{background-color:#aaa}.bg-focus-moon-gray:focus{background-color:#ccc}.bg-focus-light-gray:focus{background-color:#eee}.bg-focus-near-white:focus{background-color:#f4f4f4}.bg-focus-white:focus{background-color:#fff}.bg-focus-blue:focus{background-color:#0074D9}.bg-focus-light-blue:focus{background-color:#64a8ff}.bg-focus-lightest-blue:focus{background-color:#a2dfff}.bg-focus-dark-blue:focus{background-color:#0045a1}.bg-focus-darkest-blue:focus{background-color:#002f86}.bg-focus-yellow:focus{background-color:#fff93c}.bg-focus-light-yellow:focus{background-color:#fffa60}.bg-focus-lightest-yellow:focus{background-color:#fffca6}.bg-focus-dark-yellow:focus{background-color:#e2c100}.bg-focus-darkest-yellow:focus{background-color:#c4a600}.bg-focus-orange:focus{background-color:#FF851B}.bg-focus-light-orange:focus{background-color:#ffa942}.bg-focus-lightest-orange:focus{background-color:#ffc55d}.bg-focus-dark-orange:focus{background-color:#d05e00}.bg-focus-darkest-orange:focus{background-color:#b14400}.bg-focus-red:focus{background-color:#d82c2c}.bg-focus-light-red:focus{background-color:#f94f44}.bg-focus-lightest-red:focus{background-color:#ff6c5c}.bg-focus-dark-red:focus{background-color:#bd001a}.bg-focus-darkest-red:focus{background-color:#9d0003}.bg-focus-teal:focus{background-color:#27bfa8}.bg-focus-light-teal:focus{background-color:#4eddc5}.bg-focus-lightest-teal:focus{background-color:#6ffae0}.bg-focus-dark-teal:focus{background-color:#25a28f}.bg-focus-darkest-teal:focus{background-color:#008876}.bg-focus-green:focus{background-color:#3D9970}.bg-focus-light-green:focus{background-color:#5ab48a}.bg-focus-lightest-green:focus{background-color:#75d0a4}.bg-focus-dark-green:focus{background-color:#1e7f58}.bg-focus-darkest-green:focus{background-color:#006540}.bg-focus-pink:focus{background-color:#F012BE}.bg-focus-light-pink:focus{background-color:#ff57e8}.bg-focus-lightest-pink:focus{background-color:#ff81ff}.bg-focus-dark-pink:focus{background-color:#d100a3}.bg-focus-darkest-pink:focus{background-color:#b20088}.bg-focus-purple:focus{background-color:#980bc6}.bg-focus-light-purple:focus{background-color:#b536e2}.bg-focus-lightest-purple:focus{background-color:#d355ff}.bg-focus-dark-purple:focus{background-color:#7b00a9}.bg-focus-darkest-purple:focus{background-color:#5f008e}.hover-black:hover{color:#000}.hover-near-black:hover{color:#111}.hover-dark-gray:hover{color:#333}.hover-mid-gray:hover{color:#555}.hover-gray:hover{color:#777}.hover-silver:hover{color:#999}.hover-light-silver:hover{color:#aaa}.hover-moon-gray:hover{color:#ccc}.hover-light-gray:hover{color:#eee}.hover-near-white:hover{color:#f4f4f4}.hover-white:hover{color:#fff}.hover-blue:hover{color:#0074D9}.hover-light-blue:hover{color:#64a8ff}.hover-lightest-blue:hover{color:#a2dfff}.hover-dark-blue:hover{color:#0045a1}.hover-darkest-blue:hover{color:#002f86}.hover-yellow:hover{color:#fff93c}.hover-light-yellow:hover{color:#fffa60}.hover-lightest-yellow:hover{color:#fffca6}.hover-dark-yellow:hover{color:#e2c100}.hover-darkest-yellow:hover{color:#c4a600}.hover-orange:hover{color:#FF851B}.hover-light-orange:hover{color:#ffa942}.hover-lightest-orange:hover{color:#ffc55d}.hover-dark-orange:hover{color:#d05e00}.hover-darkest-orange:hover{color:#b14400}.hover-red:hover{color:#d82c2c}.hover-light-red:hover{color:#f94f44}.hover-lightest-red:hover{color:#ff6c5c}.hover-dark-red:hover{color:#bd001a}.hover-darkest-red:hover{color:#9d0003}.hover-teal:hover{color:#27bfa8}.hover-light-teal:hover{color:#4eddc5}.hover-lightest-teal:hover{color:#6ffae0}.hover-dark-teal:hover{color:#25a28f}.hover-darkest-teal:hover{color:#008876}.hover-green:hover{color:#3D9970}.hover-light-green:hover{color:#5ab48a}.hover-lightest-green:hover{color:#75d0a4}.hover-dark-green:hover{color:#1e7f58}.hover-darkest-green:hover{color:#006540}.hover-pink:hover{color:#F012BE}.hover-light-pink:hover{color:#ff57e8}.hover-lightest-pink:hover{color:#ff81ff}.hover-dark-pink:hover{color:#d100a3}.hover-darkest-pink:hover{color:#b20088}.hover-purple:hover{color:#980bc6}.hover-light-purple:hover{color:#b536e2}.hover-lightest-purple:hover{color:#d355ff}.hover-dark-purple:hover{color:#7b00a9}.hover-darkest-purple:hover{color:#5f008e}.bg-hover-black:hover{background-color:#000}.bg-hover-near-black:hover{background-color:#111}.bg-hover-dark-gray:hover{background-color:#333}.bg-hover-mid-gray:hover{background-color:#555}.bg-hover-gray:hover{background-color:#777}.bg-hover-silver:hover{background-color:#999}.bg-hover-light-silver:hover{background-color:#aaa}.bg-hover-moon-gray:hover{background-color:#ccc}.bg-hover-light-gray:hover{background-color:#eee}.bg-hover-near-white:hover{background-color:#f4f4f4}.bg-hover-white:hover{background-color:#fff}.bg-hover-blue:hover{background-color:#0074D9}.bg-hover-light-blue:hover{background-color:#64a8ff}.bg-hover-lightest-blue:hover{background-color:#a2dfff}.bg-hover-dark-blue:hover{background-color:#0045a1}.bg-hover-darkest-blue:hover{background-color:#002f86}.bg-hover-yellow:hover{background-color:#fff93c}.bg-hover-light-yellow:hover{background-color:#fffa60}.bg-hover-lightest-yellow:hover{background-color:#fffca6}.bg-hover-dark-yellow:hover{background-color:#e2c100}.bg-hover-darkest-yellow:hover{background-color:#c4a600}.bg-hover-orange:hover{background-color:#FF851B}.bg-hover-light-orange:hover{background-color:#ffa942}.bg-hover-lightest-orange:hover{background-color:#ffc55d}.bg-hover-dark-orange:hover{background-color:#d05e00}.bg-hover-darkest-orange:hover{background-color:#b14400}.bg-hover-red:hover{background-color:#d82c2c}.bg-hover-light-red:hover{background-color:#f94f44}.bg-hover-lightest-red:hover{background-color:#ff6c5c}.bg-hover-dark-red:hover{background-color:#bd001a}.bg-hover-darkest-red:hover{background-color:#9d0003}.bg-hover-teal:hover{background-color:#27bfa8}.bg-hover-light-teal:hover{background-color:#4eddc5}.bg-hover-lightest-teal:hover{background-color:#6ffae0}.bg-hover-dark-teal:hover{background-color:#25a28f}.bg-hover-darkest-teal:hover{background-color:#008876}.bg-hover-green:hover{background-color:#3D9970}.bg-hover-light-green:hover{background-color:#5ab48a}.bg-hover-lightest-green:hover{background-color:#75d0a4}.bg-hover-dark-green:hover{background-color:#1e7f58}.bg-hover-darkest-green:hover{background-color:#006540}.bg-hover-pink:hover{background-color:#F012BE}.bg-hover-light-pink:hover{background-color:#ff57e8}.bg-hover-lightest-pink:hover{background-color:#ff81ff}.bg-hover-dark-pink:hover{background-color:#d100a3}.bg-hover-darkest-pink:hover{background-color:#b20088}.bg-hover-purple:hover{background-color:#980bc6}.bg-hover-light-purple:hover{background-color:#b536e2}.bg-hover-lightest-purple:hover{background-color:#d355ff}.bg-hover-dark-purple:hover{background-color:#7b00a9}.bg-hover-darkest-purple:hover{background-color:#5f008e}.sw-4{stroke-width:4}.stroke-black{stroke:#000}.stroke-near-black{stroke:#111}.stroke-dark-gray{stroke:#333}.stroke-mid-gray{stroke:#555}.stroke-gray{stroke:#777}.stroke-silver{stroke:#999}.stroke-light-silver{stroke:#aaa}.stroke-moon-gray{stroke:#ccc}.stroke-light-gray{stroke:#eee}.stroke-near-white{stroke:#f4f4f4}.stroke-white{stroke:#fff}.stroke-blue{stroke:#0074D9}.stroke-light-blue{stroke:#64a8ff}.stroke-lightest-blue{stroke:#a2dfff}.stroke-dark-blue{stroke:#0045a1}.stroke-darkest-blue{stroke:#002f86}.stroke-yellow{stroke:#fff93c}.stroke-light-yellow{stroke:#fffa60}.stroke-lightest-yellow{stroke:#fffca6}.stroke-dark-yellow{stroke:#e2c100}.stroke-darkest-yellow{stroke:#c4a600}.stroke-orange{stroke:#FF851B}.stroke-light-orange{stroke:#ffa942}.stroke-lightest-orange{stroke:#ffc55d}.stroke-dark-orange{stroke:#d05e00}.stroke-darkest-orange{stroke:#b14400}.stroke-red{stroke:#d82c2c}.stroke-light-red{stroke:#f94f44}.stroke-lightest-red{stroke:#ff6c5c}.stroke-dark-red{stroke:#bd001a}.stroke-darkest-red{stroke:#9d0003}.stroke-teal{stroke:#27bfa8}.stroke-light-teal{stroke:#4eddc5}.stroke-lightest-teal{stroke:#6ffae0}.stroke-dark-teal{stroke:#25a28f}.stroke-darkest-teal{stroke:#008876}.stroke-green{stroke:#3D9970}.stroke-light-green{stroke:#5ab48a}.stroke-lightest-green{stroke:#75d0a4}.stroke-dark-green{stroke:#1e7f58}.stroke-darkest-green{stroke:#006540}.stroke-pink{stroke:#F012BE}.stroke-light-pink{stroke:#ff57e8}.stroke-lightest-pink{stroke:#ff81ff}.stroke-dark-pink{stroke:#d100a3}.stroke-darkest-pink{stroke:#b20088}.stroke-purple{stroke:#980bc6}.stroke-light-purple{stroke:#b536e2}.stroke-lightest-purple{stroke:#d355ff}.stroke-dark-purple{stroke:#7b00a9}.stroke-darkest-purple{stroke:#5f008e}.pan{padding:0}.paxs{padding:.25rem}.pas{padding:.5rem}.pam{padding:1rem}.pal{padding:2rem}.paxl{padding:4rem}.paxxl{padding:8rem}.paxxxl{padding:16rem}.pln{padding-left:0}.plxs{padding-left:.25rem}.pls{padding-left:.5rem}.plm{padding-left:1rem}.pll{padding-left:2rem}.plxl{padding-left:4rem}.plxxl{padding-left:8rem}.plxxxl{padding-left:16rem}.prn{padding-right:0}.prxs{padding-right:.25rem}.prs{padding-right:.5rem}.prm{padding-right:1rem}.prl{padding-right:2rem}.prxl{padding-right:4rem}.prxxl{padding-right:8rem}.prxxxl{padding-right:16rem}.pbn{padding-bottom:0}.pbxs{padding-bottom:.25rem}.pbs{padding-bottom:.5rem}.pbm{padding-bottom:1rem}.pbl{padding-bottom:2rem}.pbxl{padding-bottom:4rem}.pbxxl{padding-bottom:8rem}.pbxxxl{padding-bottom:16rem}.ptn{padding-top:0}.ptxs{padding-top:.25rem}.pts{padding-top:.5rem}.ptm{padding-top:1rem}.ptl{padding-top:2rem}.ptxl{padding-top:4rem}.ptxxl{padding-top:8rem}.ptxxxl{padding-top:16rem}.pvn{padding-top:0;padding-bottom:0}.pvxs{padding-top:.25rem;padding-bottom:.25rem}.pvs{padding-top:.5rem;padding-bottom:.5rem}.pvm{padding-top:1rem;padding-bottom:1rem}.pvl{padding-top:2rem;padding-bottom:2rem}.pvxl{padding-top:4rem;padding-bottom:4rem}.pvxxl{padding-top:8rem;padding-bottom:8rem}.pvxxxl{padding-top:16rem;padding-bottom:16rem}.phn{padding-left:0;padding-right:0}.phxs{padding-left:.25rem;padding-right:.25rem}.phs{padding-left:.5rem;padding-right:.5rem}.phm{padding-left:1rem;padding-right:1rem}.phl{padding-left:2rem;padding-right:2rem}.phxl{padding-left:4rem;padding-right:4rem}.phxxl{padding-left:8rem;padding-right:8rem}.phxxxl{padding-left:16rem;padding-right:16rem}.man{margin:0}.maxs{margin:.25rem}.mas{margin:.5rem}.mam{margin:1rem}.mal{margin:2rem}.maxl{margin:4rem}.maxxl{margin:8rem}.maxxxl{margin:16rem}.mln{margin-left:0}.mlxs{margin-left:.25rem}.mls{margin-left:.5rem}.mlm{margin-left:1rem}.mll{margin-left:2rem}.mlxl{margin-left:4rem}.mlxxl{margin-left:8rem}.mlxxxl{margin-left:16rem}.mrn{margin-right:0}.mrxs{margin-right:.25rem}.mrs{margin-right:.5rem}.mrm{margin-right:1rem}.mrl{margin-right:2rem}.mrxl{margin-right:4rem}.mrxxl{margin-right:8rem}.mrxxxl{margin-right:16rem}.mbn{margin-bottom:0}.mbxs{margin-bottom:.25rem}.mbs{margin-bottom:.5rem}.mbm{margin-bottom:1rem}.mbl{margin-bottom:2rem}.mbxl{margin-bottom:4rem}.mbxxl{margin-bottom:8rem}.mbxxxl{margin-bottom:16rem}.mtn{margin-top:0}.mtxs{margin-top:.25rem}.mts{margin-top:.5rem}.mtm{margin-top:1rem}.mtl{margin-top:2rem}.mtxl{margin-top:4rem}.mtxxl{margin-top:8rem}.mtxxxl{margin-top:16rem}.mvn{margin-top:0;margin-bottom:0rem}.mvxs{margin-top:.25rem;margin-bottom:.25rem}.mvs{margin-top:.5rem;margin-bottom:.5rem}.mvm{margin-top:1rem;margin-bottom:1rem}.mvl{margin-top:2rem;margin-bottom:2rem}.mvxl{margin-top:4rem;margin-bottom:4rem}.mvxxl{margin-top:8rem;margin-bottom:8rem}.mvxxxl{margin-top:16rem;margin-bottom:16rem}.mhn{margin-left:0;margin-right:0}.mhs{margin-left:.5rem;margin-right:.5rem}.mhm{margin-left:1rem;margin-right:1rem}.mhl{margin-left:2rem;margin-right:2rem}.mhxl{margin-left:4rem;margin-right:4rem}.mhxxl{margin-left:8rem;margin-right:8rem}.mhxxxl{margin-left:16rem;margin-right:16rem}@media screen and (min-width:30em){.pan-ns{padding:0}.paxs-ns{padding:.25rem}.pas-ns{padding:.5rem}.pam-ns{padding:1rem}.pal-ns{padding:2rem}.paxl-ns{padding:4rem}.paxxl-ns{padding:8rem}.paxxxl-ns{padding:16rem}.pln-ns{padding-left:0}.plxs-ns{padding-left:.25rem}.pls-ns{padding-left:.5rem}.plm-ns{padding-left:1rem}.pll-ns{padding-left:2rem}.plxl-ns{padding-left:4rem}.plxxl-ns{padding-left:8rem}.plxxxl-ns{padding-left:16rem}.prn-ns{padding-right:0}.prxs-ns{padding-right:.25rem}.prs-ns{padding-right:.5rem}.prm-ns{padding-right:1rem}.prl-ns{padding-right:2rem}.prxl-ns{padding-right:4rem}.prxxl-ns{padding-right:8rem}.prxxxl-ns{padding-right:16rem}.pbn-ns{padding-bottom:0}.pbxs-ns{padding-bottom:.25rem}.pbs-ns{padding-bottom:.5rem}.pbm-ns{padding-bottom:1rem}.pbl-ns{padding-bottom:2rem}.pbxl-ns{padding-bottom:4rem}.pbxxl-ns{padding-bottom:8rem}.pbxxxl-ns{padding-bottom:16rem}.ptn-ns{padding-top:0}.ptxs-ns{padding-top:.25rem}.pts-ns{padding-top:.5rem}.ptm-ns{padding-top:1rem}.ptl-ns{padding-top:2rem}.ptxl-ns{padding-top:4rem}.ptxxl-ns{padding-top:8rem}.ptxxxl-ns{padding-top:16rem}.pvn-ns{padding-top:0;padding-bottom:0}.pvxs-ns{padding-top:.25rem;padding-bottom:.25rem}.pvs-ns{padding-top:.5rem;padding-bottom:.5rem}.pvm-ns{padding-top:1rem;padding-bottom:1rem}.pvl-ns{padding-top:2rem;padding-bottom:2rem}.pvxl-ns{padding-top:4rem;padding-bottom:4rem}.pvxxl-ns{padding-top:8rem;padding-bottom:8rem}.pvxxxl-ns{padding-top:16rem;padding-bottom:16rem}.phn-ns{padding-left:0;padding-right:0}.pvxs-ns{padding-left:.25rem;padding-right:.25rem}.phs-ns{padding-left:.5rem;padding-right:.5rem}.phm-ns{padding-left:1rem;padding-right:1rem}.phl-ns{padding-left:2rem;padding-right:2rem}.phxl-ns{padding-left:4rem;padding-right:4rem}.phxxl-ns{padding-left:8rem;padding-right:8rem}.phxxxl-ns{padding-left:16rem;padding-right:16rem}.man-ns{margin:0}.maxs-ns{margin:.25rem}.mas-ns{margin:.5rem}.mam-ns{margin:1rem}.mal-ns{margin:2rem}.maxl-ns{margin:4rem}.maxxl-ns{margin:8rem}.maxxxl-ns{margin:16rem}.mln-ns{margin-left:0}.mlxs-ns{margin-left:.25rem}.mls-ns{margin-left:.5rem}.mlm-ns{margin-left:1rem}.mll-ns{margin-left:2rem}.mlxl-ns{margin-left:4rem}.mlxxl-ns{margin-left:8rem}.mlxxxl-ns{margin-left:16rem}.mrn-ns{margin-right:0}.mrxs-ns{margin-right:.25rem}.mrs-ns{margin-right:.5rem}.mrm-ns{margin-right:1rem}.mrl-ns{margin-right:2rem}.mrxl-ns{margin-right:4rem}.mrxxl-ns{margin-right:8rem}.mrxxxl-ns{margin-right:16rem}.mbn-ns{margin-bottom:0}.mbxs-ns{margin-bottom:.25rem}.mbs-ns{margin-bottom:.5rem}.mbm-ns{margin-bottom:1rem}.mbl-ns{margin-bottom:2rem}.mbxl-ns{margin-bottom:4rem}.mbxxl-ns{margin-bottom:8rem}.mbxxxl-ns{margin-bottom:16rem}.mtn-ns{margin-top:0}.mtxs-ns{margin-top:.25rem}.mts-ns{margin-top:.5rem}.mtm-ns{margin-top:1rem}.mtl-ns{margin-top:2rem}.mtxl-ns{margin-top:4rem}.mtxxl-ns{margin-top:8rem}.mtxxxl-ns{margin-top:16rem}.mvn-ns{margin-top:0;margin-bottom:0rem}.mvxs-ns{margin-top:.25rem;margin-bottom:.25rem}.mvs-ns{margin-top:.5rem;margin-bottom:.5rem}.mvm-ns{margin-top:1rem;margin-bottom:1rem}.mvl-ns{margin-top:2rem;margin-bottom:2rem}.mvxl-ns{margin-top:4rem;margin-bottom:4rem}.mvxxl-ns{margin-top:8rem;margin-bottom:8rem}.mvxxxl-ns{margin-top:16rem;margin-bottom:16rem}.mhn-ns{margin-left:0;margin-right:0}.mhs-ns{margin-left:.5rem;margin-right:.5rem}.mhm-ns{margin-left:1rem;margin-right:1rem}.mhl-ns{margin-left:2rem;margin-right:2rem}.mhxl-ns{margin-left:4rem;margin-right:4rem}.mhxxl-ns{margin-left:8rem;margin-right:8rem}.mhxxxl-ns{margin-left:16rem;margin-right:16rem}}@media screen and (min-width:30em) and (max-width:60em){.pan-m{padding:0}.paxs-m{padding:.25rem}.pas-m{padding:.5rem}.pam-m{padding:1rem}.pal-m{padding:2rem}.paxl-m{padding:4rem}.paxxl-m{padding:8rem}.paxxxl-m{padding:16rem}.pln-m{padding-left:0}.plxs-m{padding-left:.25rem}.pls-m{padding-left:.5rem}.plm-m{padding-left:1rem}.pll-m{padding-left:2rem}.plxl-m{padding-left:4rem}.plxxl-m{padding-left:8rem}.plxxxl-m{padding-left:16rem}.prn-m{padding-right:0}.prxs-m{padding-right:.25rem}.prs-m{padding-right:.5rem}.prm-m{padding-right:1rem}.prl-m{padding-right:2rem}.prxl-m{padding-right:4rem}.prxxl-m{padding-right:8rem}.prxxxl-m{padding-right:16rem}.pbn-m{padding-bottom:0}.pbxs-m{padding-bottom:.25rem}.pbs-m{padding-bottom:.5rem}.pbm-m{padding-bottom:1rem}.pbl-m{padding-bottom:2rem}.pbxl-m{padding-bottom:4rem}.pbxxl-m{padding-bottom:8rem}.pbxxxl-m{padding-bottom:16rem}.ptn-m{padding-top:0}.ptxs-m{padding-top:.25rem}.pts-m{padding-top:.5rem}.ptm-m{padding-top:1rem}.ptl-m{padding-top:2rem}.ptxl-m{padding-top:4rem}.ptxxl-m{padding-top:8rem}.ptxxxl-m{padding-top:16rem}.pvn-m{padding-top:0;padding-bottom:0}.pvxs-m{padding-top:.25rem;padding-bottom:.25rem}.pvs-m{padding-top:.5rem;padding-bottom:.5rem}.pvm-m{padding-top:1rem;padding-bottom:1rem}.pvl-m{padding-top:2rem;padding-bottom:2rem}.pvxl-m{padding-top:4rem;padding-bottom:4rem}.pvxxl-m{padding-top:8rem;padding-bottom:8rem}.pvxxxl-m{padding-top:16rem;padding-bottom:16rem}.phn-m{padding-left:0;padding-right:0}.pvxs-m{padding-left:.25rem;padding-right:.25rem}.phs-m{padding-left:.5rem;padding-right:.5rem}.phm-m{padding-left:1rem;padding-right:1rem}.phl-m{padding-left:2rem;padding-right:2rem}.phxl-m{padding-left:4rem;padding-right:4rem}.phxxl-m{padding-left:8rem;padding-right:8rem}.phxxxl-m{padding-left:16rem;padding-right:16rem}.man-m{margin:0}.maxs-m{margin:.25rem}.mas-m{margin:.5rem}.mam-m{margin:1rem}.mal-m{margin:2rem}.maxl-m{margin:4rem}.maxxl-m{margin:8rem}.maxxxl-m{margin:16rem}.mln-m{margin-left:0}.mlxs-m{margin-left:.25rem}.mls-m{margin-left:.5rem}.mlm-m{margin-left:1rem}.mll-m{margin-left:2rem}.mlxl-m{margin-left:4rem}.mlxxl-m{margin-left:8rem}.mlxxxl-m{margin-left:16rem}.mrn-m{margin-right:0}.mrxs-m{margin-right:.25rem}.mrs-m{margin-right:.5rem}.mrm-m{margin-right:1rem}.mrl-m{margin-right:2rem}.mrxl-m{margin-right:4rem}.mrxxl-m{margin-right:8rem}.mrxxxl-m{margin-right:16rem}.mbn-m{margin-bottom:0}.mbxs-m{margin-bottom:.25rem}.mbs-m{margin-bottom:.5rem}.mbm-m{margin-bottom:1rem}.mbl-m{margin-bottom:2rem}.mbxl-m{margin-bottom:4rem}.mbxxl-m{margin-bottom:8rem}.mbxxxl-m{margin-bottom:16rem}.mtn-m{margin-top:0}.mtxs-m{margin-top:.25rem}.mts-m{margin-top:.5rem}.mtm-m{margin-top:1rem}.mtl-m{margin-top:2rem}.mtxl-m{margin-top:4rem}.mtxxl-m{margin-top:8rem}.mtxxxl-m{margin-top:16rem}.mvn-m{margin-top:0;margin-bottom:0rem}.mvxs-m{margin-top:.25rem;margin-bottom:.25rem}.mvs-m{margin-top:.5rem;margin-bottom:.5rem}.mvm-m{margin-top:1rem;margin-bottom:1rem}.mvl-m{margin-top:2rem;margin-bottom:2rem}.mvxl-m{margin-top:4rem;margin-bottom:4rem}.mvxxl-m{margin-top:8rem;margin-bottom:8rem}.mvxxxl-m{margin-top:16rem;margin-bottom:16rem}.mhn-m{margin-left:0;margin-right:0}.mhxs-m{margin-left:.25rem;margin-right:.25rem}.mhs-m{margin-left:.5rem;margin-right:.5rem}.mhm-m{margin-left:1rem;margin-right:1rem}.mhl-m{margin-left:2rem;margin-right:2rem}.mhxl-m{margin-left:4rem;margin-right:4rem}.mhxxl-m{margin-left:8rem;margin-right:8rem}.mhxxxl-m{margin-left:16rem;margin-right:16rem}}@media screen and (min-width:60em){.pan-l{padding:0}.paxs-l{padding:.25rem}.pas-l{padding:.5rem}.pam-l{padding:1rem}.pal-l{padding:2rem}.paxl-l{padding:4rem}.paxxl-l{padding:8rem}.paxxxl-l{padding:16rem}.pln-l{padding-left:0}.plxs-l{padding-left:.25rem}.pls-l{padding-left:.5rem}.plm-l{padding-left:1rem}.pll-l{padding-left:2rem}.plxl-l{padding-left:4rem}.plxxl-l{padding-left:8rem}.plxxxl-l{padding-left:16rem}.prn-l{padding-right:0}.prxs-l{padding-right:.25rem}.prs-l{padding-right:.5rem}.prm-l{padding-right:1rem}.prl-l{padding-right:2rem}.prxl-l{padding-right:4rem}.prxxl-l{padding-right:8rem}.prxxxl-l{padding-right:16rem}.pbn-l{padding-bottom:0}.pbxs-l{padding-bottom:.25rem}.pbs-l{padding-bottom:.5rem}.pbm-l{padding-bottom:1rem}.pbl-l{padding-bottom:2rem}.pbxl-l{padding-bottom:4rem}.pbxxl-l{padding-bottom:8rem}.pbxxxl-l{padding-bottom:16rem}.ptn-l{padding-top:0}.ptxs-l{padding-top:.25rem}.pts-l{padding-top:.5rem}.ptm-l{padding-top:1rem}.ptl-l{padding-top:2rem}.ptxl-l{padding-top:4rem}.ptxxl-l{padding-top:8rem}.ptxxxl-l{padding-top:16rem}.pvn-l{padding-top:0;padding-bottom:0}.pvxs-l{padding-top:.25rem;padding-bottom:.25rem}.pvs-l{padding-top:.5rem;padding-bottom:.5rem}.pvm-l{padding-top:1rem;padding-bottom:1rem}.pvl-l{padding-top:2rem;padding-bottom:2rem}.pvxl-l{padding-top:4rem;padding-bottom:4rem}.pvxxl-l{padding-top:8rem;padding-bottom:8rem}.pvxxxl-l{padding-top:16rem;padding-bottom:16rem}.phn-l{padding-left:0;padding-right:0}.pvxs-l{padding-left:.25rem;padding-right:.25rem}.phs-l{padding-left:.5rem;padding-right:.5rem}.phm-l{padding-left:1rem;padding-right:1rem}.phl-l{padding-left:2rem;padding-right:2rem}.phxl-l{padding-left:4rem;padding-right:4rem}.phxxl-l{padding-left:8rem;padding-right:8rem}.phxxxl-l{padding-left:16rem;padding-right:16rem}.man-l{margin:0}.maxs-l{margin:.25rem}.mas-l{margin:.5rem}.mam-l{margin:1rem}.mal-l{margin:2rem}.maxl-l{margin:4rem}.maxxl-l{margin:8rem}.maxxxl-l{margin:16rem}.mln-l{margin-left:0}.mlxs-l{margin-left:.25rem}.mls-l{margin-left:.5rem}.mlm-l{margin-left:1rem}.mll-l{margin-left:2rem}.mlxl-l{margin-left:4rem}.mlxxl-l{margin-left:8rem}.mlxxxl-l{margin-left:16rem}.mrn-l{margin-right:0}.mrxs-l{margin-right:.25rem}.mrs-l{margin-right:.5rem}.mrm-l{margin-right:1rem}.mrl-l{margin-right:2rem}.mrxl-l{margin-right:4rem}.mrxxl-l{margin-right:8rem}.mrxxxl-l{margin-right:16rem}.mbn-l{margin-bottom:0}.mbxs-l{margin-bottom:.25rem}.mbs-l{margin-bottom:.5rem}.mbm-l{margin-bottom:1rem}.mbl-l{margin-bottom:2rem}.mbxl-l{margin-bottom:4rem}.mbxxl-l{margin-bottom:8rem}.mbxxxl-l{margin-bottom:16rem}.mtn-l{margin-top:0}.mtxs-l{margin-top:.25rem}.mts-l{margin-top:.5rem}.mtm-l{margin-top:1rem}.mtl-l{margin-top:2rem}.mtxl-l{margin-top:4rem}.mtxxl-l{margin-top:8rem}.mtxxxl-l{margin-top:16rem}.mvn-l{margin-top:0;margin-bottom:0rem}.mvxs-l{margin-top:.25rem;margin-bottom:.25rem}.mvs-l{margin-top:.5rem;margin-bottom:.5rem}.mvm-l{margin-top:1rem;margin-bottom:1rem}.mvl-l{margin-top:2rem;margin-bottom:2rem}.mvxl-l{margin-top:4rem;margin-bottom:4rem}.mvxxl-l{margin-top:8rem;margin-bottom:8rem}.mvxxxl-l{margin-top:16rem;margin-bottom:16rem}.mhn-l{margin-left:0;margin-right:0}.mhxs-l{margin-left:.25rem;margin-right:.25rem}.mhs-l{margin-left:.5rem;margin-right:.5rem}.mhm-l{margin-left:1rem;margin-right:1rem}.mhl-l{margin-left:2rem;margin-right:2rem}.mhxl-l{margin-left:4rem;margin-right:4rem}.mhxxl-l{margin-left:8rem;margin-right:8rem}.mhxxxl-l{margin-left:16rem;margin-right:16rem}}.underline{text-decoration:underline}.no-underline{text-decoration:none}@media screen and (min-width:30em){.underline-ns{text-decoration:underline}.no-underline-ns{text-decoration:none}}@media screen and (min-width:30em) and (max-width:60em){.underline-m{text-decoration:underline}.no-underline-m{text-decoration:none}}@media screen and (min-width:60em){.underline-l{text-decoration:underline}.no-underline-l{text-decoration:none}}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}.tj{text-align:justify}@media screen and (min-width:30em){.tl-ns{text-align:left}.tr-ns{text-align:right}.tc-ns{text-align:center}.tj-ns{text-align:justify}}@media screen and (min-width:30em) and (max-width:60em){.tl-m{text-align:left}.tr-m{text-align:right}.tc-m{text-align:center}.tj-m{text-align:justify}}@media screen and (min-width:60em){.tl-l{text-align:left}.tr-l{text-align:right}.tc-l{text-align:center}.tj-l{text-align:justify}}.ttc{text-transform:capitalize}.ttl{text-transform:lowercase}.ttn{text-transform:none}.ttu{text-transform:uppercase}.caps{text-transform:uppercase;letter-spacing:.15em}@media screen and (min-width:30em){.ttc-ns{text-transform:capitalize}.ttl-ns{text-transform:lowercase}.ttn-ns{text-transform:none}.ttu-ns{text-transform:uppercase}.caps-ns{text-transform:uppercase;letter-spacing:.15em}}@media screen and (min-width:30em) and (max-width:60em){.ttc-m{text-transform:capitalize}.ttl-m{text-transform:lowercase}.ttn-m{text-transform:none}.ttu-m{text-transform:uppercase}.caps-m{text-transform:uppercase;letter-spacing:.15em}}@media screen and (min-width:60em){.ttc-l{text-transform:capitalize}.ttl-l{text-transform:lowercase}.ttn-l{text-transform:none}.ttu-l{text-transform:uppercase}.caps-l{text-transform:uppercase;letter-spacing:.15em}}.mega{font-size:4rem}.f1{font-size:2rem}.f2{font-size:1.5rem}.f3{font-size:1.25rem}.f4{font-size:1rem}.f5,.small{font-size:.85rem}@media screen and (min-width:30em){.mega-ns{font-size:4rem}.f1-ns{font-size:2rem}.f2-ns{font-size:1.5rem}.f3-ns{font-size:1.25em}.f4-ns{font-size:1rem}.f5-ns{font-size:.85rem}}@media screen and (min-width:30em) and (max-width:60em){.mega-m{font-size:4rem}.f1-m{font-size:2rem}.f2-m{font-size:1.5rem}.f3-m{font-size:1.25rem}.f4-m{font-size:1rem}.f5-m{font-size:.85rem}}@media screen and (min-width:60em){.mega-l{font-size:4rem}.f1-l{font-size:2rem}.f2-l{font-size:1.5rem}.f3-l{font-size:1.25rem}.f4-l{font-size:1rem}.f5-l{font-size:.85rem}}.measure{max-width:30em}.indent{text-indent:1em;margin-top:0;margin-bottom:0}.truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (min-width:30em){.measure-ns{max-width:30em}.indent-ns{text-indent:1em;margin-top:0;margin-bottom:0}.truncate-ns{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}@media screen and (min-width:30em) and (max-width:60em){.measure-m{max-width:30em}.indent-m{text-indent:1em;margin-top:0;margin-bottom:0}.truncate-m{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}@media screen and (min-width:60em){.measure-l{max-width:30em}.indent-l{text-indent:1em;margin-top:0;margin-bottom:0}.truncate-l{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.aspect-ratio{height:0;padding-top:56.25%;position:relative}.aspect-ratio--object{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:100}.overflow-container{overflow-y:scroll}.center{margin-right:auto;margin-left:auto}.square-25{padding-top:25%}.square-50{padding-top:50%}@media screen and (min-width:30em){.square-25-ns{padding-top:25%}.square-50-ns{padding-top:50%}}@media screen and (min-width:30em) and (max-width:60em){.square-25-m{padding-top:25%}.square-50-m{padding-top:50%}}@media screen and (min-width:60em){.square-25-l{padding-top:25%}.square-50-l{padding-top:50%}}.clip{position:fixed!important;_position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}@media screen and (min-width:30em){.clip-ns{position:fixed!important;_position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}}@media screen and (min-width:30em) and (max-width:60em){.clip-m{position:fixed!important;_position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}}@media screen and (min-width:60em){.clip-l{position:fixed!important;_position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}}.ws-norm{white-space:normal}.ws-nowrap{white-space:nowrap}.ws-pre{white-space:pre}@media screen and (min-width:30em){.ws-norm-ns{white-space:normal}.ws-nowrap-ns{white-space:nowrap}.ws-pre-ns{white-space:pre}}@media screen and (min-width:30em) and (max-width:60em){.ws-norm-m{white-space:normal}.ws-nowrap-m{white-space:nowrap}.ws-pre-m{white-space:pre}}@media screen and (min-width:60em){.ws-norm-l{white-space:normal}.ws-nowrap-l{white-space:nowrap}.ws-pre-l{white-space:pre}}.v-base{vertical-align:baseline}.v-sub{vertical-align:sub}.v-sup{vertical-align:super}.v-txt-top{vertical-align:text-top}.v-txt-btm{vertical-align:text-bottom}.v-mid{vertical-align:middle}.v-top{vertical-align:top}.v-btm{vertical-align:bottom}@media screen and (min-width:30em){.v-base-ns{vertical-align:baseline}.v-sub-ns{vertical-align:sub}.v-sup-ns{vertical-align:super}.v-txt-top-ns{vertical-align:text-top}.v-txt-btm-ns{vertical-align:text-bottom}.v-mid-ns{vertical-align:middle}.v-top-ns{vertical-align:top}.v-btm-ns{vertical-align:bottom}}@media screen and (min-width:30em) and (max-width:60em){.v-base-m{vertical-align:baseline}.v-sub-m{vertical-align:sub}.v-sup-m{vertical-align:super}.v-txt-top-m{vertical-align:text-top}.v-txt-btm-m{vertical-align:text-bottom}.v-mid-m{vertical-align:middle}.v-top-m{vertical-align:top}.v-btm-m{vertical-align:bottom}}@media screen and (min-width:60em){.v-base-l{vertical-align:baseline}.v-sub-l{vertical-align:sub}.v-sup-l{vertical-align:super}.v-txt-top-l{vertical-align:text-top}.v-txt-btm-l{vertical-align:text-bottom}.v-mid-l{vertical-align:middle}.v-top-l{vertical-align:top}.v-btm-l{vertical-align:bottom}}.dim{opacity:1;transition:opacity .15s ease-in}.dim:hover,.dim:focus{opacity:.5;transition:opacity .15s ease-in}.dim:active{opacity:.8;transition:opacity .15s ease-out}.hide-child .child{opacity:0;transition:opacity .15s ease-in}.hide-child:hover .child{cursor:pointer}.hide-child:hover .child,.hide-child:focus .child,.hide-child:active .child{opacity:1;transition:opacity .15s ease-in}.gradient-blue{background-image:linear-gradient(#4570B0,#0081C2)}.gradient-blue-reversed{background-image:linear-gradient(#0081C2,#4570B0)}.gradient-light-blue{background-image:linear-gradient(#76D3FE,#008AE0)}.gradient-light-blue-reversed{background-image:linear-gradient(#008AE0,#76D3FE)}.debug *{outline:1px solid gold} -------------------------------------------------------------------------------- /data/stripe.com.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v2.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.hljs{display:block;overflow-x:auto;padding:.5em;color:#333;background:#f8f8f8;-webkit-text-size-adjust:none}.hljs-comment,.hljs-template_comment,.diff .hljs-header,.hljs-javadoc{color:#998;font-style:italic}.hljs-keyword,.css .rule .hljs-keyword,.hljs-winutils,.javascript .hljs-title,.nginx .hljs-title,.hljs-subst,.hljs-request,.hljs-status{color:#333;font-weight:bold}.hljs-number,.hljs-hexcolor,.ruby .hljs-constant{color:teal}.hljs-string,.hljs-tag .hljs-value,.hljs-phpdoc,.hljs-dartdoc,.tex .hljs-formula{color:#d14}.hljs-title,.hljs-id,.scss .hljs-preprocessor{color:#900;font-weight:bold}.javascript .hljs-title,.hljs-list .hljs-keyword,.hljs-subst{font-weight:normal}.hljs-class .hljs-title,.hljs-type,.vhdl .hljs-literal,.tex .hljs-command{color:#458;font-weight:bold}.hljs-tag,.hljs-tag .hljs-title,.hljs-rules .hljs-property,.django .hljs-tag .hljs-keyword{color:navy;font-weight:normal}.hljs-attribute,.hljs-variable,.lisp .hljs-body{color:teal}.hljs-regexp{color:#009926}.hljs-symbol,.ruby .hljs-symbol .hljs-string,.lisp .hljs-keyword,.clojure .hljs-keyword,.scheme .hljs-keyword,.tex .hljs-special,.hljs-prompt{color:#990073}.hljs-built_in{color:#0086b3}.hljs-preprocessor,.hljs-pragma,.hljs-pi,.hljs-doctype,.hljs-shebang,.hljs-cdata{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.diff .hljs-change{background:#0086b3}.hljs-chunk{color:#aaa}html{background:#f8f9fb;background-image:-webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.5));background-image:-moz-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.5));background-image:-o-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.5));background-image:-ms-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.5));background-image:linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0.5));-webkit-background-size:100% 30%;-moz-background-size:100% 30%;background-size:100% 30%;background-repeat:no-repeat;background-position:0 100%}body{background-image:-webkit-linear-gradient(#fff,rgba(255,255,255,0));background-image:-moz-linear-gradient(#fff,rgba(255,255,255,0));background-image:-o-linear-gradient(#fff,rgba(255,255,255,0));background-image:-ms-linear-gradient(#fff,rgba(255,255,255,0));background-image:linear-gradient(#fff,rgba(255,255,255,0));-webkit-background-size:100% 900px;-moz-background-size:100% 900px;background-size:100% 900px;background-repeat:no-repeat;font-size:62.5%;color:#6f7c82;font-family:'Whitney SSm A','Whitney SSm B',Helvetica,Arial;font-weight:400;font-style:normal;overflow-x:hidden;padding:0}a{color:#008cdd;text-decoration:none}a span.arrow{color:#008cdd}a:hover,a:hover span.arrow{color:#292e31}a.arrow,a span.arrow{display:inline-block}a.arrow:after,a span.arrow:after{content:"";display:inline-block;width:5px;height:7px;background-image:url("/img/link_arrows/blue.png");position:relative;top:-1px;margin:0 0 0 6px}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){a.arrow:after,a span.arrow:after{background-image:url("/img/link_arrows/blue@2x.png");-webkit-background-size:10px 7px;-moz-background-size:10px 7px;background-size:10px 7px}}a.arrow:hover:after,a:hover span.arrow:after{background-position:-5px 0}h1{font-size:3.2em;line-height:1.3em;font-weight:300;color:#292e31}h2{font-size:2.4em;font-weight:300;color:#292e31}h3{font-size:1.6em;color:#292e31;font-weight:500;line-height:1.4em;margin-bottom:.2em}p{font-size:1.6em;line-height:1.5em;padding:0;margin:0 0 1em}strong{font-weight:500}div#main{padding:0 10px}.inner-col,.block{margin:0 auto;width:952px}.block{background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.05);-webkit-border-radius:5px;border-radius:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}template{display:none}iframe[name='google_conversion_frame']{height:0 !important;width:0 !important;line-height:0 !important;font-size:0 !important;float:left}@media screen and (max-width:1012px){html.tablet h1{font-size:2.8em}html.tablet h2{font-size:2em}html.tablet h3{font-size:1.4em}html.tablet p{font-size:1.4em}html.tablet div#main{min-width:748px}html.tablet .inner-col,html.tablet .block{width:748px}}@media screen and (max-width:479px){html.mobile body{font-size:14px}html.mobile h1{font-size:1.6em;font-weight:500}html.mobile h2{font-size:1.4em;font-weight:500}html.mobile p{font-size:1.1em}html.mobile div#main{min-width:0;overflow:hidden}html.mobile .inner-col,html.mobile .block{width:auto}}div#grid{overflow:hidden;display:none;position:fixed;top:0;bottom:0;z-index:9000;pointer-events:none;width:952px;left:50%;margin-left:-476px;background:rgba(255,0,234,0.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1012px){div#grid{width:748px;margin-left:-374px}}div#grid div{position:absolute;top:0;bottom:0;background:rgba(255,0,234,0.1);border-left:1px solid rgba(255,0,234,0.5);border-right:1px solid rgba(255,0,234,0.5);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:61px}div#grid div:nth-child(1){left:0}div#grid div:nth-child(2){left:81px}div#grid div:nth-child(3){left:162px}div#grid div:nth-child(4){left:243px}div#grid div:nth-child(5){left:324px}div#grid div:nth-child(6){left:405px}div#grid div:nth-child(7){left:486px}div#grid div:nth-child(8){left:567px}div#grid div:nth-child(9){left:648px}div#grid div:nth-child(10){left:729px}div#grid div:nth-child(11){left:810px}div#grid div:nth-child(12){left:891px}@media screen and (max-width:1012px){div#grid div{width:37px}div#grid div:nth-child(1){left:41px}div#grid div:nth-child(2){left:98px}div#grid div:nth-child(3){left:155px}div#grid div:nth-child(4){left:212px}div#grid div:nth-child(5){left:269px}div#grid div:nth-child(6){left:326px}div#grid div:nth-child(7){left:383px}div#grid div:nth-child(8){left:440px}div#grid div:nth-child(9){left:497px}div#grid div:nth-child(10){left:554px}div#grid div:nth-child(11){left:611px}div#grid div:nth-child(12){left:668px}}header#main-header{position:relative;z-index:9000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:1.2em}header#main-header div.inner-col{height:48px;border-bottom:1px solid rgba(49,78,95,0.075)}header#main-header nav{position:relative}header#main-header h1{width:63px;height:27px;overflow:hidden;text-indent:100%;margin:0 0 0 -1px;position:absolute;z-index:10;top:10px}header#main-header h1 a{display:block;position:relative;width:100%;height:100%;background-image:url("/img/navigation/logo.png?2");background-repeat:no-repeat}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header#main-header h1 a{background-image:url("/img/navigation/logo@2x.png?2");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header#main-header h1 a:hover{opacity:.8;-ms-filter:"alpha(opacity=80)";-webkit-filter:alpha(opacity=80);-moz-filter:alpha(opacity=80);-ms-filter:alpha(opacity=80);-o-filter:alpha(opacity=80);filter:alpha(opacity=80)}header#main-header ul{margin:0;padding:16px 0 0 0}header#main-header ul.pages{margin-left:73px}header#main-header ul.external{position:absolute;right:0;top:-5px}header#main-header li{list-style-type:none;padding:0;margin:0;display:inline;margin-right:0}header#main-header li.home{display:none}header#main-header a,header#main-header li.more>span{color:#6f7c82;text-decoration:none;font-weight:500}header#main-header a:hover,header#main-header li.more>span:hover{color:#292e31}header#main-header li a,header#main-header li.more span{padding:10px 8px}header#main-header li.button{margin-right:0;margin-left:8px}header#main-header li.button a{display:inline-block;height:24px;line-height:24px;padding:0 12px;-webkit-border-radius:14px;border-radius:14px;border:1px solid #d8dee3}header#main-header li.button a:active{background:rgba(216,222,227,0.1)}header#main-header li.more{position:relative}header#main-header li.more span{position:relative;padding-right:25px;cursor:pointer}header#main-header li.more span:after{content:"";position:absolute;top:50%;right:10px;margin-top:-1px;width:7px;height:4px;background-image:url("/img/navigation/arrow.png");background-repeat:no-repeat}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header#main-header li.more span:after{background-image:url("/img/navigation/arrow@2x.png");-webkit-background-size:21px 4px;-moz-background-size:21px 4px;background-size:21px 4px}}header#main-header li.more span:hover:after{background-position:-7px 0}header#main-header ul ul{display:none;top:30px;left:-4px;margin:0;padding:0;z-index:9000;position:absolute;background:#fff;-webkit-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 8px 13px rgba(0,0,0,0.36),0 0 0 1px rgba(0,0,0,0.06);box-shadow:0 8px 13px rgba(0,0,0,0.36),0 0 0 1px rgba(0,0,0,0.06);width:123px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-moz-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-o-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-ms-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-webkit-transform-origin:29px -10px;-moz-transform-origin:29px -10px;-o-transform-origin:29px -10px;-ms-transform-origin:29px -10px;transform-origin:29px -10px;-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header#main-header ul ul a{display:block;line-height:1.45em;padding:5px 15px;-webkit-font-smoothing:subpixel-antialiased;font-weight:500;color:#6f7c82 !important}header#main-header ul ul a:hover{color:#292e31 !important}header#main-header ul ul a.new::after{content:"NEW";display:inline-block;position:relative;height:15px;padding:0 3px;margin-left:5px;-webkit-border-radius:4px;border-radius:4px;background:#64bd2e;background-image:-webkit-linear-gradient(#64bd2e,#50a91a);background-image:-moz-linear-gradient(#64bd2e,#50a91a);background-image:-o-linear-gradient(#64bd2e,#50a91a);background-image:-ms-linear-gradient(#64bd2e,#50a91a);background-image:linear-gradient(#64bd2e,#50a91a);-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.07);box-shadow:0 1px 0 rgba(0,0,0,0.07);font-size:9px;line-height:15px;color:#fff}header#main-header ul ul li{display:block;margin:0}header#main-header ul ul li:first-child a{padding-top:15px}header#main-header ul ul li:last-child a{padding-bottom:15px}header#main-header ul ul li.separator:before{content:"";display:block;height:1px;background:rgba(0,0,0,0.05);margin:7.5px 15px}header#main-header ul ul:before{content:"";position:absolute;display:block;width:37px;height:12px;top:-12px;left:10px;background-image:url("/img/popover/arrow_top.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header#main-header ul ul:before{background-image:url("/img/popover/arrow_top@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header#main-header ul ul.hidden-animation-state{opacity:0;-ms-filter:"alpha(opacity=0)";-webkit-filter:alpha(opacity=0);-moz-filter:alpha(opacity=0);-ms-filter:alpha(opacity=0);-o-filter:alpha(opacity=0);filter:alpha(opacity=0);-webkit-transform:scale(0);-moz-transform:scale(0);-o-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}header#main-header a.toggle-search{position:absolute;overflow:hidden;text-indent:100%;top:0;bottom:0;right:0;margin:auto 0;width:13px;height:13px;background-image:url("/img/search/magnifying_glass.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header#main-header a.toggle-search{background-image:url("/img/search/magnifying_glass@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header#main-header.transparent{text-shadow:0 1px 2px rgba(0,0,0,0.2)}header#main-header.transparent div.inner-col{border-bottom:1px solid rgba(255,255,255,0.05)}header#main-header.transparent h1{-webkit-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-moz-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-ms-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-o-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}header#main-header.transparent h1 a{background-image:url("/img/navigation/logo-white.png?1");opacity:.85;-ms-filter:"alpha(opacity=85)";-webkit-filter:alpha(opacity=85);-moz-filter:alpha(opacity=85);-ms-filter:alpha(opacity=85);-o-filter:alpha(opacity=85);filter:alpha(opacity=85)}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header#main-header.transparent h1 a{background-image:url("/img/navigation/logo-white@2x.png?1");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header#main-header.transparent h1 a:hover{opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header#main-header.transparent ul.pages li a,header#main-header.transparent ul.external li a,header#main-header.transparent li.more span{color:rgba(255,255,255,0.7)}header#main-header.transparent ul.pages li a:hover,header#main-header.transparent ul.external li a:hover,header#main-header.transparent li.more span:hover{color:#fff}header#main-header.transparent li.more span:after{background-position:-14px 0 !important;opacity:.5;-ms-filter:"alpha(opacity=50)";-webkit-filter:alpha(opacity=50);-moz-filter:alpha(opacity=50);-ms-filter:alpha(opacity=50);-o-filter:alpha(opacity=50);filter:alpha(opacity=50);-webkit-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-moz-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-ms-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-o-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}header#main-header.transparent li.more span:hover:after{opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none;-webkit-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-moz-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-ms-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-o-filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}header#main-header.transparent ul.pages ul{text-shadow:none}header#main-header.transparent ul.pages ul a:hover{color:#292e31}header#main-header.transparent li.button a{border-color:rgba(255,255,255,0.5)}html.mobile header#main-header.transparent div.mobile-nav-button{background-image:url("/img/navigation/mobile/nav-white.png");opacity:.68;-ms-filter:"alpha(opacity=68)";-webkit-filter:alpha(opacity=68);-moz-filter:alpha(opacity=68);-ms-filter:alpha(opacity=68);-o-filter:alpha(opacity=68);filter:alpha(opacity=68)}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){html.mobile header#main-header.transparent div.mobile-nav-button{background-image:url("/img/navigation/mobile/nav-white@2x.png");-webkit-background-size:23px 20px;-moz-background-size:23px 20px;background-size:23px 20px}}html#features header#main-header li.features a{color:#b3babe;cursor:default}html#pricing header#main-header li.pricing a{color:#b3babe;cursor:default}html.mobile header#main-header div.mobile-nav-button{display:none;position:absolute;right:-10px;top:-3px;bottom:0;width:90px;background-image:url("/img/navigation/mobile/nav.png");background-position:57px 17px;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){html.mobile header#main-header div.mobile-nav-button{background-image:url("/img/navigation/mobile/nav@2x.png");-webkit-background-size:23px 20px;-moz-background-size:23px 20px;background-size:23px 20px}}@media screen and (max-width:479px){html.mobile header#main-header div.mobile-nav-button{display:block}html.mobile header#main-header nav{display:none;position:absolute;top:0;left:0;bottom:0;overflow:scroll;-webkit-overflow-scrolling:touch;padding:0;z-index:10000;background:#24282b;-webkit-box-shadow:inset 1px 0 0 0 rgba(0,0,0,0.3);box-shadow:inset 1px 0 0 0 rgba(0,0,0,0.3);-webkit-backface-visibility:hidden}html.mobile header#main-header ul{display:block;position:relative !important;top:auto !important;left:auto !important;right:auto !important;margin:0 !important;padding:0}html.mobile header#main-header ul li{display:block;margin:0 !important}html.mobile header#main-header ul li.home{display:block}html.mobile header#main-header ul li.button{margin-left:auto}html.mobile header#main-header ul li.button a{-webkit-border-radius:0;border-radius:0;border:0;background:0;height:auto}html.mobile header#main-header ul li.separator:before{display:none !important}html.mobile header#main-header ul a,html.mobile header#main-header ul ul a,html.mobile header#main-header ul ul a:hover{padding:5px 20px !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-family:'Whitney SSm A','Whitney SSm B',Helvetica,Arial;font-weight:500;color:#fff !important;line-height:3em !important;border-top:1px solid rgba(255,255,255,0.05);display:block;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased !important}html.mobile header#main-header ul a.active,html.mobile header#main-header ul ul a.active,html.mobile header#main-header ul ul a:hover.active{background:rgba(0,0,0,0.3)}html.mobile header#main-header ul.external li:nth-child(2) a{border-bottom:1px solid rgba(255,255,255,0.05)}html.mobile header#main-header ul.pages>li:first-child a{border-top:0}html.mobile header#main-header ul ul{display:block;z-index:9000;position:absolute;background:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;padding:0;width:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html.mobile header#main-header ul ul:before{display:none}html.mobile header#main-header ul li.more span{display:none}}html.mobile .nav-animatable{-webkit-transition:-webkit-transform 350ms cubic-bezier(0.225,0.5,0.165,1) !important;-moz-transition:-moz-transform 350ms cubic-bezier(0.225,0.5,0.165,1) !important;-o-transition:-o-transform 350ms cubic-bezier(0.225,0.5,0.165,1) !important;-ms-transition:-ms-transform 350ms cubic-bezier(0.225,0.5,0.165,1) !important;transition:transform 350ms cubic-bezier(0.225,0.5,0.165,1) !important}html.mobile body.is-animating{pointer-events:none}html.mobile body.nav-shown{overflow:hidden}html.mobile body.nav-shown header#main-header nav{display:block}html.mobile body.nav-shown .nav-animation-element{pointer-events:none}a.button,strong.button,button.button{display:inline-block;text-decoration:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:6px;border-radius:6px;color:#6f7c82;border:1px solid #d8dee3}a.button span,strong.button span,button.button span{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;height:37px;line-height:37px;font-size:14px;padding:0 14px;-webkit-border-radius:5px;border-radius:5px}a.button:active,strong.button:active,button.button:active{background:rgba(216,222,227,0.2);outline:0}a.button:focus,strong.button:focus,button.button:focus{outline:0}a.button.default,strong.button.default,button.button.default{padding:1px;border:0;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.1);background:#008cdd;background:-webkit-linear-gradient(#489dce,#1272ac);background:-moz-linear-gradient(#489dce,#1272ac);background:-o-linear-gradient(#489dce,#1272ac);background:-ms-linear-gradient(#489dce,#1272ac);background:linear-gradient(#489dce,#1272ac);-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.15);box-shadow:0 1px 0 rgba(0,0,0,0.15)}a.button.default span,strong.button.default span,button.button.default span{background:-webkit-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-moz-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-o-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-ms-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd)}a.button.loading,strong.button.loading,button.button.loading{color:#818890;text-shadow:none;background:#c1c5ca;-webkit-box-shadow:none;box-shadow:none}a.button.loading span,strong.button.loading span,button.button.loading span{background:#d9dbde}a.button.default:active,button.button.default:active,strong.button.default:active,a:active strong.button{background:#0f6fab}a.button.default:active span,button.button.default:active span,strong.button.default:active span,a:active strong.button span{background:#168eda}footer#main-footer.hidden{display:none}footer#main-footer{position:relative;margin-top:20px;padding-bottom:60px;color:#b0bfc7;font-size:1.2em}@media screen and (max-width:479px){footer#main-footer{font-size:1em;text-align:center;padding-bottom:20px}}footer#main-footer a{color:#b0bfc7;cursor:pointer}footer#main-footer a:hover{color:#678494}footer#main-footer ul{display:inline;margin:0;padding:0}@media screen and (max-width:479px){footer#main-footer ul{display:block;margin-top:1em;padding:1em 0;border-top:1px solid rgba(192,199,205,0.3)}}footer#main-footer ul li{list-style-type:none;padding:0;margin:0 10px 0 0;display:inline}@media screen and (max-width:479px){footer#main-footer ul li{margin:0 5px 0 0;opacity:.5;-ms-filter:"alpha(opacity=50)";-webkit-filter:alpha(opacity=50);-moz-filter:alpha(opacity=50);-ms-filter:alpha(opacity=50);-o-filter:alpha(opacity=50);filter:alpha(opacity=50)}}footer#main-footer div.country-selector{position:relative;display:inline-block;border-right:1px solid rgba(49,78,95,0.15);padding-right:13px;margin-right:10px}@media screen and (max-width:479px){footer#main-footer div.country-selector{border:0}}footer#main-footer div.country-selector strong{font-weight:normal}footer#main-footer div.country-selector a.select{font-weight:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}footer#main-footer div.country-selector a.select img{vertical-align:middle;margin-top:-4px;margin-right:3px}footer#main-footer div.country-selector ul{display:none;left:-15px;text-align:left;border:0;z-index:9000;position:absolute;background:#fff;-webkit-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 8px 13px rgba(0,0,0,0.36),0 0 0 1px rgba(0,0,0,0.06);box-shadow:0 8px 13px rgba(0,0,0,0.36),0 0 0 1px rgba(0,0,0,0.06);width:199px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-moz-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-o-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-ms-transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);transition:all 300ms cubic-bezier(0.34,1.61,0.7,1);-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}footer#main-footer div.country-selector ul a{position:relative;display:block;line-height:1em;padding:5px 15px;color:#6f7c82;font-weight:500}footer#main-footer div.country-selector ul a em{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-transform:uppercase;color:#c0c7cd;font-size:11px;font-style:normal;-webkit-border-radius:4px;border-radius:4px;text-align:center;border:1px solid rgba(192,199,205,0.3);padding:0 2px;margin-left:2px}footer#main-footer div.country-selector ul a:hover{color:#292e31}footer#main-footer div.country-selector ul a.selected{padding-right:37px}footer#main-footer div.country-selector ul a.selected:after{content:"";display:block;width:13px;height:12px;background-image:url("/img/footer/check.png");position:absolute;right:15px;margin-top:-14px}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){footer#main-footer div.country-selector ul a.selected:after{background-image:url("/img/footer/check@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}footer#main-footer div.country-selector ul img{vertical-align:middle;margin-right:4px;position:relative;top:-1px}footer#main-footer div.country-selector ul li{display:block;margin:0}footer#main-footer div.country-selector ul li:first-child a{padding-top:15px}footer#main-footer div.country-selector ul li:last-child a{padding-bottom:15px}footer#main-footer div.country-selector ul li+li.beta:before,footer#main-footer div.country-selector ul li.notify-signup-link:before{content:'';display:block;height:1px;background:rgba(192,199,205,0.2);margin:10px 16px}footer#main-footer div.country-selector ul li.beta+li.beta:before{display:none}footer#main-footer div.country-selector ul li.notify-signup-link a{padding-top:3px;line-height:1.6em;color:#a8b1b5}footer#main-footer div.country-selector ul:before{content:"";position:absolute;display:block;width:47px;height:23px;bottom:-23px;left:3px;background-image:url("/img/popover/arrow_bottom.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){footer#main-footer div.country-selector ul:before{background-image:url("/img/popover/arrow_bottom@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}footer#main-footer div.country-selector ul.hidden-animation-state{opacity:0;-ms-filter:"alpha(opacity=0)";-webkit-filter:alpha(opacity=0);-moz-filter:alpha(opacity=0);-ms-filter:alpha(opacity=0);-o-filter:alpha(opacity=0);filter:alpha(opacity=0);-webkit-transform:scale(0);-moz-transform:scale(0);-o-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}footer#main-footer p{display:inline;float:right;position:relative;top:-1px;padding:0;margin:0;font-size:1em}@media screen and (max-width:479px){footer#main-footer p{display:none}}html#home{background:#f8f9fb}aside.update{background:#fff;border-bottom:1px solid rgba(49,78,95,0.12);margin-left:-10px;margin-right:-10px}aside.update strong{color:#292e31}aside.update strong:before{content:'';display:inline-block;width:10px;height:16px;background-image:url("/img/home/banner/phone.png");vertical-align:middle;margin-right:7px;position:relative;top:-2px}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){aside.update strong:before{background-image:url("/img/home/banner/phone@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}aside.update p{margin:0 auto;text-align:center;font-size:1.4em;padding:0}@media screen and (max-width:479px){aside.update p{width:auto;font-size:1.1em;padding-right:10px;padding-left:10px}}aside.update p a{color:#6f7c82;display:block;padding:1em 0}aside.update p a:hover span.arrow{text-decoration:underline}aside.update p a span.arrow{color:#008cdd}aside.update p a span.arrow:after{background-position:0 0}div.links{width:100%;display:table;border-bottom:1px solid #e6eaed;margin:0 auto}@media screen and (max-width:479px){div.links{display:block}}div.links section{display:table-cell;width:33.333%;text-align:center}@media screen and (max-width:479px){div.links section{display:block;width:auto}}div.links section a{display:block;color:#6f7c82;border:0 solid #e6eaed;padding:23px 0 25px;-webkit-transition:background 200ms ease;-moz-transition:background 200ms ease;-o-transition:background 200ms ease;-ms-transition:background 200ms ease;transition:background 200ms ease}@media screen and (min-height:750px){div.links section a{padding-top:38px;padding-bottom:40px}}@media screen and (max-width:1012px){div.links section a{padding-left:10px;padding-right:10px}}@media screen and (max-width:479px){div.links section a{padding-top:20px;padding-bottom:20px}}div.links section a:hover{background-color:rgba(14,60,86,0.04)}div.links section a:hover span.arrow{text-decoration:underline}div.links section a span.arrow{color:#008cdd}div.links section a span.arrow:after{background-position:0 0}div.links section:nth-child(1) a{border-left-width:1px}div.links section:nth-child(2) a{border-left-width:1px;border-right-width:1px}div.links section:nth-child(3) a{border-right-width:1px}@media screen and (max-width:479px){div.links section a{border-width:0 !important;border-top-width:1px !important}div.links section:first-child a{border-top:0}}div.links section h2,div.links section p{font-size:1.5em;line-height:1.55em;margin:0;padding:0}@media screen and (max-width:1012px){div.links section h2,div.links section p{font-size:1.4em}}@media screen and (max-width:479px){div.links section h2,div.links section p{font-size:1.1em}}div.links section h2{font-weight:500;padding-top:92px;background-repeat:no-repeat;background-position:50% 2px}@media screen and (max-width:479px){div.links section h2{padding-top:87px}}div.links section.all-features h2{background-image:url("/img/home/card.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){div.links section.all-features h2{background-image:url("/img/home/card@2x.png");-webkit-background-size:70px 70px;-moz-background-size:70px 70px;background-size:70px 70px}}div.links section.simple-pricing h2{background-image:url("/img/home/tag.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){div.links section.simple-pricing h2{background-image:url("/img/home/tag@2x.png");-webkit-background-size:70px 70px;-moz-background-size:70px 70px;background-size:70px 70px}}div.links section.web-mobile h2{background-image:url("/img/home/web_mobile.png");background-position:50% 0}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){div.links section.web-mobile h2{background-image:url("/img/home/web_mobile@2x.png");-webkit-background-size:77px 72px;-moz-background-size:77px 72px;background-size:77px 72px}}a.logos{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:25px 21px;height:85px;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-pack:distribute;-moz-box-pack:distribute;-o-box-pack:distribute;-ms-flex-pack:distribute;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-moz-box-align:center;-o-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-lines:multiple;-moz-box-lines:multiple;-o-box-lines:multiple;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-o-box-orient:horizontal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}@media screen and (max-width:1012px){a.logos{-webkit-box-pack:start;-moz-box-pack:start;-o-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}}@media screen and (max-width:479px){a.logos{zoom:1;display:block;text-align:center;-webkit-box-pack:none;-moz-box-pack:none;-o-box-pack:none;-ms-flex-pack:none;-webkit-justify-content:none;justify-content:none;padding:20px;height:auto}a.logos:before,a.logos:after{content:"";display:table}a.logos:after{clear:both}}a.logos img{width:100%;height:100%}@media screen and (max-width:1012px){a.logos img{height:auto}}@media screen and (max-width:479px){a.logos img{display:inline-block;max-width:100%;width:auto;margin:0;max-width:auto;max-height:auto;-webkit-box-flex:0;-moz-box-flex:0;-o-box-flex:0;box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none;vertical-align:middle}}a.logos span{position:relative;margin:0 10px;display:block;-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;box-flex:1;-webkit-flex:1 1;-ms-flex:1 1;flex:1 1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;opacity:.9;-ms-filter:"alpha(opacity=90)";-webkit-filter:alpha(opacity=90);-moz-filter:alpha(opacity=90);-ms-filter:alpha(opacity=90);-o-filter:alpha(opacity=90);filter:alpha(opacity=90)}a.logos span:first-child{margin-left:0}a.logos span:last-child{margin-right:0}a.logos span.kickstarter{max-width:164px;max-height:20px;top:-1px}a.logos span.twitter{max-width:34px;max-height:27px;top:-2px}a.logos span.instacart{max-width:140px;max-height:25px;top:-3px}a.logos span.shopify{max-width:120px;max-height:35px;top:-2px}a.logos span.pinterest{max-width:119px;max-height:29px;top:-2px}a.logos span.lyft{max-width:43px;max-height:32px;min-width:38px;min-height:28px;top:1px}@media screen and (max-width:1012px){a.logos span{width:100%;height:auto}}@media screen and (max-width:479px){a.logos span{display:block;width:50% !important;max-width:none !important;max-height:none !important;min-width:none !important;min-height:none !important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;-webkit-box-flex:0;-moz-box-flex:0;-o-box-flex:0;box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 20px;height:50px;line-height:40px;position:relative}a.logos span.twitter img{max-width:34px;max-height:27px}a.logos span.lyft img{max-width:43px;max-height:32px}}footer#main-footer{margin-top:0}@media screen and (max-width:479px){footer#main-footer{padding-top:12px}}footer#main-footer div.inner-col{padding-top:15px;border-top:1px solid #e6eaed}footer#main-footer div.country-selector{border-color:#e6eaed}header.hero{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;height:500px;margin-top:-49px;padding-top:49px;margin-left:-10px;margin-right:-10px}@media screen and (max-width:1012px){header.hero div.slides{-webkit-backface-visibility:hidden;-webkit-perspective:1000}}@media screen and (max-width:479px){header.hero{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header.hero div.slides{-webkit-backface-visibility:visible !important;-webkit-perspective:none !important}}header.hero:after{content:"";position:absolute;z-index:100;left:0;right:0;height:1px;background:rgba(0,0,0,0.07);top:0}header.hero:after{top:auto;bottom:0}header.hero.is-animating *{pointer-events:none}header.hero.is-animating div.slides{-webkit-backface-visibility:hidden;-webkit-perspective:1000}header.hero div.inner-col{position:relative;min-height:100%;z-index:40}header.hero div.text{position:absolute;width:50.7%;top:0;bottom:0;margin:auto 0;text-shadow:0 1px 2px rgba(0,0,0,0.2);-webkit-font-smoothing:antialiased}@media screen and (max-width:479px){header.hero div.text{width:auto;position:relative;height:auto !important;text-align:center}}header.hero h1{color:#fff;margin:0;font-weight:400;margin-top:-16px}@media screen and (max-width:479px){header.hero h1{margin-top:1.3em;padding-left:20px;padding-right:20px}}header.hero p.t{font-size:2em;line-height:1.4em;color:#fff;color:rgba(255,255,255,0.8);margin:.5em 0 1em;width:96%}header.hero p.t strong{color:#fff;border-bottom:1px solid rgba(255,255,255,0.2)}header.hero p.t a{color:#fff;font-weight:500;border-bottom:1px solid rgba(255,255,255,0.3)}@media screen and (max-width:1012px){header.hero p.t{font-size:1.8em;width:100%}}@media screen and (max-width:479px){header.hero p.t{font-size:1.1em;padding:0 20px .2em;width:auto}}header.hero p.button-group{display:inline-block}@media screen and (max-width:479px){header.hero p.button-group{margin-bottom:2.2em}}header.hero a.button.default{background:-webkit-linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.35));background:-moz-linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.35));background:-o-linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.35));background:-ms-linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.35));background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.35));-webkit-font-smoothing:subpixel-antialiased}header.hero a.button.default span{height:37px;line-height:37px}header.hero a.button.secondary{color:#fff;font-weight:500;border-color:rgba(255,255,255,0.5);margin-left:.5em}header.hero a.button.secondary span{height:35px;line-height:35px}header.hero a.button.secondary:active span{background:rgba(21,33,108,0.1)}header.hero div.slides{position:absolute;left:0;right:0;top:0;bottom:0;z-index:5}header.hero div.slides.animatable{-webkit-transition:-webkit-transform 770ms cubic-bezier(0.225,0.5,0.165,1);-moz-transition:-moz-transform 770ms cubic-bezier(0.225,0.5,0.165,1);-o-transition:-o-transform 770ms cubic-bezier(0.225,0.5,0.165,1);-ms-transition:-ms-transform 770ms cubic-bezier(0.225,0.5,0.165,1);transition:transform 770ms cubic-bezier(0.225,0.5,0.165,1)}header.hero section{display:none;position:absolute;margin-top:49px;left:-70px;right:-70px;padding-right:70px;padding-left:70px;top:0;bottom:0;overflow:hidden;z-index:5}@media screen and (max-width:1012px){header.hero section{left:-150px;right:-150px;padding-right:150px;padding-left:150px}}header.hero div.backgrounds div{position:absolute;left:0;right:0;top:0;bottom:0;z-index:1;display:none;opacity:0;-ms-filter:"alpha(opacity=0)";-webkit-filter:alpha(opacity=0);-moz-filter:alpha(opacity=0);-ms-filter:alpha(opacity=0);-o-filter:alpha(opacity=0);filter:alpha(opacity=0);-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}header.hero div.backgrounds div.animatable{-webkit-transition:opacity 616ms ease;-moz-transition:opacity 616ms ease;-o-transition:opacity 616ms ease;-ms-transition:opacity 616ms ease;transition:opacity 616ms ease;z-index:2;display:block}header.hero div.backgrounds div.animate-in{opacity:1 !important;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header.hero div.backgrounds div.manual-opacity{display:block;z-index:2}header.hero div.backgrounds div.current{display:block;z-index:1;opacity:1 !important;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header.hero section.mobile div.img{position:absolute;right:-7px;top:50%;margin-top:-238px;width:430px;height:488px;background-image:url("/img/home/heros/mobile/phones.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.mobile div.img{background-image:url("/img/home/heros/mobile/phones@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:1012px){header.hero section.mobile div.img{right:-86px}}@media screen and (max-width:479px){header.hero section.mobile div.img{display:block;position:relative;top:auto;right:auto;left:50%;margin-top:0;margin-left:-215px}}header.hero section.mobile div.text{width:51%;height:228px}@media screen and (max-width:1012px){header.hero section.mobile div.text{height:200px}}@media screen and (max-width:479px){header.hero section.mobile div.text{width:auto}}header.hero div.mobile-background{background:#1e8ecf;background-image:-webkit--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-webkit--webkit-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-webkit--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-webkit--moz-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-webkit--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-webkit--o-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-webkit--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-webkit--ms-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-webkit-linear-gradient(108deg,#26d0ce,#1a2980 90%);background-image:-moz--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-moz--webkit-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-moz--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-moz--moz-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-moz--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-moz--o-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-moz--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-moz--ms-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-moz-linear-gradient(108deg,#26d0ce,#1a2980 90%);background-image:-ms--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-ms--webkit-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-ms--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-ms--moz-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-ms--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-ms--o-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-ms--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-ms--ms-linear-gradient(342deg,#26d0ce,#1a2980 90%);background-image:-ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.26)),-ms-linear-gradient(108deg,#26d0ce,#1a2980 90%)}header.hero section.desktop div.text{height:229px}@media screen and (max-width:1012px){header.hero section.desktop div.text{height:222px}}header.hero section.desktop div.img{position:absolute;top:0;bottom:0;margin:auto 0;left:525px;width:873px;height:488px;background-image:url("/img/home/heros/web/tablet-transparent.png?2")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.desktop div.img{background-image:url("/img/home/heros/web/tablet-transparent@2x.png?2");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.desktop div.img:after{content:"";display:block;width:622px;height:389px;background-image:url("/img/home/heros/web/tablet-content.jpg");position:absolute;top:38px;left:141px;z-index:-1}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.desktop div.img:after{background-image:url("/img/home/heros/web/tablet-content@2x.jpg");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:1012px){header.hero section.desktop div.img{left:397px}}@media screen and (max-width:479px){header.hero section.desktop div.img{position:relative;left:auto;top:auto;left:50%;margin:0;margin-left:-436.5px}}header.hero div.desktop-background{background:#0f1b58;background-image:-webkit--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--webkit-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-webkit--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--moz-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-webkit--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--o-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-webkit--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--ms-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit-linear-gradient(108deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-moz--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--webkit-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-moz--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--moz-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-moz--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--o-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-moz--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--ms-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz-linear-gradient(108deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-ms--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--webkit-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-ms--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--moz-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-ms--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--o-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-ms--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--ms-linear-gradient(342deg,#efb676,#e0a681 10%,#0f1b58 90%);background-image:-ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms-linear-gradient(108deg,#efb676,#e0a681 10%,#0f1b58 90%)}header.hero section.international div.text{width:670px;left:0;right:0;margin:0 auto;bottom:60px;top:auto;text-align:center;color:rgba(255,255,255,0.9)}header.hero section.international div.text p.t{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width:1012px){header.hero section.international div.text{bottom:70px}}@media screen and (max-width:479px){header.hero section.international div.text{width:auto;left:auto;right:auto;bottom:auto}}header.hero section.international div.text .button.default{background:#008cdd;background:-webkit-linear-gradient(#489dce,#1272ac);background:-moz-linear-gradient(#489dce,#1272ac);background:-o-linear-gradient(#489dce,#1272ac);background:-ms-linear-gradient(#489dce,#1272ac);background:linear-gradient(#489dce,#1272ac);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.4);box-shadow:0 1px 2px rgba(0,0,0,0.4)}header.hero section.international div.text .button.default span{background:-webkit-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-moz-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-o-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-ms-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd)}header.hero section.international div.text .button.default:active{background:#0f6fab}header.hero section.international div.text .button.default:active span{background:#168eda}header.hero section.international div.text .button.secondary{border:1px solid #fff;color:#fff}header.hero section.international div.img{position:absolute;left:-96px;right:0;bottom:260px;margin:0 auto;width:1145px;height:399px;background-image:url("/img/home/heros/global/flags.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img{background-image:url("/img/home/heros/global/flags@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:1012px){header.hero section.international div.img{left:50%;margin-left:-572px}}@media screen and (max-width:479px){header.hero section.international div.img{position:relative;top:auto;bottom:auto;right:auto;left:50%;margin:0;margin-left:-318px}}header.hero section.international div.img.nordics{background:0}header.hero section.international div.img.nordics .flag{position:absolute}header.hero section.international div.img.nordics .flag.small{width:339px;height:220px;top:90px}header.hero section.international div.img.nordics .flag.small.left{left:52px}header.hero section.international div.img.nordics .flag.small.right{right:53px}header.hero section.international div.img.nordics .flag.large{width:834px;height:398px;left:155px;top:1px}header.hero section.international div.img.nordics .flag.small.FI{background-image:url("/img/home/heros/global/nordics/small-fi.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.small.FI{background-image:url("/img/home/heros/global/nordics/small-fi@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.small.SE{background-image:url("/img/home/heros/global/nordics/small-se.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.small.SE{background-image:url("/img/home/heros/global/nordics/small-se@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.small.NO{background-image:url("/img/home/heros/global/nordics/small-no.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.small.NO{background-image:url("/img/home/heros/global/nordics/small-no@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.small.DK{background-image:url("/img/home/heros/global/nordics/small-dk.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.small.DK{background-image:url("/img/home/heros/global/nordics/small-dk@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.large.FI{background-image:url("/img/home/heros/global/nordics/large-fi.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.large.FI{background-image:url("/img/home/heros/global/nordics/large-fi@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.large.SE{background-image:url("/img/home/heros/global/nordics/large-se.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.large.SE{background-image:url("/img/home/heros/global/nordics/large-se@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.large.NO{background-image:url("/img/home/heros/global/nordics/large-no.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.large.NO{background-image:url("/img/home/heros/global/nordics/large-no@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.international div.img.nordics .flag.large.DK{background-image:url("/img/home/heros/global/nordics/large-dk.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.international div.img.nordics .flag.large.DK{background-image:url("/img/home/heros/global/nordics/large-dk@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero div.international-background{background:#00396f;background-image:-webkit--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--webkit-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-webkit--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--moz-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-webkit--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--o-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-webkit--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--ms-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit-linear-gradient(108deg,#e5e9bf 10%,#00396f 90%);background-image:-moz--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--webkit-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-moz--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--moz-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-moz--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--o-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-moz--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz--ms-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz-linear-gradient(108deg,#e5e9bf 10%,#00396f 90%);background-image:-ms--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--webkit-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-ms--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--moz-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-ms--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--o-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-ms--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms--ms-linear-gradient(342deg,#e5e9bf 10%,#00396f 90%);background-image:-ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms-linear-gradient(108deg,#e5e9bf 10%,#00396f 90%)}header.hero section.currencies h1{font-size:3.2em}@media screen and (max-width:1012px){header.hero section.currencies h1{font-size:2.5em}}@media screen and (max-width:479px){header.hero section.currencies h1{font-size:1.6em;font-weight:500}}header.hero section.currencies div.text{width:730px;left:0;right:0;margin:0 auto;bottom:186px;top:auto;text-align:center;color:rgba(255,255,255,0.7)}header.hero section.currencies div.text p.t{width:100%}@media screen and (max-width:1012px){header.hero section.currencies div.text{bottom:70px}}@media screen and (max-width:479px){header.hero section.currencies div.text{width:auto;left:auto;right:auto;bottom:auto}}header.hero section.currencies div.text .button.default{background:#008cdd;background:-webkit-linear-gradient(#489dce,#1272ac);background:-moz-linear-gradient(#489dce,#1272ac);background:-o-linear-gradient(#489dce,#1272ac);background:-ms-linear-gradient(#489dce,#1272ac);background:linear-gradient(#489dce,#1272ac)}header.hero section.currencies div.text .button.default span{background:-webkit-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-moz-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-o-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:-ms-linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd);background:linear-gradient(#5db6e8,#168eda 85%,#168eda 90%,#1d93dd)}header.hero section.currencies div.text .button.default:active{background:#0f6fab}header.hero section.currencies div.text .button.default:active span{background:#168eda}header.hero section.currencies div.text .button.secondary{border:1px solid #fff;color:#fff;inset:0 1px 2px rgba(0,0,0,0.15)}header.hero section.currencies div.img{position:absolute;left:0;right:0;bottom:340px;margin:0 auto;width:645px;height:145px;background-image:url("/img/home/heros/currencies/currencies.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.currencies div.img{background-image:url("/img/home/heros/currencies/currencies@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:479px){header.hero section.currencies div.img{position:relative;top:auto;bottom:auto;right:auto;left:50%;margin:0;margin-left:-318px}}header.hero div.currencies-background{background:#00396f;background-image:-webkit--webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--webkit-linear-gradient(342deg,#4d5dcd 10%,#2d1245 90%);background-image:-webkit--moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--moz-linear-gradient(342deg,#4d5dcd 10%,#2d1245 90%);background-image:-webkit--o-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--o-linear-gradient(342deg,#4d5dcd 10%,#2d1245 90%);background-image:-webkit--ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit--ms-linear-gradient(342deg,#4d5dcd 10%,#2d1245 90%);background-image:-webkit-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-webkit-linear-gradient(108deg,#4d5dcd 10%,#2d1245 90%);xbackground-image:-moz-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-moz-linear-gradient(108deg,#e5e9bf 10%,#00396f 90%);xbackground-image:-ms-radial-gradient(closest-corner,rgba(16,47,70,0) 60%,rgba(16,47,70,0.2)),-ms-linear-gradient(108deg,#e5e9bf 10%,#00396f 90%)}header.hero section.checkout div.img{position:absolute;right:-35px;top:50%;margin-top:-248px;width:578px;height:488px;background-image:url("/img/home/heros/checkout/checkout-hero.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.checkout div.img{background-image:url("/img/home/heros/checkout/checkout-hero@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:1012px){header.hero section.checkout div.img{right:-211px;right:-190px}}@media screen and (max-width:479px){header.hero section.checkout div.img{display:block;position:relative;top:auto;right:auto;left:50%;margin-top:0;margin-left:-289px}}header.hero section.checkout div.text{width:400px;height:182px}@media screen and (max-width:1012px){header.hero section.checkout div.text{width:350px;height:160px}}@media screen and (max-width:479px){header.hero section.checkout div.text{width:auto;height:auto}}header.hero div.checkout-background{background:#0e153a;background-image:-webkit-radial-gradient(circle farthest-side at right bottom,#f8cdda,#1d2b64 80%,#0e153a);background-image:-moz-radial-gradient(circle farthest-side at right bottom,#f8cdda,#1d2b64 80%,#0e153a);background-image:-o-radial-gradient(circle farthest-side at right bottom,#f8cdda,#1d2b64 80%,#0e153a);background-image:-ms-radial-gradient(circle farthest-side at right bottom,#f8cdda,#1d2b64 80%,#0e153a);background-image:radial-gradient(circle farthest-side at right bottom,#f8cdda,#1d2b64 80%,#0e153a)}header.hero section.connect h1{width:300px}@media screen and (max-width:479px){header.hero section.connect h1{width:auto}}header.hero section.connect div.img{position:absolute;right:-60px;top:50%;margin-top:-300px;width:624px;height:600px;background-image:url("/img/home/heros/connect/phone.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.connect div.img{background-image:url("/img/home/heros/connect/phone@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}@media screen and (max-width:1012px){header.hero section.connect div.img{right:-211px;right:-190px}}@media screen and (max-width:479px){header.hero section.connect div.img{display:block;position:relative;top:auto;right:auto;left:50%;margin-top:0;margin-left:-312px}}header.hero section.connect div.img::before,header.hero section.connect div.img::after{content:"";position:absolute;height:310px;-webkit-animation:connect-hover 5s ease-in-out infinite alternate;-moz-animation:connect-hover 5s ease-in-out infinite alternate;-o-animation:connect-hover 5s ease-in-out infinite alternate;-ms-animation:connect-hover 5s ease-in-out infinite alternate;animation:connect-hover 5s ease-in-out infinite alternate}header.hero section.connect div.img::before{width:236px;left:18px;top:155px;background-image:url("/img/home/heros/connect/buyer.png")}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.connect div.img::before{background-image:url("/img/home/heros/connect/buyer@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.connect div.img::after{width:173px;right:18px;top:115px;background-image:url("/img/home/heros/connect/seller.png");-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;animation-delay:1.5s;z-index:-1}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.connect div.img::after{background-image:url("/img/home/heros/connect/seller@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero section.connect div.text{width:380px;height:228px}@media screen and (max-width:1012px){header.hero section.connect div.text{width:340px;height:200px}}@media screen and (max-width:479px){header.hero section.connect div.text{width:auto;height:auto}}header.hero div.connect-background{background:#1e1635;background:-webkit-linear-gradient(bottom right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);background:-moz-linear-gradient(bottom right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);background:-o-linear-gradient(bottom right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);background:-ms-linear-gradient(bottom right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);background:linear-gradient(to top left,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000)}header.hero section.relay h1{width:300px}@media screen and (max-width:479px){header.hero section.relay h1{width:auto}}header.hero section.relay div.img{position:absolute;right:0;top:50%;margin-top:-300px;width:550px;height:600px;background-image:url("/img/home/heros/relay/phone.png");background-position:bottom center;background-repeat:no-repeat}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.relay div.img{background-image:url("/img/home/heros/relay/phone@2x.png");-webkit-background-size:550px 400px;-moz-background-size:550px 400px;background-size:550px 400px}}@media screen and (max-width:1012px){header.hero section.relay div.img{right:-120px}}@media screen and (max-width:479px){header.hero section.relay div.img{display:block;position:relative;top:auto;right:auto;left:50%;margin-top:0;margin-left:-312px}}header.hero section.relay div.img .floaty{position:absolute;-webkit-animation:relay-hover 10s ease-in-out infinite alternate;-moz-animation:relay-hover 10s ease-in-out infinite alternate;-o-animation:relay-hover 10s ease-in-out infinite alternate;-ms-animation:relay-hover 10s ease-in-out infinite alternate;animation:relay-hover 10s ease-in-out infinite alternate;opacity:.9;-ms-filter:"alpha(opacity=90)";-webkit-filter:alpha(opacity=90);-moz-filter:alpha(opacity=90);-ms-filter:alpha(opacity=90);-o-filter:alpha(opacity=90);filter:alpha(opacity=90)}header.hero section.relay div.img .floaty.large{width:75px;height:75px;-webkit-border-radius:10px;border-radius:10px}header.hero section.relay div.img .floaty.medium{width:65px;height:65px;-webkit-border-radius:9px;border-radius:9px}header.hero section.relay div.img .floaty.small{width:45px;height:45px;-webkit-border-radius:7px;border-radius:7px}header.hero section.relay div.img .floaty.tiny{width:35px;height:35px;-webkit-border-radius:6px;border-radius:6px}header.hero section.relay div.img .floaty.icon{background-color:#fff;background-image:url("/img/home/heros/relay/icons.png");-webkit-box-shadow:0 3px 10px rgba(126,30,55,0.2);box-shadow:0 3px 10px rgba(126,30,55,0.2);opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero section.relay div.img .floaty.icon{background-image:url("/img/home/heros/relay/icons@2x.png");-webkit-background-size:240px 160px;-moz-background-size:240px 160px;background-size:240px 160px}}header.hero section.relay div.img .floaty.blue{background:#434682}header.hero section.relay div.img .floaty.purple{background:#be5a7b}header.hero section.relay div.img .floaty1{left:200px;top:64px;-webkit-animation-delay:-8s;-moz-animation-delay:-8s;-o-animation-delay:-8s;-ms-animation-delay:-8s;animation-delay:-8s;background-position:0 0}header.hero section.relay div.img .floaty2{left:430px;top:115px;-webkit-animation-delay:-1s;-moz-animation-delay:-1s;-o-animation-delay:-1s;-ms-animation-delay:-1s;animation-delay:-1s;background-position:-80px 0}header.hero section.relay div.img .floaty3{left:265px;top:128px;-webkit-animation-delay:0;-moz-animation-delay:0;-o-animation-delay:0;-ms-animation-delay:0;animation-delay:0;background-position:0 -80px}header.hero section.relay div.img .floaty4{left:197px;top:212px;-webkit-animation-delay:-5s;-moz-animation-delay:-5s;-o-animation-delay:-5s;-ms-animation-delay:-5s;animation-delay:-5s;background-position:-160px 0}header.hero section.relay div.img .floaty5{left:285px;top:253px;-webkit-animation-delay:-9s;-moz-animation-delay:-9s;-o-animation-delay:-9s;-ms-animation-delay:-9s;animation-delay:-9s;background-position:-80px -80px}header.hero section.relay div.img .floaty6{left:386px;top:250px;-webkit-animation-delay:-3s;-moz-animation-delay:-3s;-o-animation-delay:-3s;-ms-animation-delay:-3s;animation-delay:-3s;background-position:-160px -80px}header.hero section.relay div.img .floaty7{left:318px;top:103px;-webkit-animation-delay:-8s;-moz-animation-delay:-8s;-o-animation-delay:-8s;-ms-animation-delay:-8s;animation-delay:-8s}header.hero section.relay div.img .floaty8{left:165px;top:184px;-webkit-animation-delay:-7s;-moz-animation-delay:-7s;-o-animation-delay:-7s;-ms-animation-delay:-7s;animation-delay:-7s}header.hero section.relay div.img .floaty9{left:322px;top:217px;-webkit-animation-delay:-6s;-moz-animation-delay:-6s;-o-animation-delay:-6s;-ms-animation-delay:-6s;animation-delay:-6s}header.hero section.relay div.img .floaty10{left:460px;top:300px;-webkit-animation-delay:-2s;-moz-animation-delay:-2s;-o-animation-delay:-2s;-ms-animation-delay:-2s;animation-delay:-2s}header.hero section.relay div.img .floaty11{left:150px;top:424px;-webkit-animation-delay:0;-moz-animation-delay:0;-o-animation-delay:0;-ms-animation-delay:0;animation-delay:0}header.hero section.relay div.img .floaty12{left:355px;top:27px;-webkit-animation-delay:-9s;-moz-animation-delay:-9s;-o-animation-delay:-9s;-ms-animation-delay:-9s;animation-delay:-9s}header.hero section.relay div.img .floaty13{left:124px;top:108px;-webkit-animation-delay:-1s;-moz-animation-delay:-1s;-o-animation-delay:-1s;-ms-animation-delay:-1s;animation-delay:-1s}header.hero section.relay div.img .floaty14{left:420px;top:169px;-webkit-animation-delay:-4s;-moz-animation-delay:-4s;-o-animation-delay:-4s;-ms-animation-delay:-4s;animation-delay:-4s}header.hero section.relay div.img .floaty15{left:387px;top:360px;-webkit-animation-delay:-2s;-moz-animation-delay:-2s;-o-animation-delay:-2s;-ms-animation-delay:-2s;animation-delay:-2s}header.hero section.relay div.text{width:380px;height:188px}@media screen and (max-width:1012px){header.hero section.relay div.text{width:340px;height:160px}}@media screen and (max-width:479px){header.hero section.relay div.text{width:auto;height:auto}}header.hero div.relay-background{background:#5f357d;background:-webkit-radial-gradient(circle farthest-corner at right bottom,#ffd08a 0,#ffa376 28%,#d26578 52%,#682a84 79%,#241668 100%);background:-moz-radial-gradient(circle farthest-corner at right bottom,#ffd08a 0,#ffa376 28%,#d26578 52%,#682a84 79%,#241668 100%);background:-o-radial-gradient(circle farthest-corner at right bottom,#ffd08a 0,#ffa376 28%,#d26578 52%,#682a84 79%,#241668 100%);background:-ms-radial-gradient(circle farthest-corner at right bottom,#ffd08a 0,#ffa376 28%,#d26578 52%,#682a84 79%,#241668 100%);background:radial-gradient(circle farthest-corner at right bottom,#ffd08a 0,#ffa376 28%,#d26578 52%,#682a84 79%,#241668 100%)}header.hero nav{position:absolute;z-index:30;bottom:10px;left:0;right:0}@media screen and (max-width:479px){header.hero nav{display:none}}header.hero nav ul{padding:0;margin-top:0;text-align:center;font-size:0}header.hero nav li{list-style-type:none;display:inline-block}header.hero nav a{display:inline-block;overflow:hidden;cursor:pointer;-webkit-touch-callout:none;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);width:10px;height:10px;padding:5px;opacity:.55;-ms-filter:"alpha(opacity=55)";-webkit-filter:alpha(opacity=55);-moz-filter:alpha(opacity=55);-ms-filter:alpha(opacity=55);-o-filter:alpha(opacity=55);filter:alpha(opacity=55)}header.hero nav a:active{opacity:.8;-ms-filter:"alpha(opacity=80)";-webkit-filter:alpha(opacity=80);-moz-filter:alpha(opacity=80);-ms-filter:alpha(opacity=80);-o-filter:alpha(opacity=80);filter:alpha(opacity=80)}header.hero nav a.current{cursor:default;opacity:.55;-ms-filter:"alpha(opacity=55)";-webkit-filter:alpha(opacity=55);-moz-filter:alpha(opacity=55);-ms-filter:alpha(opacity=55);-o-filter:alpha(opacity=55);filter:alpha(opacity=55)}header.hero nav a.current svg circle:last-child{stroke-width:7.7px}header.hero nav.animatable svg circle:last-child{-webkit-transition:stroke-width 300ms ease-in-out;-moz-transition:stroke-width 300ms ease-in-out;-o-transition:stroke-width 300ms ease-in-out;-ms-transition:stroke-width 300ms ease-in-out;transition:stroke-width 300ms ease-in-out}header.hero a.directional-arrow{display:none;position:absolute;z-index:10;top:0;bottom:0;text-indent:100%;overflow:hidden;opacity:.625;-ms-filter:"alpha(opacity=63)";-webkit-filter:alpha(opacity=63);-moz-filter:alpha(opacity=63);-ms-filter:alpha(opacity=63);-o-filter:alpha(opacity=63);filter:alpha(opacity=63);-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;transition:opacity 400ms ease}header.hero a.directional-arrow:hover{opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header.hero a.directional-arrow:focus{outline:0}header.hero a.directional-arrow:after{content:"";display:block;position:absolute;top:0;bottom:0;margin:auto 0;width:19px;height:58px;background-image:url("/img/home/carousel/arrow.png");background-repeat:no-repeat;opacity:.8;-ms-filter:"alpha(opacity=80)";-webkit-filter:alpha(opacity=80);-moz-filter:alpha(opacity=80);-ms-filter:alpha(opacity=80);-o-filter:alpha(opacity=80);filter:alpha(opacity=80)}@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx){header.hero a.directional-arrow:after{background-image:url("/img/home/carousel/arrow@2x.png");-webkit-background-size:100% 100%;-moz-background-size:100% 100%;background-size:100% 100%}}header.hero a.directional-arrow:active:after{opacity:1;-ms-filter:none;-webkit-filter:none;-moz-filter:none;-ms-filter:none;-o-filter:none;filter:none}header.hero a.directional-arrow.previous{left:0}header.hero a.directional-arrow.previous:after{left:30px;-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}header.hero a.directional-arrow.next{right:0}header.hero a.directional-arrow.next:after{right:30px}body:not(.js) header.hero section:first-child{display:block}@-moz-keyframes connect-hover{0{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}}@-webkit-keyframes connect-hover{0{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}}@-o-keyframes connect-hover{0{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}}@-ms-keyframes connect-hover{0{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}}@keyframes connect-hover{0{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}}@-moz-keyframes relay-hover{0{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}100%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}}@-webkit-keyframes relay-hover{0{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}100%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}}@-o-keyframes relay-hover{0{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}100%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}}@-ms-keyframes relay-hover{0{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}100%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}}@keyframes relay-hover{0{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}100%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}}html#home.ie div.logos{display:table}html#home.ie div.logos img{height:auto;vertical-align:middle}html#home.ie div.logos span{display:table-cell;padding:10px;width:auto !important} --------------------------------------------------------------------------------