diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..b8e750b6 --- /dev/null +++ b/.npmignore @@ -0,0 +1,21 @@ + +.gitignore +404.html +_config.yml +_data +_includes +_layouts +_posts +_site +pldoc +about.md +bower_components +CNAME +examples +favicon.ico +gulp +gulpfile.js +index.html +node_modules +package.json +public diff --git a/CHANGELOG.md b/CHANGELOG.md index 91cf25cc..43f486bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ ## unreleased Nothing yet +- - - + +## 0.7.0 (2015-12-14) +* Moving from Bower-based to NPM-based package management + - - - ## 0.6.0 (2015-11-24) * Revising color patterns to use Sass mix() method diff --git a/README.md b/README.md index 79507e32..a5b4ed7c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# edX Pattern Library +# edX UX Pattern Library (UXPL) The (working) UI library and Front End Styleguide for edX/Open edX applications and sites. @@ -11,7 +11,7 @@ The (working) UI library and Front End Styleguide for edX/Open edX applications 3. [Dependencies](#dependencies) 4. [Documentation](#documentation) 5. [Development - Documentation Site](#development---documentation-site-pldoc) -6. [Development - UX Pattern Library Package](#development---ux-pattern-library-bower-package) +6. [Development - UX Pattern Library Package](#development---ux-pattern-library-nodejs-package) 7. [Use and Deployment](#use-and-deployment) 8. [Contributions](#contributions) @@ -35,7 +35,7 @@ library/blob/master/LICENSE.txt) for details. Using the edX Pattern Library source code in a project current requires: -* locally installing [Bower](http://bower.io/) - [see below](#development---ux-pattern-library-package) for more installation details. +* locally installing a package manager [a package manager (either [Node/npm](https://nodejs.org) or [Bower)](http://bower.io/). * Use of modern web browsers - see [Open edX/edX browser support](http://docstrings.readthedocs.org/en/latest/front_matter/browsers.html) * the use and compilation of Sass into CSS using perferrably [LibSass](http://sass-lang.com/libsass) (if using the Sass method for including the pattern library). @@ -46,11 +46,11 @@ Also, the Pattern Library currently relies on the following thrd party libraries | Library | Version | Purpose | | ------------- | ------------- | ------------- | -| [Bourbon](https://github.com/thoughtbot/bourbon) | 4.2.3 | basic sass/CSS utilities | -| [Animate.css](https://github.com/daneden/animate.css) | 3.3.0 | pre-set CSS animations | +| [Bourbon](https://github.com/thoughtbot/bourbon) | 4.2.6 | basic sass/CSS utilities | +| [Animate.css](https://github.com/daneden/animate.css) | 3.4.0 | pre-set CSS animations | | [bi-app-sass](https://github.com/anasnakawa/bi-app-sass) | latest | right-to-left/left-to-right directional support for layouts | | [breakpoint-sass](https://github.com/at-import/breakpoint) | 2.6.1 | CSS breakpoint/media-query management | -| [susy](https://github.com/ericam/susy) | 2.2.5 | Grid configuration and utilities | +| [susy](https://github.com/ericam/susy) | 2.2.9 | Grid configuration and utilities | | [A Font Garde](https://github.com/filamentgroup/a-font-garde) | 0.1.6 | A set of reliable (nay, bulletproof) patterns for icon fonts. | ## Documentation @@ -68,8 +68,7 @@ recent versions of the following things installed on your local machine. | Library | Version | Purpose | | ------------- | ------------- | ------------- | | [Bundler](http://bundler.io/) | 1.10 | Used to install [jekyll](http://jekyllrb.com) and its dependencies | -| [Node.js](http://nodejs.org/) | 0.12.x or 4.0.x | Support for the asset pipeline | -| [Bower](http://bower.io/) | 1.5.0 | fetch and compile javascript assets | +| [Node.js](http://nodejs.org/) | 0.12.x or 4.0.x | Third-party dependency package management | [GulpJS](https://github.com/gulpjs/gulp) + other gulp-based packages | 3.9.0 | Task runner for build process | @@ -105,42 +104,13 @@ docs](http://jekyllrb.com/docs/templates/#code_snippet_highlighting). - - - -### Step 2: Install Node.js +### Step 2: Install Node.js and Node Package Manager (npm) -If you've never used Node or npm before, you'll need to install Node. If you use -homebrew, do: - -``` -brew install node -``` - -Otherwise, you can download and install from [here](http://nodejs.org/download/). - -- - - - -### Step 3: Install Bower - -After instaling Node.js, you can install [Bower](http://bower.io/), a package -manager we use to download and maintain many of our vendor and external library -refereces. - -To install Bower globally: -``` -npm install -g bower -``` - -After Bower is installed, you can install all of the edX UX Pattern Library -dependecies with: - -``` -bower install -``` - -**NOTE**: Bower files should not be edited or removed outside of the Bower workflow. +The npm command-line tool is bundled with [Node.js](https://nodejs.org). If you have it installed, then you already have npm too. If not, go [download Node.js](https://nodejs.org/en/download/). - - - -### Step 4: Install/Update Gulp + Project Dependencies +### Step 3: Install Project Dependencies & Gulp Task Flow From the directory you've checked out this repo into locally, run: @@ -149,7 +119,7 @@ npm install ``` This runs through all dependencies listed in package.json and downloads them to -a node_modules folder in your project directory. +a `node_modules` folder in your project directory. **NOTE:** You may need to run this more than just once (if encountering errors when running the gulp command) as new dependencies may have been added. @@ -163,7 +133,7 @@ this project, run: - - - -### Step 5: Run Locally (w/ Gulp Workflow) +### Step 4: Run Locally (w/ Gulp Workflow) To view the Pattern Library locally (and to watch for any local changes to content/assets), run the `default` gulp task with: @@ -177,23 +147,23 @@ This will run the `default` gulp task defined in `gulpfile.js`, which includes t After running the default task, your local instance of the Pattern Library can be viewable at http://localhost:3000. There are additional views: -* http://localhost:3000/examples/**/* - where full page examples and demos are kept -* http://localhost:3000/patterns/**/* - permalinks for individually documented pattern library patterns +* ``http://localhost:3000/examples/**/*`` - where full page examples and demos are kept +* ``http://localhost:3000/patterns/**/*`` - permalinks for individually documented pattern library patterns - - - ### Committing Code to PLDOC When developing changes or new work within the PLDOC, please make sure to: -1. leave the Pattern Library Source Code (contained in ``pattern-ibrary``) unedited (or edit in a separate branch/commit) +1. leave the Pattern Library Source Code (contained in ``pattern-library``) unedited (or edit in a separate branch/commit) 2. run the production preparation-focused gulp task ``gulp build-production``, which will optimize any checked in production assets (styles, images, and scripts), if you've added or heavily edited new PLDOC assets. -## Development - UX Pattern Library Bower Package +## Development - UX Pattern Library Package -If you add or edit any patterns in this repo (found in ``_src/pattern-library/``) or change any bower-centric settings (e.g. ``bower.json``), please do the following: +If you add or edit any patterns in this repo (found in ``_src/pattern-library/``) or change any package-centric settings (e.g. ``package.json`` or ``bower.json``), please do the following: -1. test that the change you've made will not negatively affect the bower package other apps and codebases are relying on -2. talk to the UX Team about any bumps (based on [semantic versioning](http://semver.org/)) in the bower package's version number that are needed. +1. test that the change you've made will not negatively affect the node package manager (npm) package other apps and codebases are relying on +2. talk to the UX Team about any bumps (based on [semantic versioning](http://semver.org/)) in the npm package's version number that are needed. - - - @@ -203,20 +173,39 @@ The UX Pattern Library is meant to be a starting UI Framework to support edX and Open edX applications and sites. To start using the UX Pattern Library in an edX/Open edX app, please follow these steps: -### Step 0: Install and Configure Bower +### Step 0: Install Node +You'll need to [download Node.js](https://nodejs.org/en/download/) in order to use either of the UXPL packages. -After instaling Node.js, you can install [Bower](http://bower.io/), a package -manager we use to download and maintain many of our vendor and external library -refereces. +### Step 1: Install and Configure UXPL Packages +Next, you'll want to add the edx-pattern-library registered package as a dependency for your project and install it all at once. You have a few options for what package manager to do that through: + +#### Using Node +In your project's main directory, you'll need to create a ``package.json`` file that will manage locally installed npm packages. To create a package.json run: -To install Bower globally: ``` -npm install -g bower +$ npm init ``` -- - - +You'll be walked through some basic settings for your project's package. See also [npm's documentation on setting up a package](https://docs.npmjs.com/getting-started/using-a-package.json). + + +Next, you'll want to add the ``edx-pattern-library`` registered package as a dependency for your project and install it all at once. + +``` +$ npm install edx-pattern-library --save +``` -### Step 1: Install/List the UX Pattern Library Package as a Dependency +See also, [npm's documentation on installing/saving dependencies](https://docs.npmjs.com/getting-started/using-a-package.json#the-save-and-save-dev-install-flags). + + +#### Using Bower +After instaling Node.js, you can install [Bower](http://bower.io/), a package manager we use to download and maintain many of our vendor and external library refereces. + +To install Bower globally: + +``` +npm install -g bower +``` Next, you'll want to add the ``edx-pattern-library`` registered package as a bower dependency and install it all at once. @@ -225,7 +214,7 @@ bower dependency and install it all at once. bower install edx-pattern-library --save ``` -**NOTE:** Bower recommends initializing your project as a bower project in order to manage third party dependencies such as the 'edx-pattern-library' bower package. [Bower explains how to do that well with bower.json``](http://bower.io/docs/creating-packages/#bowerjson). +**NOTE:** Bower recommends initializing your project as a bower project in order to manage third party dependencies such as the `edx-pattern-library` bower package. [Bower explains how to do that well with bower.json](http://bower.io/docs/creating-packages/#bowerjson). - - - @@ -235,10 +224,10 @@ bower install edx-pattern-library --save You can use the edX UX Pattern Library as a static CSS base alongside other CSS files. To do so add a reference in the ```` of your app's HTML ```html - + ``` -**NOTE**: The Bower package comes with several variations of compiled CSS, including: +**NOTE**: The node package manager (npm) package comes with several variations of compiled CSS, including: * RTL and LTR support - noted by either a ``*-ltr`` or ``*-rtl`` suffix) * Minified and expanded CSS output formats - for production and development/debugging purposes respectively. @@ -270,7 +259,7 @@ $layout-direction: ltr; // #LIB // ------------------------------ @import 'lib'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/edx-pattern-library'; +@import '{path to edx-pattern-library package}/pattern-library/sass/edx-pattern-library'; // ------------------------------ @@ -284,12 +273,12 @@ $layout-direction: ltr; ``` -**NOTE**: Since both libSass and RubySass lack a way to pass in variables/configuration into their ``@import {file}`` method, each app is responsible for 1) storing any bower-based dependencies, including the edx-pattern-library, in the best directory structure for that app's set up and 2) creating a ``_lib.scss`` partial to import all third party library dependencies from that structure for the Pattern Library to use (see above example). +**NOTE**: Since both libSass and RubySass lack a way to pass in variables/configuration into their ``@import {file}`` method, each app is responsible for 1) storing any npm-based dependencies, including the edx-pattern-library, in the best directory structure for that app's set up and 2) creating a ``_lib.scss`` partial to import all third party library dependencies from that structure for the Pattern Library to use (see above example). See [the UX Pattern Library Files + Application Files guidelines](https://github.com/edx/ux-pattern-library/wiki/Styleguide:-Sass-&-CSS#ux-pattern-library-files--application-files) and [example style compile](https://github.com/edx/ux-pattern-library/wiki/Styleguide:-Sass-&-CSS#main-style-compile) for more examples, details on how to use partials, and general background. ##### Custom Reference/Import -If you'd like to customize what to import, you can manually import specific elements from the bower package. Here's an example of customizing the default import demo above: +If you'd like to customize what to import, you can manually import specific elements from the edx-pattern-library package. Here's an example of customizing the default import demo above: ```scss // ------------------------------ @@ -309,14 +298,14 @@ $layout-direction: ltr; // #LIB // ------------------------------ @import 'lib'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/global/core'; +@import '{path to edx-pattern-library package}/pattern-library/sass/global/core'; // use UXPL's buttons, headings, copy, grid, and layouts -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/patterns/buttons'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/patterns/headings'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/patterns/copy'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/patterns/grid'; -@import '{path to edx-pattern-library Bower package}/pattern-library/sass/patterns/layouts'; +@import '{path to edx-pattern-library package}/pattern-library/sass/patterns/buttons'; +@import '{path to edx-pattern-library package}/pattern-library/sass/patterns/headings'; +@import '{path to edx-pattern-library package}/pattern-library/sass/patterns/copy'; +@import '{path to edx-pattern-library package}/pattern-library/sass/patterns/grid'; +@import '{path to edx-pattern-library package}/pattern-library/sass/patterns/layouts'; // ------------------------------ diff --git a/bower.json b/bower.json index 1906f251..9e9bc62b 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "edx-pattern-library", - "version": "0.6.0", + "version": "0.7.0", "authors": [ "edX UX Team " ], diff --git a/gulp/config.js b/gulp/config.js index eb62e1c7..64bd418d 100644 --- a/gulp/config.js +++ b/gulp/config.js @@ -70,7 +70,7 @@ module.exports = { }, lib: { // third party libraries - src: './bower_components' + src: './node_modules' }, jekyll: { home: 'index.html', diff --git a/package.json b/package.json index 608e84d8..ad5ecad6 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,33 @@ { - "name": "edx-ux-pattern-library", - "version": "0.2.0", + "name": "edx-pattern-library", + "version": "0.7.0", + "author": "edX UX Team ", "license": "Apache-2.0", - "description": "Gulp and Jekyll front end workflow with common tasks for edX's UX Pattern Library site", + "description": "The (working) Visual, UI, and Front End Styleguide for edX Apps", + "keywords": [ + "atomic design", + "edx", + "open edx", + "patterns", + "pattern library", + "UI starter" + ], + "homepage": "http://ux.edx.org", + "main": "_settings.scss", "repository": { "type": "git", "url": "git://github.com/edx/ux-pattern-library.git" }, + "dependencies": { + "animate.css": "^3.4.0", + "bi-app-sass": "^1.1.0", + "bourbon": "^4.2.6", + "breakpoint-sass": "^2.6.1", + "jquery": "^1.11.1", + "requirejs": "^2.1.22", + "requirejs-plugins": "^1.0.2", + "susy": "^2.2.9" + }, "devDependencies": { "browser-sync": "*", "del": "*", @@ -19,7 +40,7 @@ "gulp-imagemin": "*", "gulp-minify-css": "*", "gulp-notify": "*", - "gulp-rename": "^1.2.2", + "gulp-rename": "*", "gulp-sass": "*", "gulp-sourcemaps": "*", "gulp-uglify": "*", @@ -28,6 +49,12 @@ "lodash": "*", "merge-stream": "*", "require-dir": "*", - "run-sequence": "*" + "run-sequence": "*", + "susy": "^2.2.9" + }, + "scripts": { + "production": "gulp build-production", + "gulp": "gulp", + "development": "gulp build-development" } } diff --git a/pattern-library/css/edx-pattern-library-ltr.css b/pattern-library/css/edx-pattern-library-ltr.css index 87c444f3..b2ae3608 100644 --- a/pattern-library/css/edx-pattern-library-ltr.css +++ b/pattern-library/css/edx-pattern-library-ltr.css @@ -1107,7 +1107,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1128,7 +1127,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1149,7 +1147,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1161,7 +1158,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1224,7 +1220,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1246,7 +1241,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; diff --git a/pattern-library/css/edx-pattern-library-ltr.min.css b/pattern-library/css/edx-pattern-library-ltr.min.css index dc46d387..94b38855 100644 --- a/pattern-library/css/edx-pattern-library-ltr.min.css +++ b/pattern-library/css/edx-pattern-library-ltr.min.css @@ -1,4 +1,4 @@ -.bg-replace,svg:not(:root){overflow:hidden}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%;white-space:nowrap}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;color:#4d4b4b;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-combo:last-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-6,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600}.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5;letter-spacing:.03125rem}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-left:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:after{display:inline-block;margin-left:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-left:1.04167%;padding-right:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;left:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;left:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;right:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-right:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.grid-container::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:right;margin-right:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container::after,.row,.row::after{clear:both}.grid-container{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-left:0}.grid-container .col.col-full{clear:both;width:100%;float:left;margin-left:0;margin-right:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:left}.grid-manual .col-2{width:16.66667%;float:left}.grid-manual .col-3{width:25%;float:left}.grid-manual .col-4{width:33.33333%;float:left}.grid-manual .col-5{width:41.66667%;float:left}.grid-manual .col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .col-7{width:58.33333%;float:left}.grid-manual .col-8{width:66.66667%;float:left}.grid-manual .col-9{width:75%;float:left}.grid-manual .col-10{width:83.33333%;float:left}.grid-manual .col-11{width:91.66667%;float:left}.grid-manual .col-12{width:100%;float:left}.grid-manual .pre-1{margin-left:8.33333%}.grid-manual .pre-2{margin-left:16.66667%}.grid-manual .pre-3{margin-left:25%}.grid-manual .pre-4{margin-left:33.33333%}.grid-manual .pre-5{margin-left:41.66667%}.grid-manual .pre-6{margin-left:50%}.grid-manual .pre-7{margin-left:58.33333%}.grid-manual .pre-8{margin-left:66.66667%}.grid-manual .pre-9{margin-left:75%}.grid-manual .pre-10{margin-left:83.33333%}.grid-manual .pre-11{margin-left:91.66667%}.grid-manual .pre-12{margin-left:100%}.grid-manual .post-1{margin-left:8.33333%}.grid-manual .post-2{margin-left:16.66667%}.grid-manual .post-3{margin-left:25%}.grid-manual .post-4{margin-left:33.33333%}.grid-manual .post-5{margin-left:41.66667%}.grid-manual .post-6{margin-left:50%}.grid-manual .post-7{margin-left:58.33333%}.grid-manual .post-8{margin-left:66.66667%}.grid-manual .post-9{margin-left:75%}.grid-manual .post-10{margin-left:83.33333%}.grid-manual .post-11{margin-left:91.66667%}.grid-manual .post-12{margin-left:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-pre-1{margin-left:8.33333%}.grid-manual .sm-pre-2{margin-left:16.66667%}.grid-manual .sm-pre-3{margin-left:25%}.grid-manual .sm-pre-4{margin-left:33.33333%}.grid-manual .sm-pre-5{margin-left:41.66667%}.grid-manual .sm-pre-6{margin-left:50%}.grid-manual .sm-pre-7{margin-left:58.33333%}.grid-manual .sm-pre-8{margin-left:66.66667%}.grid-manual .sm-pre-9{margin-left:75%}.grid-manual .sm-pre-10{margin-left:83.33333%}.grid-manual .sm-pre-11{margin-left:91.66667%}.grid-manual .sm-pre-12{margin-left:100%}.grid-manual .sm-post-1{margin-right:8.33333%}.grid-manual .sm-post-2{margin-right:16.66667%}.grid-manual .sm-post-3{margin-right:25%}.grid-manual .sm-post-4{margin-right:33.33333%}.grid-manual .sm-post-5{margin-right:41.66667%}.grid-manual .sm-post-6{margin-right:50%}.grid-manual .sm-post-7{margin-right:58.33333%}.grid-manual .sm-post-8{margin-right:66.66667%}.grid-manual .sm-post-9{margin-right:75%}.grid-manual .sm-post-10{margin-right:83.33333%}.grid-manual .sm-post-11{margin-right:91.66667%}.grid-manual .sm-post-12{margin-right:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-pre-1{margin-left:8.33333%}.grid-manual .md-pre-2{margin-left:16.66667%}.grid-manual .md-pre-3{margin-left:25%}.grid-manual .md-pre-4{margin-left:33.33333%}.grid-manual .md-pre-5{margin-left:41.66667%}.grid-manual .md-pre-6{margin-left:50%}.grid-manual .md-pre-7{margin-left:58.33333%}.grid-manual .md-pre-8{margin-left:66.66667%}.grid-manual .md-pre-9{margin-left:75%}.grid-manual .md-pre-10{margin-left:83.33333%}.grid-manual .md-pre-11{margin-left:91.66667%}.grid-manual .md-pre-12{margin-left:100%}.grid-manual .md-post-1{margin-right:8.33333%}.grid-manual .md-post-2{margin-right:16.66667%}.grid-manual .md-post-3{margin-right:25%}.grid-manual .md-post-4{margin-right:33.33333%}.grid-manual .md-post-5{margin-right:41.66667%}.grid-manual .md-post-6{margin-right:50%}.grid-manual .md-post-7{margin-right:58.33333%}.grid-manual .md-post-8{margin-right:66.66667%}.grid-manual .md-post-9{margin-right:75%}.grid-manual .md-post-10{margin-right:83.33333%}.grid-manual .md-post-11{margin-right:91.66667%}.grid-manual .md-post-12{margin-right:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-pre-1{margin-left:8.33333%}.grid-manual .lg-pre-2{margin-left:16.66667%}.grid-manual .lg-pre-3{margin-left:25%}.grid-manual .lg-pre-4{margin-left:33.33333%}.grid-manual .lg-pre-5{margin-left:41.66667%}.grid-manual .lg-pre-6{margin-left:50%}.grid-manual .lg-pre-7{margin-left:58.33333%}.grid-manual .lg-pre-8{margin-left:66.66667%}.grid-manual .lg-pre-9{margin-left:75%}.grid-manual .lg-pre-10{margin-left:83.33333%}.grid-manual .lg-pre-11{margin-left:91.66667%}.grid-manual .lg-pre-12{margin-left:100%}.grid-manual .lg-post-1{margin-right:8.33333%}.grid-manual .lg-post-2{margin-right:16.66667%}.grid-manual .lg-post-3{margin-right:25%}.grid-manual .lg-post-4{margin-right:33.33333%}.grid-manual .lg-post-5{margin-right:41.66667%}.grid-manual .lg-post-6{margin-right:50%}.grid-manual .lg-post-7{margin-right:58.33333%}.grid-manual .lg-post-8{margin-right:66.66667%}.grid-manual .lg-post-9{margin-right:75%}.grid-manual .lg-post-10{margin-right:83.33333%}.grid-manual .lg-post-11{margin-right:91.66667%}.grid-manual .lg-post-12{margin-right:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-pre-1{margin-left:8.33333%}.grid-manual .xl-pre-2{margin-left:16.66667%}.grid-manual .xl-pre-3{margin-left:25%}.grid-manual .xl-pre-4{margin-left:33.33333%}.grid-manual .xl-pre-5{margin-left:41.66667%}.grid-manual .xl-pre-6{margin-left:50%}.grid-manual .xl-pre-7{margin-left:58.33333%}.grid-manual .xl-pre-8{margin-left:66.66667%}.grid-manual .xl-pre-9{margin-left:75%}.grid-manual .xl-pre-10{margin-left:83.33333%}.grid-manual .xl-pre-11{margin-left:91.66667%}.grid-manual .xl-pre-12{margin-left:100%}.grid-manual .xl-post-1{margin-right:8.33333%}.grid-manual .xl-post-2{margin-right:16.66667%}.grid-manual .xl-post-3{margin-right:25%}.grid-manual .xl-post-4{margin-right:33.33333%}.grid-manual .xl-post-5{margin-right:41.66667%}.grid-manual .xl-post-6{margin-right:50%}.grid-manual .xl-post-7{margin-right:58.33333%}.grid-manual .xl-post-8{margin-right:66.66667%}.grid-manual .xl-post-9{margin-right:75%}.grid-manual .xl-post-10{margin-right:83.33333%}.grid-manual .xl-post-11{margin-right:91.66667%}.grid-manual .xl-post-12{margin-right:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-left:0;margin-right:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .gallery-12 .gallery-item{width:100%;float:left}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1h1h.layout-flush,.layout-1q1h1q.layout,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout,.layout-1q1q1h.layout-flush,.layout-1q3q.layout,.layout-1q3q.layout-flush,.layout-1t1t1t.layout,.layout-1t1t1t.layout-flush,.layout-1t2t.layout,.layout-1t2t.layout-flush,.layout-flush,.layout-full{margin-left:auto;margin-right:auto;max-width:73.125rem}.layout-1h1h.layout-flush:after,.layout-1h1h.layout-reversed:after,.layout-1h1h.layout:after,.layout-1q1h1q.layout-flush:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout-flush:after,.layout-1q1q1h.layout-reversed:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout-flush:after,.layout-1q3q.layout-reversed:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout-flush:after,.layout-1t1t1t.layout-reversed:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout-flush:after,.layout-1t2t.layout-reversed:after,.layout-1t2t.layout:after,.layout-flush:after,.layout-full:after,.layout-view-1h1h.layout-view-flush:after,.layout-view-1h1h.layout-view-reversed:after,.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view-flush:after,.layout-view-1t2t.layout-view-reversed:after,.layout-view-1t2t.layout-view:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view,.layout-view-1h1h.layout-view-flush,.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view,.layout-view-1q3q.layout-view-flush,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view,.layout-view-1t2t.layout-view-flush,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:left;margin-left:0;margin-right:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:right;margin-right:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:left;margin-left:0}}.card,.slat,.well{padding:1.25rem}.depth--3{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.zebra-stripe>:nth-child(odd),body{background:#efefef}.card,.depth-1,.depth-2,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2{box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 +.bg-replace,svg:not(:root){overflow:hidden}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%;white-space:nowrap}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;color:#4d4b4b;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-combo:last-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-6,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600}.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5;letter-spacing:.03125rem}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-left:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:after{display:inline-block;margin-left:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-left:1.04167%;padding-right:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;left:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;left:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;right:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-right:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.grid-container::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:right;margin-right:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container::after,.row,.row::after{clear:both}.grid-container{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-left:0}.grid-container .col.col-full{clear:both;width:100%;float:left;margin-left:0;margin-right:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:left}.grid-manual .col-2{width:16.66667%;float:left}.grid-manual .col-3{width:25%;float:left}.grid-manual .col-4{width:33.33333%;float:left}.grid-manual .col-5{width:41.66667%;float:left}.grid-manual .col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .col-7{width:58.33333%;float:left}.grid-manual .col-8{width:66.66667%;float:left}.grid-manual .col-9{width:75%;float:left}.grid-manual .col-10{width:83.33333%;float:left}.grid-manual .col-11{width:91.66667%;float:left}.grid-manual .col-12{width:100%;float:left}.grid-manual .pre-1{margin-left:8.33333%}.grid-manual .pre-2{margin-left:16.66667%}.grid-manual .pre-3{margin-left:25%}.grid-manual .pre-4{margin-left:33.33333%}.grid-manual .pre-5{margin-left:41.66667%}.grid-manual .pre-6{margin-left:50%}.grid-manual .pre-7{margin-left:58.33333%}.grid-manual .pre-8{margin-left:66.66667%}.grid-manual .pre-9{margin-left:75%}.grid-manual .pre-10{margin-left:83.33333%}.grid-manual .pre-11{margin-left:91.66667%}.grid-manual .pre-12{margin-left:100%}.grid-manual .post-1{margin-left:8.33333%}.grid-manual .post-2{margin-left:16.66667%}.grid-manual .post-3{margin-left:25%}.grid-manual .post-4{margin-left:33.33333%}.grid-manual .post-5{margin-left:41.66667%}.grid-manual .post-6{margin-left:50%}.grid-manual .post-7{margin-left:58.33333%}.grid-manual .post-8{margin-left:66.66667%}.grid-manual .post-9{margin-left:75%}.grid-manual .post-10{margin-left:83.33333%}.grid-manual .post-11{margin-left:91.66667%}.grid-manual .post-12{margin-left:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-pre-1{margin-left:8.33333%}.grid-manual .sm-pre-2{margin-left:16.66667%}.grid-manual .sm-pre-3{margin-left:25%}.grid-manual .sm-pre-4{margin-left:33.33333%}.grid-manual .sm-pre-5{margin-left:41.66667%}.grid-manual .sm-pre-6{margin-left:50%}.grid-manual .sm-pre-7{margin-left:58.33333%}.grid-manual .sm-pre-8{margin-left:66.66667%}.grid-manual .sm-pre-9{margin-left:75%}.grid-manual .sm-pre-10{margin-left:83.33333%}.grid-manual .sm-pre-11{margin-left:91.66667%}.grid-manual .sm-pre-12{margin-left:100%}.grid-manual .sm-post-1{margin-right:8.33333%}.grid-manual .sm-post-2{margin-right:16.66667%}.grid-manual .sm-post-3{margin-right:25%}.grid-manual .sm-post-4{margin-right:33.33333%}.grid-manual .sm-post-5{margin-right:41.66667%}.grid-manual .sm-post-6{margin-right:50%}.grid-manual .sm-post-7{margin-right:58.33333%}.grid-manual .sm-post-8{margin-right:66.66667%}.grid-manual .sm-post-9{margin-right:75%}.grid-manual .sm-post-10{margin-right:83.33333%}.grid-manual .sm-post-11{margin-right:91.66667%}.grid-manual .sm-post-12{margin-right:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-pre-1{margin-left:8.33333%}.grid-manual .md-pre-2{margin-left:16.66667%}.grid-manual .md-pre-3{margin-left:25%}.grid-manual .md-pre-4{margin-left:33.33333%}.grid-manual .md-pre-5{margin-left:41.66667%}.grid-manual .md-pre-6{margin-left:50%}.grid-manual .md-pre-7{margin-left:58.33333%}.grid-manual .md-pre-8{margin-left:66.66667%}.grid-manual .md-pre-9{margin-left:75%}.grid-manual .md-pre-10{margin-left:83.33333%}.grid-manual .md-pre-11{margin-left:91.66667%}.grid-manual .md-pre-12{margin-left:100%}.grid-manual .md-post-1{margin-right:8.33333%}.grid-manual .md-post-2{margin-right:16.66667%}.grid-manual .md-post-3{margin-right:25%}.grid-manual .md-post-4{margin-right:33.33333%}.grid-manual .md-post-5{margin-right:41.66667%}.grid-manual .md-post-6{margin-right:50%}.grid-manual .md-post-7{margin-right:58.33333%}.grid-manual .md-post-8{margin-right:66.66667%}.grid-manual .md-post-9{margin-right:75%}.grid-manual .md-post-10{margin-right:83.33333%}.grid-manual .md-post-11{margin-right:91.66667%}.grid-manual .md-post-12{margin-right:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-pre-1{margin-left:8.33333%}.grid-manual .lg-pre-2{margin-left:16.66667%}.grid-manual .lg-pre-3{margin-left:25%}.grid-manual .lg-pre-4{margin-left:33.33333%}.grid-manual .lg-pre-5{margin-left:41.66667%}.grid-manual .lg-pre-6{margin-left:50%}.grid-manual .lg-pre-7{margin-left:58.33333%}.grid-manual .lg-pre-8{margin-left:66.66667%}.grid-manual .lg-pre-9{margin-left:75%}.grid-manual .lg-pre-10{margin-left:83.33333%}.grid-manual .lg-pre-11{margin-left:91.66667%}.grid-manual .lg-pre-12{margin-left:100%}.grid-manual .lg-post-1{margin-right:8.33333%}.grid-manual .lg-post-2{margin-right:16.66667%}.grid-manual .lg-post-3{margin-right:25%}.grid-manual .lg-post-4{margin-right:33.33333%}.grid-manual .lg-post-5{margin-right:41.66667%}.grid-manual .lg-post-6{margin-right:50%}.grid-manual .lg-post-7{margin-right:58.33333%}.grid-manual .lg-post-8{margin-right:66.66667%}.grid-manual .lg-post-9{margin-right:75%}.grid-manual .lg-post-10{margin-right:83.33333%}.grid-manual .lg-post-11{margin-right:91.66667%}.grid-manual .lg-post-12{margin-right:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-pre-1{margin-left:8.33333%}.grid-manual .xl-pre-2{margin-left:16.66667%}.grid-manual .xl-pre-3{margin-left:25%}.grid-manual .xl-pre-4{margin-left:33.33333%}.grid-manual .xl-pre-5{margin-left:41.66667%}.grid-manual .xl-pre-6{margin-left:50%}.grid-manual .xl-pre-7{margin-left:58.33333%}.grid-manual .xl-pre-8{margin-left:66.66667%}.grid-manual .xl-pre-9{margin-left:75%}.grid-manual .xl-pre-10{margin-left:83.33333%}.grid-manual .xl-pre-11{margin-left:91.66667%}.grid-manual .xl-pre-12{margin-left:100%}.grid-manual .xl-post-1{margin-right:8.33333%}.grid-manual .xl-post-2{margin-right:16.66667%}.grid-manual .xl-post-3{margin-right:25%}.grid-manual .xl-post-4{margin-right:33.33333%}.grid-manual .xl-post-5{margin-right:41.66667%}.grid-manual .xl-post-6{margin-right:50%}.grid-manual .xl-post-7{margin-right:58.33333%}.grid-manual .xl-post-8{margin-right:66.66667%}.grid-manual .xl-post-9{margin-right:75%}.grid-manual .xl-post-10{margin-right:83.33333%}.grid-manual .xl-post-11{margin-right:91.66667%}.grid-manual .xl-post-12{margin-right:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-left:0;margin-right:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .gallery-12 .gallery-item{width:100%;float:left}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1h1h.layout-flush,.layout-1q1h1q.layout,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout,.layout-1q1q1h.layout-flush,.layout-1q3q.layout,.layout-1q3q.layout-flush,.layout-1t1t1t.layout,.layout-1t1t1t.layout-flush,.layout-1t2t.layout,.layout-1t2t.layout-flush,.layout-flush,.layout-full{margin-left:auto;margin-right:auto;max-width:73.125rem}.layout-1h1h.layout-flush:after,.layout-1h1h.layout-reversed:after,.layout-1h1h.layout:after,.layout-1q1h1q.layout-flush:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout-flush:after,.layout-1q1q1h.layout-reversed:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout-flush:after,.layout-1q3q.layout-reversed:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout-flush:after,.layout-1t1t1t.layout-reversed:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout-flush:after,.layout-1t2t.layout-reversed:after,.layout-1t2t.layout:after,.layout-flush:after,.layout-full:after,.layout-view-1h1h.layout-view-flush:after,.layout-view-1h1h.layout-view-reversed:after,.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view-flush:after,.layout-view-1t2t.layout-view-reversed:after,.layout-view-1t2t.layout-view:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view,.layout-view-1h1h.layout-view-flush,.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view,.layout-view-1q3q.layout-view-flush,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view,.layout-view-1t2t.layout-view-flush,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:left;margin-left:0;margin-right:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:right;margin-right:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:left;margin-left:0}}.card,.slat,.well{padding:1.25rem}.depth--3{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.zebra-stripe>:nth-child(odd),body{background:#efefef}.card,.depth-1,.depth-2,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2{box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 * https://github.com/filamentgroup/a-font-garde * Copyright (c) 2015 Filament Group c/o Zach Leatherman * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat} \ No newline at end of file diff --git a/pattern-library/css/edx-pattern-library-rtl.css b/pattern-library/css/edx-pattern-library-rtl.css index f62d181b..2f7ed658 100644 --- a/pattern-library/css/edx-pattern-library-rtl.css +++ b/pattern-library/css/edx-pattern-library-rtl.css @@ -1107,7 +1107,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1128,7 +1127,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1149,7 +1147,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1161,7 +1158,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1224,7 +1220,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1246,7 +1241,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; diff --git a/pattern-library/css/edx-pattern-library-rtl.min.css b/pattern-library/css/edx-pattern-library-rtl.min.css index a4dd9b39..c120c0ab 100644 --- a/pattern-library/css/edx-pattern-library-rtl.min.css +++ b/pattern-library/css/edx-pattern-library-rtl.min.css @@ -1,4 +1,4 @@ -.bg-replace,svg:not(:root){overflow:hidden}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%;white-space:nowrap}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;color:#4d4b4b;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-combo:last-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-6,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600}.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5;letter-spacing:.03125rem}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-right:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:before{display:inline-block;margin-right:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-right:1.04167%;padding-left:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;right:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;right:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;left:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-left:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.grid-container::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:left;margin-left:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container::after,.row,.row::after{clear:both}.grid-container{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-right:0}.grid-container .col.col-full{clear:both;width:100%;float:right;margin-right:0;margin-left:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:right}.grid-manual .col-2{width:16.66667%;float:right}.grid-manual .col-3{width:25%;float:right}.grid-manual .col-4{width:33.33333%;float:right}.grid-manual .col-5{width:41.66667%;float:right}.grid-manual .col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .col-7{width:58.33333%;float:right}.grid-manual .col-8{width:66.66667%;float:right}.grid-manual .col-9{width:75%;float:right}.grid-manual .col-10{width:83.33333%;float:right}.grid-manual .col-11{width:91.66667%;float:right}.grid-manual .col-12{width:100%;float:right}.grid-manual .pre-1{margin-right:8.33333%}.grid-manual .pre-2{margin-right:16.66667%}.grid-manual .pre-3{margin-right:25%}.grid-manual .pre-4{margin-right:33.33333%}.grid-manual .pre-5{margin-right:41.66667%}.grid-manual .pre-6{margin-right:50%}.grid-manual .pre-7{margin-right:58.33333%}.grid-manual .pre-8{margin-right:66.66667%}.grid-manual .pre-9{margin-right:75%}.grid-manual .pre-10{margin-right:83.33333%}.grid-manual .pre-11{margin-right:91.66667%}.grid-manual .pre-12{margin-right:100%}.grid-manual .post-1{margin-right:8.33333%}.grid-manual .post-2{margin-right:16.66667%}.grid-manual .post-3{margin-right:25%}.grid-manual .post-4{margin-right:33.33333%}.grid-manual .post-5{margin-right:41.66667%}.grid-manual .post-6{margin-right:50%}.grid-manual .post-7{margin-right:58.33333%}.grid-manual .post-8{margin-right:66.66667%}.grid-manual .post-9{margin-right:75%}.grid-manual .post-10{margin-right:83.33333%}.grid-manual .post-11{margin-right:91.66667%}.grid-manual .post-12{margin-right:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-pre-1{margin-right:8.33333%}.grid-manual .sm-pre-2{margin-right:16.66667%}.grid-manual .sm-pre-3{margin-right:25%}.grid-manual .sm-pre-4{margin-right:33.33333%}.grid-manual .sm-pre-5{margin-right:41.66667%}.grid-manual .sm-pre-6{margin-right:50%}.grid-manual .sm-pre-7{margin-right:58.33333%}.grid-manual .sm-pre-8{margin-right:66.66667%}.grid-manual .sm-pre-9{margin-right:75%}.grid-manual .sm-pre-10{margin-right:83.33333%}.grid-manual .sm-pre-11{margin-right:91.66667%}.grid-manual .sm-pre-12{margin-right:100%}.grid-manual .sm-post-1{margin-left:8.33333%}.grid-manual .sm-post-2{margin-left:16.66667%}.grid-manual .sm-post-3{margin-left:25%}.grid-manual .sm-post-4{margin-left:33.33333%}.grid-manual .sm-post-5{margin-left:41.66667%}.grid-manual .sm-post-6{margin-left:50%}.grid-manual .sm-post-7{margin-left:58.33333%}.grid-manual .sm-post-8{margin-left:66.66667%}.grid-manual .sm-post-9{margin-left:75%}.grid-manual .sm-post-10{margin-left:83.33333%}.grid-manual .sm-post-11{margin-left:91.66667%}.grid-manual .sm-post-12{margin-left:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-pre-1{margin-right:8.33333%}.grid-manual .md-pre-2{margin-right:16.66667%}.grid-manual .md-pre-3{margin-right:25%}.grid-manual .md-pre-4{margin-right:33.33333%}.grid-manual .md-pre-5{margin-right:41.66667%}.grid-manual .md-pre-6{margin-right:50%}.grid-manual .md-pre-7{margin-right:58.33333%}.grid-manual .md-pre-8{margin-right:66.66667%}.grid-manual .md-pre-9{margin-right:75%}.grid-manual .md-pre-10{margin-right:83.33333%}.grid-manual .md-pre-11{margin-right:91.66667%}.grid-manual .md-pre-12{margin-right:100%}.grid-manual .md-post-1{margin-left:8.33333%}.grid-manual .md-post-2{margin-left:16.66667%}.grid-manual .md-post-3{margin-left:25%}.grid-manual .md-post-4{margin-left:33.33333%}.grid-manual .md-post-5{margin-left:41.66667%}.grid-manual .md-post-6{margin-left:50%}.grid-manual .md-post-7{margin-left:58.33333%}.grid-manual .md-post-8{margin-left:66.66667%}.grid-manual .md-post-9{margin-left:75%}.grid-manual .md-post-10{margin-left:83.33333%}.grid-manual .md-post-11{margin-left:91.66667%}.grid-manual .md-post-12{margin-left:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-pre-1{margin-right:8.33333%}.grid-manual .lg-pre-2{margin-right:16.66667%}.grid-manual .lg-pre-3{margin-right:25%}.grid-manual .lg-pre-4{margin-right:33.33333%}.grid-manual .lg-pre-5{margin-right:41.66667%}.grid-manual .lg-pre-6{margin-right:50%}.grid-manual .lg-pre-7{margin-right:58.33333%}.grid-manual .lg-pre-8{margin-right:66.66667%}.grid-manual .lg-pre-9{margin-right:75%}.grid-manual .lg-pre-10{margin-right:83.33333%}.grid-manual .lg-pre-11{margin-right:91.66667%}.grid-manual .lg-pre-12{margin-right:100%}.grid-manual .lg-post-1{margin-left:8.33333%}.grid-manual .lg-post-2{margin-left:16.66667%}.grid-manual .lg-post-3{margin-left:25%}.grid-manual .lg-post-4{margin-left:33.33333%}.grid-manual .lg-post-5{margin-left:41.66667%}.grid-manual .lg-post-6{margin-left:50%}.grid-manual .lg-post-7{margin-left:58.33333%}.grid-manual .lg-post-8{margin-left:66.66667%}.grid-manual .lg-post-9{margin-left:75%}.grid-manual .lg-post-10{margin-left:83.33333%}.grid-manual .lg-post-11{margin-left:91.66667%}.grid-manual .lg-post-12{margin-left:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-pre-1{margin-right:8.33333%}.grid-manual .xl-pre-2{margin-right:16.66667%}.grid-manual .xl-pre-3{margin-right:25%}.grid-manual .xl-pre-4{margin-right:33.33333%}.grid-manual .xl-pre-5{margin-right:41.66667%}.grid-manual .xl-pre-6{margin-right:50%}.grid-manual .xl-pre-7{margin-right:58.33333%}.grid-manual .xl-pre-8{margin-right:66.66667%}.grid-manual .xl-pre-9{margin-right:75%}.grid-manual .xl-pre-10{margin-right:83.33333%}.grid-manual .xl-pre-11{margin-right:91.66667%}.grid-manual .xl-pre-12{margin-right:100%}.grid-manual .xl-post-1{margin-left:8.33333%}.grid-manual .xl-post-2{margin-left:16.66667%}.grid-manual .xl-post-3{margin-left:25%}.grid-manual .xl-post-4{margin-left:33.33333%}.grid-manual .xl-post-5{margin-left:41.66667%}.grid-manual .xl-post-6{margin-left:50%}.grid-manual .xl-post-7{margin-left:58.33333%}.grid-manual .xl-post-8{margin-left:66.66667%}.grid-manual .xl-post-9{margin-left:75%}.grid-manual .xl-post-10{margin-left:83.33333%}.grid-manual .xl-post-11{margin-left:91.66667%}.grid-manual .xl-post-12{margin-left:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-right:0;margin-left:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .gallery-12 .gallery-item{width:100%;float:right}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1h1h.layout-flush,.layout-1q1h1q.layout,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout,.layout-1q1q1h.layout-flush,.layout-1q3q.layout,.layout-1q3q.layout-flush,.layout-1t1t1t.layout,.layout-1t1t1t.layout-flush,.layout-1t2t.layout,.layout-1t2t.layout-flush,.layout-flush,.layout-full{margin-left:auto;margin-right:auto;max-width:73.125rem}.layout-1h1h.layout-flush:after,.layout-1h1h.layout-reversed:after,.layout-1h1h.layout:after,.layout-1q1h1q.layout-flush:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout-flush:after,.layout-1q1q1h.layout-reversed:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout-flush:after,.layout-1q3q.layout-reversed:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout-flush:after,.layout-1t1t1t.layout-reversed:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout-flush:after,.layout-1t2t.layout-reversed:after,.layout-1t2t.layout:after,.layout-flush:after,.layout-full:after,.layout-view-1h1h.layout-view-flush:after,.layout-view-1h1h.layout-view-reversed:after,.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view-flush:after,.layout-view-1t2t.layout-view-reversed:after,.layout-view-1t2t.layout-view:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view,.layout-view-1h1h.layout-view-flush,.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view,.layout-view-1q3q.layout-view-flush,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view,.layout-view-1t2t.layout-view-flush,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:right;margin-right:0;margin-left:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:left;margin-left:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:right;margin-right:0}}.card,.slat,.well{padding:1.25rem}.depth--3{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.zebra-stripe>:nth-child(odd),body{background:#efefef}.card,.depth-1,.depth-2,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2{box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 +.bg-replace,svg:not(:root){overflow:hidden}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%;white-space:nowrap}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;color:#4d4b4b;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-combo:last-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-6,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600}.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5;letter-spacing:.03125rem}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-right:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:before{display:inline-block;margin-right:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-right:1.04167%;padding-left:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;right:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;right:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;left:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-left:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.grid-container::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:left;margin-left:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container::after,.row,.row::after{clear:both}.grid-container{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-right:0}.grid-container .col.col-full{clear:both;width:100%;float:right;margin-right:0;margin-left:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:right}.grid-manual .col-2{width:16.66667%;float:right}.grid-manual .col-3{width:25%;float:right}.grid-manual .col-4{width:33.33333%;float:right}.grid-manual .col-5{width:41.66667%;float:right}.grid-manual .col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .col-7{width:58.33333%;float:right}.grid-manual .col-8{width:66.66667%;float:right}.grid-manual .col-9{width:75%;float:right}.grid-manual .col-10{width:83.33333%;float:right}.grid-manual .col-11{width:91.66667%;float:right}.grid-manual .col-12{width:100%;float:right}.grid-manual .pre-1{margin-right:8.33333%}.grid-manual .pre-2{margin-right:16.66667%}.grid-manual .pre-3{margin-right:25%}.grid-manual .pre-4{margin-right:33.33333%}.grid-manual .pre-5{margin-right:41.66667%}.grid-manual .pre-6{margin-right:50%}.grid-manual .pre-7{margin-right:58.33333%}.grid-manual .pre-8{margin-right:66.66667%}.grid-manual .pre-9{margin-right:75%}.grid-manual .pre-10{margin-right:83.33333%}.grid-manual .pre-11{margin-right:91.66667%}.grid-manual .pre-12{margin-right:100%}.grid-manual .post-1{margin-right:8.33333%}.grid-manual .post-2{margin-right:16.66667%}.grid-manual .post-3{margin-right:25%}.grid-manual .post-4{margin-right:33.33333%}.grid-manual .post-5{margin-right:41.66667%}.grid-manual .post-6{margin-right:50%}.grid-manual .post-7{margin-right:58.33333%}.grid-manual .post-8{margin-right:66.66667%}.grid-manual .post-9{margin-right:75%}.grid-manual .post-10{margin-right:83.33333%}.grid-manual .post-11{margin-right:91.66667%}.grid-manual .post-12{margin-right:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-pre-1{margin-right:8.33333%}.grid-manual .sm-pre-2{margin-right:16.66667%}.grid-manual .sm-pre-3{margin-right:25%}.grid-manual .sm-pre-4{margin-right:33.33333%}.grid-manual .sm-pre-5{margin-right:41.66667%}.grid-manual .sm-pre-6{margin-right:50%}.grid-manual .sm-pre-7{margin-right:58.33333%}.grid-manual .sm-pre-8{margin-right:66.66667%}.grid-manual .sm-pre-9{margin-right:75%}.grid-manual .sm-pre-10{margin-right:83.33333%}.grid-manual .sm-pre-11{margin-right:91.66667%}.grid-manual .sm-pre-12{margin-right:100%}.grid-manual .sm-post-1{margin-left:8.33333%}.grid-manual .sm-post-2{margin-left:16.66667%}.grid-manual .sm-post-3{margin-left:25%}.grid-manual .sm-post-4{margin-left:33.33333%}.grid-manual .sm-post-5{margin-left:41.66667%}.grid-manual .sm-post-6{margin-left:50%}.grid-manual .sm-post-7{margin-left:58.33333%}.grid-manual .sm-post-8{margin-left:66.66667%}.grid-manual .sm-post-9{margin-left:75%}.grid-manual .sm-post-10{margin-left:83.33333%}.grid-manual .sm-post-11{margin-left:91.66667%}.grid-manual .sm-post-12{margin-left:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-pre-1{margin-right:8.33333%}.grid-manual .md-pre-2{margin-right:16.66667%}.grid-manual .md-pre-3{margin-right:25%}.grid-manual .md-pre-4{margin-right:33.33333%}.grid-manual .md-pre-5{margin-right:41.66667%}.grid-manual .md-pre-6{margin-right:50%}.grid-manual .md-pre-7{margin-right:58.33333%}.grid-manual .md-pre-8{margin-right:66.66667%}.grid-manual .md-pre-9{margin-right:75%}.grid-manual .md-pre-10{margin-right:83.33333%}.grid-manual .md-pre-11{margin-right:91.66667%}.grid-manual .md-pre-12{margin-right:100%}.grid-manual .md-post-1{margin-left:8.33333%}.grid-manual .md-post-2{margin-left:16.66667%}.grid-manual .md-post-3{margin-left:25%}.grid-manual .md-post-4{margin-left:33.33333%}.grid-manual .md-post-5{margin-left:41.66667%}.grid-manual .md-post-6{margin-left:50%}.grid-manual .md-post-7{margin-left:58.33333%}.grid-manual .md-post-8{margin-left:66.66667%}.grid-manual .md-post-9{margin-left:75%}.grid-manual .md-post-10{margin-left:83.33333%}.grid-manual .md-post-11{margin-left:91.66667%}.grid-manual .md-post-12{margin-left:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-pre-1{margin-right:8.33333%}.grid-manual .lg-pre-2{margin-right:16.66667%}.grid-manual .lg-pre-3{margin-right:25%}.grid-manual .lg-pre-4{margin-right:33.33333%}.grid-manual .lg-pre-5{margin-right:41.66667%}.grid-manual .lg-pre-6{margin-right:50%}.grid-manual .lg-pre-7{margin-right:58.33333%}.grid-manual .lg-pre-8{margin-right:66.66667%}.grid-manual .lg-pre-9{margin-right:75%}.grid-manual .lg-pre-10{margin-right:83.33333%}.grid-manual .lg-pre-11{margin-right:91.66667%}.grid-manual .lg-pre-12{margin-right:100%}.grid-manual .lg-post-1{margin-left:8.33333%}.grid-manual .lg-post-2{margin-left:16.66667%}.grid-manual .lg-post-3{margin-left:25%}.grid-manual .lg-post-4{margin-left:33.33333%}.grid-manual .lg-post-5{margin-left:41.66667%}.grid-manual .lg-post-6{margin-left:50%}.grid-manual .lg-post-7{margin-left:58.33333%}.grid-manual .lg-post-8{margin-left:66.66667%}.grid-manual .lg-post-9{margin-left:75%}.grid-manual .lg-post-10{margin-left:83.33333%}.grid-manual .lg-post-11{margin-left:91.66667%}.grid-manual .lg-post-12{margin-left:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-pre-1{margin-right:8.33333%}.grid-manual .xl-pre-2{margin-right:16.66667%}.grid-manual .xl-pre-3{margin-right:25%}.grid-manual .xl-pre-4{margin-right:33.33333%}.grid-manual .xl-pre-5{margin-right:41.66667%}.grid-manual .xl-pre-6{margin-right:50%}.grid-manual .xl-pre-7{margin-right:58.33333%}.grid-manual .xl-pre-8{margin-right:66.66667%}.grid-manual .xl-pre-9{margin-right:75%}.grid-manual .xl-pre-10{margin-right:83.33333%}.grid-manual .xl-pre-11{margin-right:91.66667%}.grid-manual .xl-pre-12{margin-right:100%}.grid-manual .xl-post-1{margin-left:8.33333%}.grid-manual .xl-post-2{margin-left:16.66667%}.grid-manual .xl-post-3{margin-left:25%}.grid-manual .xl-post-4{margin-left:33.33333%}.grid-manual .xl-post-5{margin-left:41.66667%}.grid-manual .xl-post-6{margin-left:50%}.grid-manual .xl-post-7{margin-left:58.33333%}.grid-manual .xl-post-8{margin-left:66.66667%}.grid-manual .xl-post-9{margin-left:75%}.grid-manual .xl-post-10{margin-left:83.33333%}.grid-manual .xl-post-11{margin-left:91.66667%}.grid-manual .xl-post-12{margin-left:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-right:0;margin-left:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .gallery-12 .gallery-item{width:100%;float:right}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1h1h.layout-flush,.layout-1q1h1q.layout,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout,.layout-1q1q1h.layout-flush,.layout-1q3q.layout,.layout-1q3q.layout-flush,.layout-1t1t1t.layout,.layout-1t1t1t.layout-flush,.layout-1t2t.layout,.layout-1t2t.layout-flush,.layout-flush,.layout-full{margin-left:auto;margin-right:auto;max-width:73.125rem}.layout-1h1h.layout-flush:after,.layout-1h1h.layout-reversed:after,.layout-1h1h.layout:after,.layout-1q1h1q.layout-flush:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout-flush:after,.layout-1q1q1h.layout-reversed:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout-flush:after,.layout-1q3q.layout-reversed:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout-flush:after,.layout-1t1t1t.layout-reversed:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout-flush:after,.layout-1t2t.layout-reversed:after,.layout-1t2t.layout:after,.layout-flush:after,.layout-full:after,.layout-view-1h1h.layout-view-flush:after,.layout-view-1h1h.layout-view-reversed:after,.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view-flush:after,.layout-view-1t2t.layout-view-reversed:after,.layout-view-1t2t.layout-view:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view,.layout-view-1h1h.layout-view-flush,.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view,.layout-view-1q3q.layout-view-flush,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view,.layout-view-1t2t.layout-view-flush,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:right;margin-right:0;margin-left:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:left;margin-left:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:right;margin-right:0}}.card,.slat,.well{padding:1.25rem}.depth--3{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.zebra-stripe>:nth-child(odd),body{background:#efefef}.card,.depth-1,.depth-2,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2{box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 * https://github.com/filamentgroup/a-font-garde * Copyright (c) 2015 Filament Group c/o Zach Leatherman * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat} \ No newline at end of file diff --git a/pldoc/static/sass/_lib.scss b/pldoc/static/sass/_lib.scss index 3ba973fd..a611ea01 100644 --- a/pldoc/static/sass/_lib.scss +++ b/pldoc/static/sass/_lib.scss @@ -3,13 +3,13 @@ // About: third party libraries and dependencies import -@import '../../../bower_components/bourbon/app/assets/stylesheets/bourbon'; -@import '../../../bower_components/susy/sass/susy'; -@import '../../../bower_components/breakpoint-sass/stylesheets/breakpoint'; +@import '../../../node_modules/bourbon/app/assets/stylesheets/bourbon'; +@import '../../../node_modules/susy/sass/susy'; +@import '../../../node_modules/breakpoint-sass/stylesheets/breakpoint'; // reference RTL/LTR specific libs @if $layout-direction == rtl { - @import '../../../bower_components/bi-app-sass/bi-app/bi-app-rtl'; + @import '../../../node_modules/bi-app-sass/bi-app/bi-app-rtl'; } @else { - @import '../../../bower_components/bi-app-sass/bi-app/bi-app-ltr'; + @import '../../../node_modules/bi-app-sass/bi-app/bi-app-ltr'; } diff --git a/public/css/main-ltr.css b/public/css/main-ltr.css index d4412b47..4a8c6b47 100644 --- a/public/css/main-ltr.css +++ b/public/css/main-ltr.css @@ -1718,7 +1718,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1743,7 +1742,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1768,7 +1766,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1782,7 +1779,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1870,7 +1866,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1898,7 +1893,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -9321,7 +9315,6 @@ html, body { .pldoc-pattern-colors .example-color:hover, .pldoc-pattern-colors .example-color:focus, .pldoc-pattern-colors .example-color:active { -webkit-transform: scale(1.02); - -ms-transform: scale(1.02); transform: scale(1.02); z-index: 10; } diff --git a/public/css/main-ltr.min.css b/public/css/main-ltr.min.css index a1e5eac4..a28db3d6 100644 --- a/public/css/main-ltr.min.css +++ b/public/css/main-ltr.min.css @@ -1,4 +1,4 @@ -.highlight .cm,.highlight .ge,.highlight .sd,dfn{font-style:italic}.bg-replace,svg:not(:root){overflow:hidden}.badge,.bg-replace,.is-copyable{white-space:nowrap}.highlight .hll{background-color:#ffc}.highlight .c{color:#999}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069}.highlight .o{color:#555}.highlight .cm{color:#09f}.highlight .cp{color:#099}.highlight .c1,.highlight .cs{color:#999}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .gr{color:red}.highlight .gh{color:#030}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#069}.highlight .kt{color:#078}.highlight .m{color:#f60}.highlight .s{color:#d44950}.highlight .na{color:#4f9fcf}.highlight .nb{color:#366}.highlight .nc{color:#0a8}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999}.highlight .ne{color:#c00}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf}.highlight .nt{color:#2f6f9f}.highlight .nv{color:#033}.highlight .ow{color:#000}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f60}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .se,.highlight .sh{color:#c30}.highlight .sd{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .vc,.highlight .vg,.highlight .vi{color:#033}.highlight .il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.alert-copy>:last-child,.example-set:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.pldoc-tab-heading,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery,.pldoc-nav .nav-list,.pldoc-pattern-depth .zebra-stripe,.pldoc-pattern-grid .example-grid-semantic .list-related,.pldoc-pattern-header .pldoc-pattern-meta,.pldoc-tab-labels,.pldoc-view-example-depth .zebra-stripe,.pldoc-view-example-grid #example-grid-1 .list-related{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-combo:last-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.alert-title,.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.alert-title,.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600;line-height:1.6}.emphasized.alert-title,.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.badge,.hd-8{letter-spacing:.03125rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.alert-copy dl,.alert-copy ol,.alert-copy p,.alert-copy ul,.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul,.example-layout .example-label dl,.example-layout .example-label ol,.example-layout .example-label p,.example-layout .example-label ul,.pldoc-pattern-grid .col .example-label dl,.pldoc-pattern-grid .col .example-label ol,.pldoc-pattern-grid .col .example-label p,.pldoc-pattern-grid .col .example-label ul,.pldoc-pattern-grid .example-grid .example-label dl,.pldoc-pattern-grid .example-grid .example-label ol,.pldoc-pattern-grid .example-grid .example-label p,.pldoc-pattern-grid .example-grid .example-label ul,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label dl,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ol,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label p,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story .example-label p,.pldoc-pattern-grid .example-grid-semantic .story .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ul,.pldoc-pattern-grid .gallery-item .example-label dl,.pldoc-pattern-grid .gallery-item .example-label ol,.pldoc-pattern-grid .gallery-item .example-label p,.pldoc-pattern-grid .gallery-item .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-main .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-main .example-label p,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ul,.pldoc-view-example-grid #example-grid-1 .story .example-label dl,.pldoc-view-example-grid #example-grid-1 .story .example-label ol,.pldoc-view-example-grid #example-grid-1 .story .example-label p,.pldoc-view-example-grid #example-grid-1 .story .example-label ul,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ul,.pldoc-view-example-grid .example-grid .col .example-label dl,.pldoc-view-example-grid .example-grid .col .example-label ol,.pldoc-view-example-grid .example-grid .col .example-label p,.pldoc-view-example-grid .example-grid .col .example-label ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.alert-copy,.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro,.example-layout .example-label,.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-left:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:after{display:inline-block;margin-left:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-left:1.04167%;padding-right:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;left:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;left:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;right:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-right:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:right;margin-right:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container .col.col-full,.row,.row::after{clear:both}.grid-container,.pldoc-view-example-depth .example-set,.pldoc-view-example-layouts .example-layout-hd{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container::after,.pldoc-view-example-depth .example-set::after,.pldoc-view-example-layouts .example-layout-hd::after{clear:both;content:"";display:table}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-left:0}.grid-container .col.col-full{width:100%;float:left;margin-left:0;margin-right:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:left}.grid-manual .col-2{width:16.66667%;float:left}.grid-manual .col-3{width:25%;float:left}.grid-manual .col-4{width:33.33333%;float:left}.grid-manual .col-5{width:41.66667%;float:left}.grid-manual .col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .col-7{width:58.33333%;float:left}.grid-manual .col-8{width:66.66667%;float:left}.grid-manual .col-9{width:75%;float:left}.grid-manual .col-10{width:83.33333%;float:left}.grid-manual .col-11{width:91.66667%;float:left}.grid-manual .col-12{width:100%;float:left}.grid-manual .pre-1{margin-left:8.33333%}.grid-manual .pre-2{margin-left:16.66667%}.grid-manual .pre-3{margin-left:25%}.grid-manual .pre-4{margin-left:33.33333%}.grid-manual .pre-5{margin-left:41.66667%}.grid-manual .pre-6{margin-left:50%}.grid-manual .pre-7{margin-left:58.33333%}.grid-manual .pre-8{margin-left:66.66667%}.grid-manual .pre-9{margin-left:75%}.grid-manual .pre-10{margin-left:83.33333%}.grid-manual .pre-11{margin-left:91.66667%}.grid-manual .pre-12{margin-left:100%}.grid-manual .post-1{margin-left:8.33333%}.grid-manual .post-2{margin-left:16.66667%}.grid-manual .post-3{margin-left:25%}.grid-manual .post-4{margin-left:33.33333%}.grid-manual .post-5{margin-left:41.66667%}.grid-manual .post-6{margin-left:50%}.grid-manual .post-7{margin-left:58.33333%}.grid-manual .post-8{margin-left:66.66667%}.grid-manual .post-9{margin-left:75%}.grid-manual .post-10{margin-left:83.33333%}.grid-manual .post-11{margin-left:91.66667%}.grid-manual .post-12{margin-left:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-pre-1{margin-left:8.33333%}.grid-manual .sm-pre-2{margin-left:16.66667%}.grid-manual .sm-pre-3{margin-left:25%}.grid-manual .sm-pre-4{margin-left:33.33333%}.grid-manual .sm-pre-5{margin-left:41.66667%}.grid-manual .sm-pre-6{margin-left:50%}.grid-manual .sm-pre-7{margin-left:58.33333%}.grid-manual .sm-pre-8{margin-left:66.66667%}.grid-manual .sm-pre-9{margin-left:75%}.grid-manual .sm-pre-10{margin-left:83.33333%}.grid-manual .sm-pre-11{margin-left:91.66667%}.grid-manual .sm-pre-12{margin-left:100%}.grid-manual .sm-post-1{margin-right:8.33333%}.grid-manual .sm-post-2{margin-right:16.66667%}.grid-manual .sm-post-3{margin-right:25%}.grid-manual .sm-post-4{margin-right:33.33333%}.grid-manual .sm-post-5{margin-right:41.66667%}.grid-manual .sm-post-6{margin-right:50%}.grid-manual .sm-post-7{margin-right:58.33333%}.grid-manual .sm-post-8{margin-right:66.66667%}.grid-manual .sm-post-9{margin-right:75%}.grid-manual .sm-post-10{margin-right:83.33333%}.grid-manual .sm-post-11{margin-right:91.66667%}.grid-manual .sm-post-12{margin-right:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-pre-1{margin-left:8.33333%}.grid-manual .md-pre-2{margin-left:16.66667%}.grid-manual .md-pre-3{margin-left:25%}.grid-manual .md-pre-4{margin-left:33.33333%}.grid-manual .md-pre-5{margin-left:41.66667%}.grid-manual .md-pre-6{margin-left:50%}.grid-manual .md-pre-7{margin-left:58.33333%}.grid-manual .md-pre-8{margin-left:66.66667%}.grid-manual .md-pre-9{margin-left:75%}.grid-manual .md-pre-10{margin-left:83.33333%}.grid-manual .md-pre-11{margin-left:91.66667%}.grid-manual .md-pre-12{margin-left:100%}.grid-manual .md-post-1{margin-right:8.33333%}.grid-manual .md-post-2{margin-right:16.66667%}.grid-manual .md-post-3{margin-right:25%}.grid-manual .md-post-4{margin-right:33.33333%}.grid-manual .md-post-5{margin-right:41.66667%}.grid-manual .md-post-6{margin-right:50%}.grid-manual .md-post-7{margin-right:58.33333%}.grid-manual .md-post-8{margin-right:66.66667%}.grid-manual .md-post-9{margin-right:75%}.grid-manual .md-post-10{margin-right:83.33333%}.grid-manual .md-post-11{margin-right:91.66667%}.grid-manual .md-post-12{margin-right:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-pre-1{margin-left:8.33333%}.grid-manual .lg-pre-2{margin-left:16.66667%}.grid-manual .lg-pre-3{margin-left:25%}.grid-manual .lg-pre-4{margin-left:33.33333%}.grid-manual .lg-pre-5{margin-left:41.66667%}.grid-manual .lg-pre-6{margin-left:50%}.grid-manual .lg-pre-7{margin-left:58.33333%}.grid-manual .lg-pre-8{margin-left:66.66667%}.grid-manual .lg-pre-9{margin-left:75%}.grid-manual .lg-pre-10{margin-left:83.33333%}.grid-manual .lg-pre-11{margin-left:91.66667%}.grid-manual .lg-pre-12{margin-left:100%}.grid-manual .lg-post-1{margin-right:8.33333%}.grid-manual .lg-post-2{margin-right:16.66667%}.grid-manual .lg-post-3{margin-right:25%}.grid-manual .lg-post-4{margin-right:33.33333%}.grid-manual .lg-post-5{margin-right:41.66667%}.grid-manual .lg-post-6{margin-right:50%}.grid-manual .lg-post-7{margin-right:58.33333%}.grid-manual .lg-post-8{margin-right:66.66667%}.grid-manual .lg-post-9{margin-right:75%}.grid-manual .lg-post-10{margin-right:83.33333%}.grid-manual .lg-post-11{margin-right:91.66667%}.grid-manual .lg-post-12{margin-right:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-pre-1{margin-left:8.33333%}.grid-manual .xl-pre-2{margin-left:16.66667%}.grid-manual .xl-pre-3{margin-left:25%}.grid-manual .xl-pre-4{margin-left:33.33333%}.grid-manual .xl-pre-5{margin-left:41.66667%}.grid-manual .xl-pre-6{margin-left:50%}.grid-manual .xl-pre-7{margin-left:58.33333%}.grid-manual .xl-pre-8{margin-left:66.66667%}.grid-manual .xl-pre-9{margin-left:75%}.grid-manual .xl-pre-10{margin-left:83.33333%}.grid-manual .xl-pre-11{margin-left:91.66667%}.grid-manual .xl-pre-12{margin-left:100%}.grid-manual .xl-post-1{margin-right:8.33333%}.grid-manual .xl-post-2{margin-right:16.66667%}.grid-manual .xl-post-3{margin-right:25%}.grid-manual .xl-post-4{margin-right:33.33333%}.grid-manual .xl-post-5{margin-right:41.66667%}.grid-manual .xl-post-6{margin-right:50%}.grid-manual .xl-post-7{margin-right:58.33333%}.grid-manual .xl-post-8{margin-right:66.66667%}.grid-manual .xl-post-9{margin-right:75%}.grid-manual .xl-post-10{margin-right:83.33333%}.grid-manual .xl-post-11{margin-right:91.66667%}.grid-manual .xl-post-12{margin-right:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-left:0;margin-right:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .gallery-12 .gallery-item{width:100%;float:left}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1q1h1q.layout,.layout-1q1q1h.layout,.layout-1q3q.layout,.layout-1t1t1t.layout,.layout-1t2t.layout,.layout-full{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout:after,.layout-full:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-flush,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout-flush,.layout-1q3q.layout-flush,.layout-1t1t1t.layout-flush,.layout-1t2t.layout-flush,.layout-flush{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-flush:after,.layout-1q1h1q.layout-flush:after,.layout-1q1q1h.layout-flush:after,.layout-1q3q.layout-flush:after,.layout-1t1t1t.layout-flush:after,.layout-1t2t.layout-flush:after,.layout-flush:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-reversed:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1q1h.layout-reversed:after,.layout-1q3q.layout-reversed:after,.layout-1t1t1t.layout-reversed:after,.layout-1t2t.layout-reversed:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view,.layout-view-1q1h1q.layout-view,.layout-view-1q3q.layout-view,.layout-view-1t1t1t.layout-view,.layout-view-1t2t.layout-view{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-flush,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q3q.layout-view-flush,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t2t.layout-view-flush{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-flush:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t2t.layout-view-flush:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-reversed:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t2t.layout-view-reversed:after{content:" ";display:block;clear:both}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:left;margin-left:0;margin-right:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:right;margin-right:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:left;margin-left:0}}.card,.slat,.well{padding:1.25rem}.depth--3,.pldoc-wrapper-content-supplemental{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.pldoc,.pldoc-wrapper-content-main,.zebra-stripe>:nth-child(odd),body{background:#efefef}.depth-1,.pldoc-view-example .pldoc-wrapper-view-header,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2,.pldoc-tab-content{background:#fcfcfc;box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 +.highlight .cm,.highlight .ge,.highlight .sd,dfn{font-style:italic}.bg-replace,svg:not(:root){overflow:hidden}.badge,.bg-replace,.is-copyable{white-space:nowrap}.highlight .hll{background-color:#ffc}.highlight .c{color:#999}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069}.highlight .o{color:#555}.highlight .cm{color:#09f}.highlight .cp{color:#099}.highlight .c1,.highlight .cs{color:#999}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .gr{color:red}.highlight .gh{color:#030}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#069}.highlight .kt{color:#078}.highlight .m{color:#f60}.highlight .s{color:#d44950}.highlight .na{color:#4f9fcf}.highlight .nb{color:#366}.highlight .nc{color:#0a8}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999}.highlight .ne{color:#c00}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf}.highlight .nt{color:#2f6f9f}.highlight .nv{color:#033}.highlight .ow{color:#000}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f60}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .se,.highlight .sh{color:#c30}.highlight .sd{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .vc,.highlight .vg,.highlight .vi{color:#033}.highlight .il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.alert-copy>:last-child,.example-set:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.pldoc-tab-heading,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery,.pldoc-nav .nav-list,.pldoc-pattern-depth .zebra-stripe,.pldoc-pattern-grid .example-grid-semantic .list-related,.pldoc-pattern-header .pldoc-pattern-meta,.pldoc-tab-labels,.pldoc-view-example-depth .zebra-stripe,.pldoc-view-example-grid #example-grid-1 .list-related{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-combo:last-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.alert-title,.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.alert-title,.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600;line-height:1.6}.emphasized.alert-title,.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.badge,.hd-8{letter-spacing:.03125rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.alert-copy dl,.alert-copy ol,.alert-copy p,.alert-copy ul,.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul,.example-layout .example-label dl,.example-layout .example-label ol,.example-layout .example-label p,.example-layout .example-label ul,.pldoc-pattern-grid .col .example-label dl,.pldoc-pattern-grid .col .example-label ol,.pldoc-pattern-grid .col .example-label p,.pldoc-pattern-grid .col .example-label ul,.pldoc-pattern-grid .example-grid .example-label dl,.pldoc-pattern-grid .example-grid .example-label ol,.pldoc-pattern-grid .example-grid .example-label p,.pldoc-pattern-grid .example-grid .example-label ul,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label dl,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ol,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label p,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story .example-label p,.pldoc-pattern-grid .example-grid-semantic .story .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ul,.pldoc-pattern-grid .gallery-item .example-label dl,.pldoc-pattern-grid .gallery-item .example-label ol,.pldoc-pattern-grid .gallery-item .example-label p,.pldoc-pattern-grid .gallery-item .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-main .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-main .example-label p,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ul,.pldoc-view-example-grid #example-grid-1 .story .example-label dl,.pldoc-view-example-grid #example-grid-1 .story .example-label ol,.pldoc-view-example-grid #example-grid-1 .story .example-label p,.pldoc-view-example-grid #example-grid-1 .story .example-label ul,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ul,.pldoc-view-example-grid .example-grid .col .example-label dl,.pldoc-view-example-grid .example-grid .col .example-label ol,.pldoc-view-example-grid .example-grid .col .example-label p,.pldoc-view-example-grid .example-grid .col .example-label ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.alert-copy,.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro,.example-layout .example-label,.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-left:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:after{display:inline-block;margin-left:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-left:1.04167%;padding-right:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;left:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;left:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;right:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-right:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-right:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:right;margin-right:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container .col.col-full,.row,.row::after{clear:both}.grid-container,.pldoc-view-example-depth .example-set,.pldoc-view-example-layouts .example-layout-hd{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container::after,.pldoc-view-example-depth .example-set::after,.pldoc-view-example-layouts .example-layout-hd::after{clear:both;content:"";display:table}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-left:0}.grid-container .col.col-full{width:100%;float:left;margin-left:0;margin-right:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:left}.grid-manual .col-2{width:16.66667%;float:left}.grid-manual .col-3{width:25%;float:left}.grid-manual .col-4{width:33.33333%;float:left}.grid-manual .col-5{width:41.66667%;float:left}.grid-manual .col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .col-7{width:58.33333%;float:left}.grid-manual .col-8{width:66.66667%;float:left}.grid-manual .col-9{width:75%;float:left}.grid-manual .col-10{width:83.33333%;float:left}.grid-manual .col-11{width:91.66667%;float:left}.grid-manual .col-12{width:100%;float:left}.grid-manual .pre-1{margin-left:8.33333%}.grid-manual .pre-2{margin-left:16.66667%}.grid-manual .pre-3{margin-left:25%}.grid-manual .pre-4{margin-left:33.33333%}.grid-manual .pre-5{margin-left:41.66667%}.grid-manual .pre-6{margin-left:50%}.grid-manual .pre-7{margin-left:58.33333%}.grid-manual .pre-8{margin-left:66.66667%}.grid-manual .pre-9{margin-left:75%}.grid-manual .pre-10{margin-left:83.33333%}.grid-manual .pre-11{margin-left:91.66667%}.grid-manual .pre-12{margin-left:100%}.grid-manual .post-1{margin-left:8.33333%}.grid-manual .post-2{margin-left:16.66667%}.grid-manual .post-3{margin-left:25%}.grid-manual .post-4{margin-left:33.33333%}.grid-manual .post-5{margin-left:41.66667%}.grid-manual .post-6{margin-left:50%}.grid-manual .post-7{margin-left:58.33333%}.grid-manual .post-8{margin-left:66.66667%}.grid-manual .post-9{margin-left:75%}.grid-manual .post-10{margin-left:83.33333%}.grid-manual .post-11{margin-left:91.66667%}.grid-manual .post-12{margin-left:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .sm-pre-1{margin-left:8.33333%}.grid-manual .sm-pre-2{margin-left:16.66667%}.grid-manual .sm-pre-3{margin-left:25%}.grid-manual .sm-pre-4{margin-left:33.33333%}.grid-manual .sm-pre-5{margin-left:41.66667%}.grid-manual .sm-pre-6{margin-left:50%}.grid-manual .sm-pre-7{margin-left:58.33333%}.grid-manual .sm-pre-8{margin-left:66.66667%}.grid-manual .sm-pre-9{margin-left:75%}.grid-manual .sm-pre-10{margin-left:83.33333%}.grid-manual .sm-pre-11{margin-left:91.66667%}.grid-manual .sm-pre-12{margin-left:100%}.grid-manual .sm-post-1{margin-right:8.33333%}.grid-manual .sm-post-2{margin-right:16.66667%}.grid-manual .sm-post-3{margin-right:25%}.grid-manual .sm-post-4{margin-right:33.33333%}.grid-manual .sm-post-5{margin-right:41.66667%}.grid-manual .sm-post-6{margin-right:50%}.grid-manual .sm-post-7{margin-right:58.33333%}.grid-manual .sm-post-8{margin-right:66.66667%}.grid-manual .sm-post-9{margin-right:75%}.grid-manual .sm-post-10{margin-right:83.33333%}.grid-manual .sm-post-11{margin-right:91.66667%}.grid-manual .sm-post-12{margin-right:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .md-pre-1{margin-left:8.33333%}.grid-manual .md-pre-2{margin-left:16.66667%}.grid-manual .md-pre-3{margin-left:25%}.grid-manual .md-pre-4{margin-left:33.33333%}.grid-manual .md-pre-5{margin-left:41.66667%}.grid-manual .md-pre-6{margin-left:50%}.grid-manual .md-pre-7{margin-left:58.33333%}.grid-manual .md-pre-8{margin-left:66.66667%}.grid-manual .md-pre-9{margin-left:75%}.grid-manual .md-pre-10{margin-left:83.33333%}.grid-manual .md-pre-11{margin-left:91.66667%}.grid-manual .md-pre-12{margin-left:100%}.grid-manual .md-post-1{margin-right:8.33333%}.grid-manual .md-post-2{margin-right:16.66667%}.grid-manual .md-post-3{margin-right:25%}.grid-manual .md-post-4{margin-right:33.33333%}.grid-manual .md-post-5{margin-right:41.66667%}.grid-manual .md-post-6{margin-right:50%}.grid-manual .md-post-7{margin-right:58.33333%}.grid-manual .md-post-8{margin-right:66.66667%}.grid-manual .md-post-9{margin-right:75%}.grid-manual .md-post-10{margin-right:83.33333%}.grid-manual .md-post-11{margin-right:91.66667%}.grid-manual .md-post-12{margin-right:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .lg-pre-1{margin-left:8.33333%}.grid-manual .lg-pre-2{margin-left:16.66667%}.grid-manual .lg-pre-3{margin-left:25%}.grid-manual .lg-pre-4{margin-left:33.33333%}.grid-manual .lg-pre-5{margin-left:41.66667%}.grid-manual .lg-pre-6{margin-left:50%}.grid-manual .lg-pre-7{margin-left:58.33333%}.grid-manual .lg-pre-8{margin-left:66.66667%}.grid-manual .lg-pre-9{margin-left:75%}.grid-manual .lg-pre-10{margin-left:83.33333%}.grid-manual .lg-pre-11{margin-left:91.66667%}.grid-manual .lg-pre-12{margin-left:100%}.grid-manual .lg-post-1{margin-right:8.33333%}.grid-manual .lg-post-2{margin-right:16.66667%}.grid-manual .lg-post-3{margin-right:25%}.grid-manual .lg-post-4{margin-right:33.33333%}.grid-manual .lg-post-5{margin-right:41.66667%}.grid-manual .lg-post-6{margin-right:50%}.grid-manual .lg-post-7{margin-right:58.33333%}.grid-manual .lg-post-8{margin-right:66.66667%}.grid-manual .lg-post-9{margin-right:75%}.grid-manual .lg-post-10{margin-right:83.33333%}.grid-manual .lg-post-11{margin-right:91.66667%}.grid-manual .lg-post-12{margin-right:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-3{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-6{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-9{width:75%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-col-12{width:100%;float:left;padding-left:1.04167%;padding-right:1.04167%}.grid-manual .xl-pre-1{margin-left:8.33333%}.grid-manual .xl-pre-2{margin-left:16.66667%}.grid-manual .xl-pre-3{margin-left:25%}.grid-manual .xl-pre-4{margin-left:33.33333%}.grid-manual .xl-pre-5{margin-left:41.66667%}.grid-manual .xl-pre-6{margin-left:50%}.grid-manual .xl-pre-7{margin-left:58.33333%}.grid-manual .xl-pre-8{margin-left:66.66667%}.grid-manual .xl-pre-9{margin-left:75%}.grid-manual .xl-pre-10{margin-left:83.33333%}.grid-manual .xl-pre-11{margin-left:91.66667%}.grid-manual .xl-pre-12{margin-left:100%}.grid-manual .xl-post-1{margin-right:8.33333%}.grid-manual .xl-post-2{margin-right:16.66667%}.grid-manual .xl-post-3{margin-right:25%}.grid-manual .xl-post-4{margin-right:33.33333%}.grid-manual .xl-post-5{margin-right:41.66667%}.grid-manual .xl-post-6{margin-right:50%}.grid-manual .xl-post-7{margin-right:58.33333%}.grid-manual .xl-post-8{margin-right:66.66667%}.grid-manual .xl-post-9{margin-right:75%}.grid-manual .xl-post-10{margin-right:83.33333%}.grid-manual .xl-post-11{margin-right:91.66667%}.grid-manual .xl-post-12{margin-right:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-left:0;margin-right:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .gallery-12 .gallery-item{width:100%;float:left}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:left}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-left:8.51064%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-left:59.57447%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-left:93.61702%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:left}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-left:17.02128%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-left:85.10638%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:left}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:left}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:left}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-left:42.55319%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:left}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:left}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:left}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:left}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:left}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:left}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-right:-100%;clear:both;margin-left:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:left}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-left:0;margin-right:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1q1h1q.layout,.layout-1q1q1h.layout,.layout-1q3q.layout,.layout-1t1t1t.layout,.layout-1t2t.layout,.layout-full{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout:after,.layout-full:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-flush,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout-flush,.layout-1q3q.layout-flush,.layout-1t1t1t.layout-flush,.layout-1t2t.layout-flush,.layout-flush{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-flush:after,.layout-1q1h1q.layout-flush:after,.layout-1q1q1h.layout-flush:after,.layout-1q3q.layout-flush:after,.layout-1t1t1t.layout-flush:after,.layout-1t2t.layout-flush:after,.layout-flush:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-reversed:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1q1h.layout-reversed:after,.layout-1q3q.layout-reversed:after,.layout-1t1t1t.layout-reversed:after,.layout-1t2t.layout-reversed:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view,.layout-view-1q1h1q.layout-view,.layout-view-1q3q.layout-view,.layout-view-1t1t1t.layout-view,.layout-view-1t2t.layout-view{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-flush,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q3q.layout-view-flush,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t2t.layout-view-flush{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-flush:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t2t.layout-view-flush:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-reversed:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t2t.layout-view-reversed:after{content:" ";display:block;clear:both}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:left;margin-left:0;margin-right:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:right;margin-right:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:left;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:right;padding-left:1.04167%;padding-right:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:left;margin-left:0}}.card,.slat,.well{padding:1.25rem}.depth--3,.pldoc-wrapper-content-supplemental{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.pldoc,.pldoc-wrapper-content-main,.zebra-stripe>:nth-child(odd),body{background:#efefef}.depth-1,.pldoc-view-example .pldoc-wrapper-view-header,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2,.pldoc-tab-content{background:#fcfcfc;box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 * https://github.com/filamentgroup/a-font-garde * Copyright (c) 2015 Filament Group c/o Zach Leatherman - * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.is-copyable,.pldoc-pattern-markup code{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace}.badge,.pldoc-nav-title{text-transform:uppercase}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat}body,html{height:100%;color:#4d4b4b}.example-set{padding-bottom:2.5rem;border-bottom:.125rem solid #e5e9eb;margin-bottom:2.5rem}.example-set::after{clear:both;content:"";display:table}.example-set .button-overlay-demo{padding:3.75rem 1.875rem;background:url(../images/bg-overlay-example.png) 0 50% no-repeat #0ea6ec;background-size:cover}.is-copyable{display:inline-block}.wrapper-alert{margin-bottom:.625rem}.alert{border-left:.25rem solid #cdd7db;border-radius:.1875rem;padding:1.25rem;background-color:#e7e6e6}.alert-information{border-color:#0079bc}.alert-warning{border-color:#fdbc56}.alert-error{border-color:#b20610}.alert-success{border-color:#25b85a}.alert-ui-toolkit{border-color:#ffde20}.badge{text-align:center;border-radius:.9375rem;padding:.125rem .625rem;font-size:.625rem;font-weight:700}.badge .badge-abbreviation{border-bottom:none}.badge-ui-toolkit{background-color:#ffde20;color:#34383a}.pldoc-header-site .pldoc-header-site-title{display:inline-block;vertical-align:middle}@media (min-width:1024px){.pldoc-header-site,.pldoc-header-site .pldoc-header-site-title{margin:0}}.pldoc-header-site .pldoc-header-site-title .title-name{display:block;margin-bottom:.625rem;color:#fcfcfc;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.0625rem}.pldoc-header-site .pldoc-header-site-title .title-name:active,.pldoc-header-site .pldoc-header-site-title .title-name:focus,.pldoc-header-site .pldoc-header-site-title .title-name:hover{color:#0ea6ec}.pldoc-header-site .pldoc-header-site-title .pldoc-link{border:none}.pldoc-header-site .pldoc-title-description{display:block;color:#a7a4a4;font-weight:400}.pldoc-nav{margin-bottom:3.75rem}.pldoc-nav:last-child{margin-bottom:0}.pldoc-nav .nav-list{margin:0}.pldoc-nav .pldoc-link{-webkit-transition:background .25s ease-in-out;transition:background .25s ease-in-out;display:block;border-bottom:1px solid #111010;padding:.625rem 1.875rem;color:#e7e6e6;text-decoration:none;font-size:.875rem;font-weight:600}.pldoc-nav .pldoc-link:active,.pldoc-nav .pldoc-link:focus,.pldoc-nav .pldoc-link:hover{color:#53a4d1;background:#111010}.pldoc-nav .nav-list-item:last-child .pldoc-link{border-bottom:0}.pldoc-nav .nav-list-item.is-current .pldoc-link:before{display:inline-block}.pldoc-nav .list-patterns .pattern::after{clear:both;content:"";display:table}.pldoc-nav .list-patterns .pattern .badge,.pldoc-nav .list-patterns .pattern .pattern-title{display:inline-block}.pldoc-nav .list-patterns .pattern .pattern-title{width:80%}.pldoc-nav .list-patterns .pattern .badge{float:right}.pldoc-nav-internal .pldoc-link{position:relative}.pldoc-nav-internal .pldoc-link:before{-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;height:.3125rem;width:.3125rem;position:absolute;top:1.125rem;left:.9375rem;content:'';border-radius:100%;opacity:0;background:#0ea6ec}.pldoc-nav-internal .pldoc-link.is-current{color:#53a4d1;background:#111010}.pldoc-nav-internal .pldoc-link.is-current:before{opacity:1}.pldoc-nav-external .pldoc-link::after{clear:both;content:"";display:table}.pldoc-nav-external .pldoc-link .icon{margin-left:.15625rem;float:right;opacity:.25}.pldoc-nav-external .pldoc-link:active .icon,.pldoc-nav-external .pldoc-link:focus .icon,.pldoc-nav-external .pldoc-link:hover .icon{opacity:1}.pldoc-nav-title{margin:0 1.875rem .625rem;color:#a7a4a4;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.pldoc-tab:focus{outline:0}.pldoc-tab-content{-webkit-transition:box-shadow .5s ease-in-out;transition:box-shadow .5s ease-in-out;border:.0625rem solid #e7e6e6;padding:2.5rem 1.25rem}@media (min-width:768px){.pldoc-tab-content{padding:2.5rem 1.875rem}}.pldoc-settings{background:#efefef;margin-bottom:5rem;padding:1.25rem .625rem}.pldoc-setting{display:inline-block;vertical-align:middle;margin-right:.625rem}.pldoc-setting:last-child{margin-right:0}.pldoc-wrapper-content-supplemental{color:#e7e6e6}.pldoc-footer-site{margin:2.5rem 1.25rem}.pldoc-footer-site-copyright .pldoc-copy{font-size:.875rem;color:#a7a4a4}.pldoc-pattern .example-set-hd{margin-bottom:1.25rem}.pldoc-pattern-header{margin-bottom:2.5rem;border-bottom:1px solid #6b6969;padding-bottom:1.25rem}.pldoc-tab-labels{border-bottom:.25rem solid #e7e6e6}.pldoc-tab-labels::after{clear:both;content:"";display:table}.pldoc-tab-label{float:left;position:relative;bottom:-.3125rem}.pldoc-tab-label .pldoc-link{display:block;margin:0;border-width:0 0 .25rem;border-color:transparent;border-style:solid;background:0 0;padding:.625rem .9375rem;font-weight:600;color:#6b6969}.pldoc-tab-label .pldoc-link:focus,.pldoc-tab-label .pldoc-link:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}.pldoc-tab-label .pldoc-link.is-active{border-bottom-color:#4d4b4b;color:#4d4b4b}.pldoc-pattern-colors .brand-primary.base{background:#0079bc}.pldoc-pattern-colors .brand-primary.light{background:#53a4d1}.pldoc-pattern-colors .brand-primary.x-light{background:#a6cfe6}.pldoc-pattern-colors .brand-primary.dark{background:#065683}.pldoc-pattern-colors .brand-primary.x-dark{background:#0b344a}.pldoc-pattern-colors .brand-primary.accent{background:#0ea6ec}.pldoc-pattern-colors .brand-primary.x-accent{background:#00abfa}.pldoc-pattern-colors .brand-secondary,.pldoc-pattern-colors .brand-secondary.base{background:#cb598d}.pldoc-pattern-colors .brand-secondary.light{background:#db8fb2}.pldoc-pattern-colors .brand-secondary.x-light{background:#ebc5d6}.pldoc-pattern-colors .brand-secondary.dark{background:#8e4164}.pldoc-pattern-colors .brand-secondary.x-dark{background:#50293b}.pldoc-pattern-colors .brand-secondary.accent{background:#f26caa}.pldoc-pattern-colors .grayscale,.pldoc-pattern-colors .grayscale.base{background:#a7a4a4}.pldoc-pattern-colors .grayscale.light{background:#d2d0d0}.pldoc-pattern-colors .grayscale.x-light{background:#e7e6e6}.pldoc-pattern-colors .grayscale.xx-light{background:#efefef}.pldoc-pattern-colors .grayscale.white{background:#fcfcfc}.pldoc-pattern-colors .grayscale.white-t{background:#fff}.pldoc-pattern-colors .grayscale.dark{background:#6b6969}.pldoc-pattern-colors .grayscale.x-dark{background:#4d4b4b}.pldoc-pattern-colors .grayscale.black{background:#111010}.pldoc-pattern-colors .grayscale.black-t{background:#000}.pldoc-pattern-colors .grayscale.trans{background:rgba(167,164,164,.5)}.pldoc-pattern-colors .grayscale.x-trans{background:rgba(167,164,164,.25)}.pldoc-pattern-colors .grayscale.xx-trans{background:rgba(167,164,164,.05)}.pldoc-pattern-colors .grayscale-cool,.pldoc-pattern-colors .grayscale-cool.base{background:#9eb1b9}.pldoc-pattern-colors .grayscale-cool.light{background:#cdd7db}.pldoc-pattern-colors .grayscale-cool.x-light{background:#e5e9eb}.pldoc-pattern-colors .grayscale-cool.xx-light{background:#eef1f2}.pldoc-pattern-colors .grayscale-cool.dark{background:#586165}.pldoc-pattern-colors .grayscale-cool.x-dark{background:#34383a}.pldoc-pattern-colors .grayscale-cool.trans{background:rgba(158,177,185,.5)}.pldoc-pattern-colors .grayscale-cool.x-trans{background:rgba(158,177,185,.25)}.pldoc-pattern-colors .grayscale-cool.xx-trans{background:rgba(158,177,185,.05)}.pldoc-pattern-colors .success,.pldoc-pattern-colors .success.base{background:#25b85a}.pldoc-pattern-colors .success.light{background:#6cce8f}.pldoc-pattern-colors .success.dark{background:#1e8142}.pldoc-pattern-colors .warning,.pldoc-pattern-colors .warning.base{background:#fdbc56}.pldoc-pattern-colors .warning.light{background:#fdd18d}.pldoc-pattern-colors .warning.dark{background:#af833f}.pldoc-pattern-colors .error,.pldoc-pattern-colors .error.base{background:#b20610}.pldoc-pattern-colors .error.light{background:#ca575e}.pldoc-pattern-colors .error.dark{background:#7d0910}.pldoc-pattern-colors .example-color{-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:100%;float:left;margin-left:0;margin-right:0;position:relative;border:0;border-radius:0;padding:1.25rem;box-shadow:none;color:#fcfcfc}.pldoc-pattern-colors .example-color.fail-a11y-color{border-left:.3125rem solid #fdbc56}.pldoc-pattern-colors .example-color:active,.pldoc-pattern-colors .example-color:focus,.pldoc-pattern-colors .example-color:hover{-webkit-transform:scale(1.02);-ms-transform:scale(1.02);transform:scale(1.02);z-index:10}.pldoc-pattern-colors .example-color.dol .color-class,.pldoc-pattern-colors .example-color.dol .color-meta,.pldoc-pattern-colors .example-color.dol .color-reference{color:#111010}.pldoc-pattern-colors .example-color.lod .color-class,.pldoc-pattern-colors .example-color.lod .color-meta,.pldoc-pattern-colors .example-color.lod .color-reference{color:#fcfcfc}.pldoc-pattern-colors .example-color .color-info{width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:1.25rem}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-info{width:48.93617%;float:left;margin-right:2.12766%;margin-bottom:0}}.pldoc-pattern-colors .example-color .color-class{display:block;width:100%;margin-bottom:.625rem;font-size:.875rem;font-weight:600;text-transform:lowercase}.pldoc-pattern-colors .example-color.base{padding-top:2.5rem;padding-bottom:2.5rem}.pldoc-pattern-colors .example-color.base .color-class{font-size:1rem;font-weight:700}.pldoc-pattern-colors .example-color .color-reference{display:block;font-size:.75rem}.pldoc-pattern-colors .example-color .color-meta{width:100%;float:left;margin-left:0;margin-right:0;font-size:.75rem;color:#fcfcfc}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-meta{width:48.93617%;float:right;margin-right:0;text-align:right}}.pldoc-pattern-colors .example-color .color-meta .color-hex,.pldoc-pattern-colors .example-color .color-meta .color-rgb{vertical-align:middle;text-align:center}.pldoc-pattern-colors .example-color .color-meta .color-rgb{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;margin-right:.625rem}.pldoc-pattern-colors .example-color .color-meta .color-hex{text-transform:uppercase}.pldoc-pattern-buttons .btn{display:inline-block;vertical-align:middle;margin-right:.3125rem;margin-bottom:.625rem}.pldoc-pattern-buttons .btn:last-child{margin-right:0}.pldoc-pattern-icons .example-icon{text-align:center;display:inline-block;width:10rem;margin:0 .9375rem 1.875rem 0}.pldoc-pattern-icons .example-icon .icon-display{width:100%;margin:0 auto .625rem}.pldoc-pattern-icons .example-icon .icon-display .icon{font-size:3rem;color:#0079bc}.pldoc-pattern-icons .example-icon .icon-classname,.pldoc-pattern-icons .example-icon .use-description{font-size:.875rem;color:#6b6969}.pldoc-pattern-depth .depth{padding:1.25rem}.pldoc-pattern-depth .depth--2 .hd,.pldoc-pattern-depth .depth--3 .hd{color:#fcfcfc}.pldoc-pattern-depth .depth--2 .copy,.pldoc-pattern-depth .depth--3 .copy{color:#e7e6e6}.pldoc-pattern-depth .card,.pldoc-pattern-depth .slat{margin-bottom:.625rem}.pldoc-pattern-depth .card:last-child,.pldoc-pattern-depth .slat:last-child,.pldoc-pattern-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33)}@media (min-width:768px){.pldoc-pattern-icons .example-icon{width:23.40426%;float:left}.pldoc-pattern-icons .example-icon:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-icons .example-icon:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(239,53,138,.33)}}@media (min-width:1024px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}@media (min-width:1280px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{display:block;color:#000}.pldoc-pattern-grid .col,.pldoc-pattern-grid .gallery-item{text-align:center;padding:1.25rem .625rem}.pldoc-pattern-grid .row{margin-bottom:1.875rem}.pldoc-pattern-grid .row:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid .example-label{display:block}.pldoc-pattern-grid .example-grid .example-label-container{clear:both;width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-basic .col{width:6.38298%;float:left;margin-right:2.12766%}.pldoc-pattern-grid .example-grid-basic .col:nth-child(12n+12){float:right;margin-right:0}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-A{width:91.48936%;float:left;margin-right:2.12766%;margin-left:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-B{width:82.97872%;float:left;margin-right:2.12766%;margin-left:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-C{width:74.46809%;float:left;margin-right:2.12766%;margin-left:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-D{width:65.95745%;float:left;margin-right:2.12766%;margin-left:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-E{width:57.44681%;float:left;margin-right:2.12766%;margin-left:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-F{width:48.93617%;float:left;margin-right:2.12766%;margin-left:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-G{width:40.42553%;float:left;margin-right:2.12766%;margin-left:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-H{width:31.91489%;float:left;margin-right:2.12766%;margin-left:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-I{width:23.40426%;float:left;margin-right:2.12766%;margin-left:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-J{width:14.89362%;float:left;margin-right:2.12766%;margin-left:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-K{width:6.38298%;float:left;margin-right:2.12766%;margin-left:93.61702%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-A{width:91.48936%;float:left;margin-right:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-B{width:82.97872%;float:left;margin-right:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-C{width:74.46809%;float:left;margin-right:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-D{width:65.95745%;float:left;margin-right:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-E{width:57.44681%;float:left;margin-right:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-F{width:48.93617%;float:left;margin-right:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-G{width:40.42553%;float:left;margin-right:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-H{width:31.91489%;float:left;margin-right:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-I{width:23.40426%;float:left;margin-right:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-J{width:14.89362%;float:left;margin-right:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-K{width:6.38298%;float:left;margin-right:93.61702%}.pldoc-pattern-grid .example-grid-shifts section{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-shifts section::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-shifts section:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-grid .example-grid-semantic .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-pattern-grid .example-grid-semantic .content-main{width:65.95745%;float:left;margin-right:2.12766%}.pldoc-pattern-grid .example-grid-semantic .story{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-semantic .story:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .story-main{clear:both}.pldoc-pattern-grid .example-grid-semantic .story-secondary{width:48.3871%;float:left;margin-right:3.22581%}.pldoc-pattern-grid .example-grid-semantic .story-secondary:nth-child(2n+1){float:right;margin-right:0}.pldoc-pattern-grid .example-grid-semantic .content-secondary{width:31.91489%;float:right;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery{margin-bottom:2.5rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo{width:31.91489%;float:left;margin-bottom:2.12766%}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo-source{display:block;width:100%;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo{width:48.93617%;float:left}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-classes .gallery,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item:last-child{margin-bottom:0}.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33);padding:1.25rem .625rem}@media (min-width:768px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(239,53,138,.33)}}.example-layout .example-label{display:block;color:#000}.pldoc-wrapper-content-supplemental .pldoc-header-site{padding:1.875rem}@media (min-width:1024px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-wrapper-content-main{width:calc(100% - $pldoc-content-supplemental-width);margin-left:20.625rem}.pldoc-wrapper-content-supplemental{height:100%;width:20.625rem;display:block;position:fixed;top:0;left:0;overflow-y:scroll}.pldoc-wrapper-content-supplemental .pldoc-header-site{margin:2.5rem 1.875rem;padding:0}}.pldoc-wrapper-content-supplemental .pldoc-nav{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-nav{display:block}}.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:block}}.pldoc-wrapper-pattern{padding:1.25rem;border-bottom:.125rem solid;box-shadow:inset .15625rem 0 0 0 transparent}.pldoc-wrapper-pattern:last-child{border-bottom:none}.pldoc-pattern{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern:after{content:" ";display:block;clear:both}.pldoc-pattern-header::after{clear:both;content:"";display:table}.pldoc-pattern-title{margin-bottom:.625rem}@media (min-width:1280px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-pattern-title{width:48.93617%;float:left;margin-right:2.12766%;margin-bottom:0}.pldoc-pattern-meta{width:48.93617%;float:right;margin-right:0;text-align:right}}.pldoc-pattern-meta .meta{display:block}@media (min-width:768px){.pldoc-wrapper-pattern{padding:3.75rem 2.5rem}.pldoc-pattern-meta .meta{display:inline-block;vertical-align:middle;margin-right:.625rem}}.pldoc-view-example .pldoc-view-header,.pldoc-view-example-grid #example-grid-1 .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-meta .meta-updated{margin-bottom:.625rem}@media (min-width:768px){.pldoc-pattern-meta .meta-updated{margin-bottom:0}}.pldoc-view-example .pldoc-wrapper-view-header{margin-bottom:2.5rem;padding:1.875rem 2.12766%}.pldoc-view-example .pldoc-view-header:after{content:" ";display:block;clear:both}.pldoc-view-example .example{margin-bottom:2.5rem}.pldoc-view-example .example:last-child{margin-bottom:0}.pldoc.view-index .pldoc-wrapper-link-top{padding:0 2.5rem 1.25rem}.pldoc.view-index .pldoc-link-top{display:block;text-align:center}.pldoc-view-example-depth .example-set{margin-bottom:2.5rem}.pldoc-view-example-depth .depth{padding:1.25rem}.pldoc-view-example-depth .depth--2 .hd,.pldoc-view-example-depth .depth--3 .hd{color:#fcfcfc}.pldoc-view-example-depth .depth--2 .copy,.pldoc-view-example-depth .depth--3 .copy{color:#e7e6e6}.pldoc-view-example-depth .card,.pldoc-view-example-depth .slat{margin-bottom:.625rem}.pldoc-view-example-depth .card:last-child,.pldoc-view-example-depth .slat:last-child,.pldoc-view-example-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-view-example-grid .example-grid .row{margin-bottom:1.875rem}.pldoc-view-example-grid .example-grid .row:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-view-example-grid #example-grid-1 .content-main{width:65.95745%;float:left;margin-right:2.12766%}.pldoc-view-example-grid #example-grid-1 .story{margin-bottom:1.25rem}.pldoc-view-example-grid #example-grid-1 .story:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .story-main{clear:both}.pldoc-view-example-grid #example-grid-1 .story-secondary{width:48.3871%;float:left;margin-right:3.22581%}.pldoc-view-example-grid #example-grid-1 .story-secondary:nth-child(2n+1){float:right;margin-right:0}.pldoc-view-example-grid #example-grid-1 .content-secondary{width:31.91489%;float:right;margin-right:0}.pldoc-view-example-layouts .example-layout{margin-bottom:5rem}.pldoc-view-example-layouts .example-layout:last-child{margin-bottom:0} \ No newline at end of file + * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.is-copyable,.pldoc-pattern-markup code{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace}.badge,.pldoc-nav-title{text-transform:uppercase}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat}body,html{height:100%;color:#4d4b4b}.example-set{padding-bottom:2.5rem;border-bottom:.125rem solid #e5e9eb;margin-bottom:2.5rem}.example-set::after{clear:both;content:"";display:table}.example-set .button-overlay-demo{padding:3.75rem 1.875rem;background:url(../images/bg-overlay-example.png) 0 50% no-repeat #0ea6ec;background-size:cover}.is-copyable{display:inline-block}.wrapper-alert{margin-bottom:.625rem}.alert{border-left:.25rem solid #cdd7db;border-radius:.1875rem;padding:1.25rem;background-color:#e7e6e6}.alert-information{border-color:#0079bc}.alert-warning{border-color:#fdbc56}.alert-error{border-color:#b20610}.alert-success{border-color:#25b85a}.alert-ui-toolkit{border-color:#ffde20}.badge{text-align:center;border-radius:.9375rem;padding:.125rem .625rem;font-size:.625rem;font-weight:700}.badge .badge-abbreviation{border-bottom:none}.badge-ui-toolkit{background-color:#ffde20;color:#34383a}.pldoc-header-site .pldoc-header-site-title{display:inline-block;vertical-align:middle}@media (min-width:1024px){.pldoc-header-site,.pldoc-header-site .pldoc-header-site-title{margin:0}}.pldoc-header-site .pldoc-header-site-title .title-name{display:block;margin-bottom:.625rem;color:#fcfcfc;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.0625rem}.pldoc-header-site .pldoc-header-site-title .title-name:active,.pldoc-header-site .pldoc-header-site-title .title-name:focus,.pldoc-header-site .pldoc-header-site-title .title-name:hover{color:#0ea6ec}.pldoc-header-site .pldoc-header-site-title .pldoc-link{border:none}.pldoc-header-site .pldoc-title-description{display:block;color:#a7a4a4;font-weight:400}.pldoc-nav{margin-bottom:3.75rem}.pldoc-nav:last-child{margin-bottom:0}.pldoc-nav .nav-list{margin:0}.pldoc-nav .pldoc-link{-webkit-transition:background .25s ease-in-out;transition:background .25s ease-in-out;display:block;border-bottom:1px solid #111010;padding:.625rem 1.875rem;color:#e7e6e6;text-decoration:none;font-size:.875rem;font-weight:600}.pldoc-nav .pldoc-link:active,.pldoc-nav .pldoc-link:focus,.pldoc-nav .pldoc-link:hover{color:#53a4d1;background:#111010}.pldoc-nav .nav-list-item:last-child .pldoc-link{border-bottom:0}.pldoc-nav .nav-list-item.is-current .pldoc-link:before{display:inline-block}.pldoc-nav .list-patterns .pattern::after{clear:both;content:"";display:table}.pldoc-nav .list-patterns .pattern .badge,.pldoc-nav .list-patterns .pattern .pattern-title{display:inline-block}.pldoc-nav .list-patterns .pattern .pattern-title{width:80%}.pldoc-nav .list-patterns .pattern .badge{float:right}.pldoc-nav-internal .pldoc-link{position:relative}.pldoc-nav-internal .pldoc-link:before{-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;height:.3125rem;width:.3125rem;position:absolute;top:1.125rem;left:.9375rem;content:'';border-radius:100%;opacity:0;background:#0ea6ec}.pldoc-nav-internal .pldoc-link.is-current{color:#53a4d1;background:#111010}.pldoc-nav-internal .pldoc-link.is-current:before{opacity:1}.pldoc-nav-external .pldoc-link::after{clear:both;content:"";display:table}.pldoc-nav-external .pldoc-link .icon{margin-left:.15625rem;float:right;opacity:.25}.pldoc-nav-external .pldoc-link:active .icon,.pldoc-nav-external .pldoc-link:focus .icon,.pldoc-nav-external .pldoc-link:hover .icon{opacity:1}.pldoc-nav-title{margin:0 1.875rem .625rem;color:#a7a4a4;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.pldoc-tab:focus{outline:0}.pldoc-tab-content{-webkit-transition:box-shadow .5s ease-in-out;transition:box-shadow .5s ease-in-out;border:.0625rem solid #e7e6e6;padding:2.5rem 1.25rem}@media (min-width:768px){.pldoc-tab-content{padding:2.5rem 1.875rem}}.pldoc-settings{background:#efefef;margin-bottom:5rem;padding:1.25rem .625rem}.pldoc-setting{display:inline-block;vertical-align:middle;margin-right:.625rem}.pldoc-setting:last-child{margin-right:0}.pldoc-wrapper-content-supplemental{color:#e7e6e6}.pldoc-footer-site{margin:2.5rem 1.25rem}.pldoc-footer-site-copyright .pldoc-copy{font-size:.875rem;color:#a7a4a4}.pldoc-pattern .example-set-hd{margin-bottom:1.25rem}.pldoc-pattern-header{margin-bottom:2.5rem;border-bottom:1px solid #6b6969;padding-bottom:1.25rem}.pldoc-tab-labels{border-bottom:.25rem solid #e7e6e6}.pldoc-tab-labels::after{clear:both;content:"";display:table}.pldoc-tab-label{float:left;position:relative;bottom:-.3125rem}.pldoc-tab-label .pldoc-link{display:block;margin:0;border-width:0 0 .25rem;border-color:transparent;border-style:solid;background:0 0;padding:.625rem .9375rem;font-weight:600;color:#6b6969}.pldoc-tab-label .pldoc-link:focus,.pldoc-tab-label .pldoc-link:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}.pldoc-tab-label .pldoc-link.is-active{border-bottom-color:#4d4b4b;color:#4d4b4b}.pldoc-pattern-colors .brand-primary.base{background:#0079bc}.pldoc-pattern-colors .brand-primary.light{background:#53a4d1}.pldoc-pattern-colors .brand-primary.x-light{background:#a6cfe6}.pldoc-pattern-colors .brand-primary.dark{background:#065683}.pldoc-pattern-colors .brand-primary.x-dark{background:#0b344a}.pldoc-pattern-colors .brand-primary.accent{background:#0ea6ec}.pldoc-pattern-colors .brand-primary.x-accent{background:#00abfa}.pldoc-pattern-colors .brand-secondary,.pldoc-pattern-colors .brand-secondary.base{background:#cb598d}.pldoc-pattern-colors .brand-secondary.light{background:#db8fb2}.pldoc-pattern-colors .brand-secondary.x-light{background:#ebc5d6}.pldoc-pattern-colors .brand-secondary.dark{background:#8e4164}.pldoc-pattern-colors .brand-secondary.x-dark{background:#50293b}.pldoc-pattern-colors .brand-secondary.accent{background:#f26caa}.pldoc-pattern-colors .grayscale,.pldoc-pattern-colors .grayscale.base{background:#a7a4a4}.pldoc-pattern-colors .grayscale.light{background:#d2d0d0}.pldoc-pattern-colors .grayscale.x-light{background:#e7e6e6}.pldoc-pattern-colors .grayscale.xx-light{background:#efefef}.pldoc-pattern-colors .grayscale.white{background:#fcfcfc}.pldoc-pattern-colors .grayscale.white-t{background:#fff}.pldoc-pattern-colors .grayscale.dark{background:#6b6969}.pldoc-pattern-colors .grayscale.x-dark{background:#4d4b4b}.pldoc-pattern-colors .grayscale.black{background:#111010}.pldoc-pattern-colors .grayscale.black-t{background:#000}.pldoc-pattern-colors .grayscale.trans{background:rgba(167,164,164,.5)}.pldoc-pattern-colors .grayscale.x-trans{background:rgba(167,164,164,.25)}.pldoc-pattern-colors .grayscale.xx-trans{background:rgba(167,164,164,.05)}.pldoc-pattern-colors .grayscale-cool,.pldoc-pattern-colors .grayscale-cool.base{background:#9eb1b9}.pldoc-pattern-colors .grayscale-cool.light{background:#cdd7db}.pldoc-pattern-colors .grayscale-cool.x-light{background:#e5e9eb}.pldoc-pattern-colors .grayscale-cool.xx-light{background:#eef1f2}.pldoc-pattern-colors .grayscale-cool.dark{background:#586165}.pldoc-pattern-colors .grayscale-cool.x-dark{background:#34383a}.pldoc-pattern-colors .grayscale-cool.trans{background:rgba(158,177,185,.5)}.pldoc-pattern-colors .grayscale-cool.x-trans{background:rgba(158,177,185,.25)}.pldoc-pattern-colors .grayscale-cool.xx-trans{background:rgba(158,177,185,.05)}.pldoc-pattern-colors .success,.pldoc-pattern-colors .success.base{background:#25b85a}.pldoc-pattern-colors .success.light{background:#6cce8f}.pldoc-pattern-colors .success.dark{background:#1e8142}.pldoc-pattern-colors .warning,.pldoc-pattern-colors .warning.base{background:#fdbc56}.pldoc-pattern-colors .warning.light{background:#fdd18d}.pldoc-pattern-colors .warning.dark{background:#af833f}.pldoc-pattern-colors .error,.pldoc-pattern-colors .error.base{background:#b20610}.pldoc-pattern-colors .error.light{background:#ca575e}.pldoc-pattern-colors .error.dark{background:#7d0910}.pldoc-pattern-colors .example-color{-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:100%;float:left;margin-left:0;margin-right:0;position:relative;border:0;border-radius:0;padding:1.25rem;box-shadow:none;color:#fcfcfc}.pldoc-pattern-colors .example-color.fail-a11y-color{border-left:.3125rem solid #fdbc56}.pldoc-pattern-colors .example-color:active,.pldoc-pattern-colors .example-color:focus,.pldoc-pattern-colors .example-color:hover{-webkit-transform:scale(1.02);transform:scale(1.02);z-index:10}.pldoc-pattern-colors .example-color.dol .color-class,.pldoc-pattern-colors .example-color.dol .color-meta,.pldoc-pattern-colors .example-color.dol .color-reference{color:#111010}.pldoc-pattern-colors .example-color.lod .color-class,.pldoc-pattern-colors .example-color.lod .color-meta,.pldoc-pattern-colors .example-color.lod .color-reference{color:#fcfcfc}.pldoc-pattern-colors .example-color .color-info{width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:1.25rem}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-info{width:48.93617%;float:left;margin-right:2.12766%;margin-bottom:0}}.pldoc-pattern-colors .example-color .color-class{display:block;width:100%;margin-bottom:.625rem;font-size:.875rem;font-weight:600;text-transform:lowercase}.pldoc-pattern-colors .example-color.base{padding-top:2.5rem;padding-bottom:2.5rem}.pldoc-pattern-colors .example-color.base .color-class{font-size:1rem;font-weight:700}.pldoc-pattern-colors .example-color .color-reference{display:block;font-size:.75rem}.pldoc-pattern-colors .example-color .color-meta{width:100%;float:left;margin-left:0;margin-right:0;font-size:.75rem;color:#fcfcfc}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-meta{width:48.93617%;float:right;margin-right:0;text-align:right}}.pldoc-pattern-colors .example-color .color-meta .color-hex,.pldoc-pattern-colors .example-color .color-meta .color-rgb{vertical-align:middle;text-align:center}.pldoc-pattern-colors .example-color .color-meta .color-rgb{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;margin-right:.625rem}.pldoc-pattern-colors .example-color .color-meta .color-hex{text-transform:uppercase}.pldoc-pattern-buttons .btn{display:inline-block;vertical-align:middle;margin-right:.3125rem;margin-bottom:.625rem}.pldoc-pattern-buttons .btn:last-child{margin-right:0}.pldoc-pattern-icons .example-icon{text-align:center;display:inline-block;width:10rem;margin:0 .9375rem 1.875rem 0}.pldoc-pattern-icons .example-icon .icon-display{width:100%;margin:0 auto .625rem}.pldoc-pattern-icons .example-icon .icon-display .icon{font-size:3rem;color:#0079bc}.pldoc-pattern-icons .example-icon .icon-classname,.pldoc-pattern-icons .example-icon .use-description{font-size:.875rem;color:#6b6969}.pldoc-pattern-depth .depth{padding:1.25rem}.pldoc-pattern-depth .depth--2 .hd,.pldoc-pattern-depth .depth--3 .hd{color:#fcfcfc}.pldoc-pattern-depth .depth--2 .copy,.pldoc-pattern-depth .depth--3 .copy{color:#e7e6e6}.pldoc-pattern-depth .card,.pldoc-pattern-depth .slat{margin-bottom:.625rem}.pldoc-pattern-depth .card:last-child,.pldoc-pattern-depth .slat:last-child,.pldoc-pattern-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33)}@media (min-width:768px){.pldoc-pattern-icons .example-icon{width:23.40426%;float:left}.pldoc-pattern-icons .example-icon:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-icons .example-icon:nth-child(4n+2){margin-left:25.53191%;margin-right:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+3){margin-left:51.06383%;margin-right:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+4){margin-left:76.59574%;margin-right:-100%;clear:none}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(239,53,138,.33)}}@media (min-width:1024px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}@media (min-width:1280px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{display:block;color:#000}.pldoc-pattern-grid .col,.pldoc-pattern-grid .gallery-item{text-align:center;padding:1.25rem .625rem}.pldoc-pattern-grid .row{margin-bottom:1.875rem}.pldoc-pattern-grid .row:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid .example-label{display:block}.pldoc-pattern-grid .example-grid .example-label-container{clear:both;width:100%;float:left;margin-left:0;margin-right:0;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-basic .col{width:6.38298%;float:left;margin-right:2.12766%}.pldoc-pattern-grid .example-grid-basic .col:nth-child(12n+12){float:right;margin-right:0}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-A{width:91.48936%;float:left;margin-right:2.12766%;margin-left:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-B{width:82.97872%;float:left;margin-right:2.12766%;margin-left:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-C{width:74.46809%;float:left;margin-right:2.12766%;margin-left:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-D{width:65.95745%;float:left;margin-right:2.12766%;margin-left:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-E{width:57.44681%;float:left;margin-right:2.12766%;margin-left:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-F{width:48.93617%;float:left;margin-right:2.12766%;margin-left:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-G{width:40.42553%;float:left;margin-right:2.12766%;margin-left:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-H{width:31.91489%;float:left;margin-right:2.12766%;margin-left:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-I{width:23.40426%;float:left;margin-right:2.12766%;margin-left:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-J{width:14.89362%;float:left;margin-right:2.12766%;margin-left:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-K{width:6.38298%;float:left;margin-right:2.12766%;margin-left:93.61702%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-A{width:91.48936%;float:left;margin-right:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-B{width:82.97872%;float:left;margin-right:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-C{width:74.46809%;float:left;margin-right:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-D{width:65.95745%;float:left;margin-right:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-E{width:57.44681%;float:left;margin-right:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-F{width:48.93617%;float:left;margin-right:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-G{width:40.42553%;float:left;margin-right:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-H{width:31.91489%;float:left;margin-right:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-I{width:23.40426%;float:left;margin-right:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-J{width:14.89362%;float:left;margin-right:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-K{width:6.38298%;float:left;margin-right:93.61702%}.pldoc-pattern-grid .example-grid-shifts section{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-shifts section::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-shifts section:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-grid .example-grid-semantic .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-pattern-grid .example-grid-semantic .content-main{width:65.95745%;float:left;margin-right:2.12766%}.pldoc-pattern-grid .example-grid-semantic .story{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-semantic .story:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .story-main{clear:both}.pldoc-pattern-grid .example-grid-semantic .story-secondary{width:48.3871%;float:left;margin-right:3.22581%}.pldoc-pattern-grid .example-grid-semantic .story-secondary:nth-child(2n+1){float:right;margin-right:0}.pldoc-pattern-grid .example-grid-semantic .content-secondary{width:31.91489%;float:right;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery{margin-bottom:2.5rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo{width:31.91489%;float:left;margin-bottom:2.12766%}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+2){margin-left:34.04255%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+3){margin-left:68.08511%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo-source{display:block;width:100%;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo{width:48.93617%;float:left}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+2){margin-left:51.06383%;margin-right:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-classes .gallery,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item:last-child{margin-bottom:0}.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33);padding:1.25rem .625rem}@media (min-width:768px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(239,53,138,.33)}}.example-layout .example-label{display:block;color:#000}.pldoc-wrapper-content-supplemental .pldoc-header-site{padding:1.875rem}@media (min-width:1024px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-wrapper-content-main{width:calc(100% - $pldoc-content-supplemental-width);margin-left:20.625rem}.pldoc-wrapper-content-supplemental{height:100%;width:20.625rem;display:block;position:fixed;top:0;left:0;overflow-y:scroll}.pldoc-wrapper-content-supplemental .pldoc-header-site{margin:2.5rem 1.875rem;padding:0}}.pldoc-wrapper-content-supplemental .pldoc-nav{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-nav{display:block}}.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:block}}.pldoc-wrapper-pattern{padding:1.25rem;border-bottom:.125rem solid;box-shadow:inset .15625rem 0 0 0 transparent}.pldoc-wrapper-pattern:last-child{border-bottom:none}.pldoc-pattern{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern:after{content:" ";display:block;clear:both}.pldoc-pattern-header::after{clear:both;content:"";display:table}.pldoc-pattern-title{margin-bottom:.625rem}@media (min-width:1280px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-pattern-title{width:48.93617%;float:left;margin-right:2.12766%;margin-bottom:0}.pldoc-pattern-meta{width:48.93617%;float:right;margin-right:0;text-align:right}}.pldoc-pattern-meta .meta{display:block}@media (min-width:768px){.pldoc-wrapper-pattern{padding:3.75rem 2.5rem}.pldoc-pattern-meta .meta{display:inline-block;vertical-align:middle;margin-right:.625rem}}.pldoc-view-example .pldoc-view-header,.pldoc-view-example-grid #example-grid-1 .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-meta .meta-updated{margin-bottom:.625rem}@media (min-width:768px){.pldoc-pattern-meta .meta-updated{margin-bottom:0}}.pldoc-view-example .pldoc-wrapper-view-header{margin-bottom:2.5rem;padding:1.875rem 2.12766%}.pldoc-view-example .pldoc-view-header:after{content:" ";display:block;clear:both}.pldoc-view-example .example{margin-bottom:2.5rem}.pldoc-view-example .example:last-child{margin-bottom:0}.pldoc.view-index .pldoc-wrapper-link-top{padding:0 2.5rem 1.25rem}.pldoc.view-index .pldoc-link-top{display:block;text-align:center}.pldoc-view-example-depth .example-set{margin-bottom:2.5rem}.pldoc-view-example-depth .depth{padding:1.25rem}.pldoc-view-example-depth .depth--2 .hd,.pldoc-view-example-depth .depth--3 .hd{color:#fcfcfc}.pldoc-view-example-depth .depth--2 .copy,.pldoc-view-example-depth .depth--3 .copy{color:#e7e6e6}.pldoc-view-example-depth .card,.pldoc-view-example-depth .slat{margin-bottom:.625rem}.pldoc-view-example-depth .card:last-child,.pldoc-view-example-depth .slat:last-child,.pldoc-view-example-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-view-example-grid .example-grid .row{margin-bottom:1.875rem}.pldoc-view-example-grid .example-grid .row:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-view-example-grid #example-grid-1 .content-main{width:65.95745%;float:left;margin-right:2.12766%}.pldoc-view-example-grid #example-grid-1 .story{margin-bottom:1.25rem}.pldoc-view-example-grid #example-grid-1 .story:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .story-main{clear:both}.pldoc-view-example-grid #example-grid-1 .story-secondary{width:48.3871%;float:left;margin-right:3.22581%}.pldoc-view-example-grid #example-grid-1 .story-secondary:nth-child(2n+1){float:right;margin-right:0}.pldoc-view-example-grid #example-grid-1 .content-secondary{width:31.91489%;float:right;margin-right:0}.pldoc-view-example-layouts .example-layout{margin-bottom:5rem}.pldoc-view-example-layouts .example-layout:last-child{margin-bottom:0} \ No newline at end of file diff --git a/public/css/main-rtl.css b/public/css/main-rtl.css index 526b4ae5..a53a7f2a 100644 --- a/public/css/main-rtl.css +++ b/public/css/main-rtl.css @@ -1718,7 +1718,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1743,7 +1742,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1768,7 +1766,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1782,7 +1779,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1870,7 +1866,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -1898,7 +1893,6 @@ h1, h2, h3, h4, h5, h6, .hd-1, -webkit-transition: all 0.125s ease-in-out 0s; transition: all 0.125s ease-in-out 0s; -webkit-transform-origin: center center; - -ms-transform-origin: center center; transform-origin: center center; width: 100%; height: 0.625rem; @@ -9321,7 +9315,6 @@ html, body { .pldoc-pattern-colors .example-color:hover, .pldoc-pattern-colors .example-color:focus, .pldoc-pattern-colors .example-color:active { -webkit-transform: scale(1.02); - -ms-transform: scale(1.02); transform: scale(1.02); z-index: 10; } diff --git a/public/css/main-rtl.min.css b/public/css/main-rtl.min.css index 4c8ed6ff..c41639a5 100644 --- a/public/css/main-rtl.min.css +++ b/public/css/main-rtl.min.css @@ -1,4 +1,4 @@ -.highlight .cm,.highlight .ge,.highlight .sd,dfn{font-style:italic}.bg-replace,svg:not(:root){overflow:hidden}.badge,.bg-replace,.is-copyable{white-space:nowrap}.highlight .hll{background-color:#ffc}.highlight .c{color:#999}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069}.highlight .o{color:#555}.highlight .cm{color:#09f}.highlight .cp{color:#099}.highlight .c1,.highlight .cs{color:#999}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .gr{color:red}.highlight .gh{color:#030}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#069}.highlight .kt{color:#078}.highlight .m{color:#f60}.highlight .s{color:#d44950}.highlight .na{color:#4f9fcf}.highlight .nb{color:#366}.highlight .nc{color:#0a8}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999}.highlight .ne{color:#c00}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf}.highlight .nt{color:#2f6f9f}.highlight .nv{color:#033}.highlight .ow{color:#000}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f60}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .se,.highlight .sh{color:#c30}.highlight .sd{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .vc,.highlight .vg,.highlight .vi{color:#033}.highlight .il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.alert-copy>:last-child,.example-set:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.pldoc-tab-heading,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery,.pldoc-nav .nav-list,.pldoc-pattern-depth .zebra-stripe,.pldoc-pattern-grid .example-grid-semantic .list-related,.pldoc-pattern-header .pldoc-pattern-meta,.pldoc-tab-labels,.pldoc-view-example-depth .zebra-stripe,.pldoc-view-example-grid #example-grid-1 .list-related{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-combo:last-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.alert-title,.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.alert-title,.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600;line-height:1.6}.emphasized.alert-title,.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.badge,.hd-8{letter-spacing:.03125rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.alert-copy dl,.alert-copy ol,.alert-copy p,.alert-copy ul,.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul,.example-layout .example-label dl,.example-layout .example-label ol,.example-layout .example-label p,.example-layout .example-label ul,.pldoc-pattern-grid .col .example-label dl,.pldoc-pattern-grid .col .example-label ol,.pldoc-pattern-grid .col .example-label p,.pldoc-pattern-grid .col .example-label ul,.pldoc-pattern-grid .example-grid .example-label dl,.pldoc-pattern-grid .example-grid .example-label ol,.pldoc-pattern-grid .example-grid .example-label p,.pldoc-pattern-grid .example-grid .example-label ul,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label dl,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ol,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label p,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story .example-label p,.pldoc-pattern-grid .example-grid-semantic .story .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ul,.pldoc-pattern-grid .gallery-item .example-label dl,.pldoc-pattern-grid .gallery-item .example-label ol,.pldoc-pattern-grid .gallery-item .example-label p,.pldoc-pattern-grid .gallery-item .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-main .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-main .example-label p,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ul,.pldoc-view-example-grid #example-grid-1 .story .example-label dl,.pldoc-view-example-grid #example-grid-1 .story .example-label ol,.pldoc-view-example-grid #example-grid-1 .story .example-label p,.pldoc-view-example-grid #example-grid-1 .story .example-label ul,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ul,.pldoc-view-example-grid .example-grid .col .example-label dl,.pldoc-view-example-grid .example-grid .col .example-label ol,.pldoc-view-example-grid .example-grid .col .example-label p,.pldoc-view-example-grid .example-grid .col .example-label ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.alert-copy,.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro,.example-layout .example-label,.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-right:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:before{display:inline-block;margin-right:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-right:1.04167%;padding-left:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;right:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;right:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;left:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-left:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:left;margin-left:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container .col.col-full,.row,.row::after{clear:both}.grid-container,.pldoc-view-example-depth .example-set,.pldoc-view-example-layouts .example-layout-hd{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container::after,.pldoc-view-example-depth .example-set::after,.pldoc-view-example-layouts .example-layout-hd::after{clear:both;content:"";display:table}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-right:0}.grid-container .col.col-full{width:100%;float:right;margin-right:0;margin-left:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:right}.grid-manual .col-2{width:16.66667%;float:right}.grid-manual .col-3{width:25%;float:right}.grid-manual .col-4{width:33.33333%;float:right}.grid-manual .col-5{width:41.66667%;float:right}.grid-manual .col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .col-7{width:58.33333%;float:right}.grid-manual .col-8{width:66.66667%;float:right}.grid-manual .col-9{width:75%;float:right}.grid-manual .col-10{width:83.33333%;float:right}.grid-manual .col-11{width:91.66667%;float:right}.grid-manual .col-12{width:100%;float:right}.grid-manual .pre-1{margin-right:8.33333%}.grid-manual .pre-2{margin-right:16.66667%}.grid-manual .pre-3{margin-right:25%}.grid-manual .pre-4{margin-right:33.33333%}.grid-manual .pre-5{margin-right:41.66667%}.grid-manual .pre-6{margin-right:50%}.grid-manual .pre-7{margin-right:58.33333%}.grid-manual .pre-8{margin-right:66.66667%}.grid-manual .pre-9{margin-right:75%}.grid-manual .pre-10{margin-right:83.33333%}.grid-manual .pre-11{margin-right:91.66667%}.grid-manual .pre-12{margin-right:100%}.grid-manual .post-1{margin-right:8.33333%}.grid-manual .post-2{margin-right:16.66667%}.grid-manual .post-3{margin-right:25%}.grid-manual .post-4{margin-right:33.33333%}.grid-manual .post-5{margin-right:41.66667%}.grid-manual .post-6{margin-right:50%}.grid-manual .post-7{margin-right:58.33333%}.grid-manual .post-8{margin-right:66.66667%}.grid-manual .post-9{margin-right:75%}.grid-manual .post-10{margin-right:83.33333%}.grid-manual .post-11{margin-right:91.66667%}.grid-manual .post-12{margin-right:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-pre-1{margin-right:8.33333%}.grid-manual .sm-pre-2{margin-right:16.66667%}.grid-manual .sm-pre-3{margin-right:25%}.grid-manual .sm-pre-4{margin-right:33.33333%}.grid-manual .sm-pre-5{margin-right:41.66667%}.grid-manual .sm-pre-6{margin-right:50%}.grid-manual .sm-pre-7{margin-right:58.33333%}.grid-manual .sm-pre-8{margin-right:66.66667%}.grid-manual .sm-pre-9{margin-right:75%}.grid-manual .sm-pre-10{margin-right:83.33333%}.grid-manual .sm-pre-11{margin-right:91.66667%}.grid-manual .sm-pre-12{margin-right:100%}.grid-manual .sm-post-1{margin-left:8.33333%}.grid-manual .sm-post-2{margin-left:16.66667%}.grid-manual .sm-post-3{margin-left:25%}.grid-manual .sm-post-4{margin-left:33.33333%}.grid-manual .sm-post-5{margin-left:41.66667%}.grid-manual .sm-post-6{margin-left:50%}.grid-manual .sm-post-7{margin-left:58.33333%}.grid-manual .sm-post-8{margin-left:66.66667%}.grid-manual .sm-post-9{margin-left:75%}.grid-manual .sm-post-10{margin-left:83.33333%}.grid-manual .sm-post-11{margin-left:91.66667%}.grid-manual .sm-post-12{margin-left:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-pre-1{margin-right:8.33333%}.grid-manual .md-pre-2{margin-right:16.66667%}.grid-manual .md-pre-3{margin-right:25%}.grid-manual .md-pre-4{margin-right:33.33333%}.grid-manual .md-pre-5{margin-right:41.66667%}.grid-manual .md-pre-6{margin-right:50%}.grid-manual .md-pre-7{margin-right:58.33333%}.grid-manual .md-pre-8{margin-right:66.66667%}.grid-manual .md-pre-9{margin-right:75%}.grid-manual .md-pre-10{margin-right:83.33333%}.grid-manual .md-pre-11{margin-right:91.66667%}.grid-manual .md-pre-12{margin-right:100%}.grid-manual .md-post-1{margin-left:8.33333%}.grid-manual .md-post-2{margin-left:16.66667%}.grid-manual .md-post-3{margin-left:25%}.grid-manual .md-post-4{margin-left:33.33333%}.grid-manual .md-post-5{margin-left:41.66667%}.grid-manual .md-post-6{margin-left:50%}.grid-manual .md-post-7{margin-left:58.33333%}.grid-manual .md-post-8{margin-left:66.66667%}.grid-manual .md-post-9{margin-left:75%}.grid-manual .md-post-10{margin-left:83.33333%}.grid-manual .md-post-11{margin-left:91.66667%}.grid-manual .md-post-12{margin-left:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-pre-1{margin-right:8.33333%}.grid-manual .lg-pre-2{margin-right:16.66667%}.grid-manual .lg-pre-3{margin-right:25%}.grid-manual .lg-pre-4{margin-right:33.33333%}.grid-manual .lg-pre-5{margin-right:41.66667%}.grid-manual .lg-pre-6{margin-right:50%}.grid-manual .lg-pre-7{margin-right:58.33333%}.grid-manual .lg-pre-8{margin-right:66.66667%}.grid-manual .lg-pre-9{margin-right:75%}.grid-manual .lg-pre-10{margin-right:83.33333%}.grid-manual .lg-pre-11{margin-right:91.66667%}.grid-manual .lg-pre-12{margin-right:100%}.grid-manual .lg-post-1{margin-left:8.33333%}.grid-manual .lg-post-2{margin-left:16.66667%}.grid-manual .lg-post-3{margin-left:25%}.grid-manual .lg-post-4{margin-left:33.33333%}.grid-manual .lg-post-5{margin-left:41.66667%}.grid-manual .lg-post-6{margin-left:50%}.grid-manual .lg-post-7{margin-left:58.33333%}.grid-manual .lg-post-8{margin-left:66.66667%}.grid-manual .lg-post-9{margin-left:75%}.grid-manual .lg-post-10{margin-left:83.33333%}.grid-manual .lg-post-11{margin-left:91.66667%}.grid-manual .lg-post-12{margin-left:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-pre-1{margin-right:8.33333%}.grid-manual .xl-pre-2{margin-right:16.66667%}.grid-manual .xl-pre-3{margin-right:25%}.grid-manual .xl-pre-4{margin-right:33.33333%}.grid-manual .xl-pre-5{margin-right:41.66667%}.grid-manual .xl-pre-6{margin-right:50%}.grid-manual .xl-pre-7{margin-right:58.33333%}.grid-manual .xl-pre-8{margin-right:66.66667%}.grid-manual .xl-pre-9{margin-right:75%}.grid-manual .xl-pre-10{margin-right:83.33333%}.grid-manual .xl-pre-11{margin-right:91.66667%}.grid-manual .xl-pre-12{margin-right:100%}.grid-manual .xl-post-1{margin-left:8.33333%}.grid-manual .xl-post-2{margin-left:16.66667%}.grid-manual .xl-post-3{margin-left:25%}.grid-manual .xl-post-4{margin-left:33.33333%}.grid-manual .xl-post-5{margin-left:41.66667%}.grid-manual .xl-post-6{margin-left:50%}.grid-manual .xl-post-7{margin-left:58.33333%}.grid-manual .xl-post-8{margin-left:66.66667%}.grid-manual .xl-post-9{margin-left:75%}.grid-manual .xl-post-10{margin-left:83.33333%}.grid-manual .xl-post-11{margin-left:91.66667%}.grid-manual .xl-post-12{margin-left:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-right:0;margin-left:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .gallery-12 .gallery-item{width:100%;float:right}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1q1h1q.layout,.layout-1q1q1h.layout,.layout-1q3q.layout,.layout-1t1t1t.layout,.layout-1t2t.layout,.layout-full{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout:after,.layout-full:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-flush,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout-flush,.layout-1q3q.layout-flush,.layout-1t1t1t.layout-flush,.layout-1t2t.layout-flush,.layout-flush{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-flush:after,.layout-1q1h1q.layout-flush:after,.layout-1q1q1h.layout-flush:after,.layout-1q3q.layout-flush:after,.layout-1t1t1t.layout-flush:after,.layout-1t2t.layout-flush:after,.layout-flush:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-reversed:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1q1h.layout-reversed:after,.layout-1q3q.layout-reversed:after,.layout-1t1t1t.layout-reversed:after,.layout-1t2t.layout-reversed:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view,.layout-view-1q1h1q.layout-view,.layout-view-1q3q.layout-view,.layout-view-1t1t1t.layout-view,.layout-view-1t2t.layout-view{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-flush,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q3q.layout-view-flush,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t2t.layout-view-flush{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-flush:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t2t.layout-view-flush:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-reversed:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t2t.layout-view-reversed:after{content:" ";display:block;clear:both}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:right;margin-right:0;margin-left:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:left;margin-left:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:right;margin-right:0}}.card,.slat,.well{padding:1.25rem}.depth--3,.pldoc-wrapper-content-supplemental{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.pldoc,.pldoc-wrapper-content-main,.zebra-stripe>:nth-child(odd),body{background:#efefef}.depth-1,.pldoc-view-example .pldoc-wrapper-view-header,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2,.pldoc-tab-content{background:#fcfcfc;box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 +.highlight .cm,.highlight .ge,.highlight .sd,dfn{font-style:italic}.bg-replace,svg:not(:root){overflow:hidden}.badge,.bg-replace,.is-copyable{white-space:nowrap}.highlight .hll{background-color:#ffc}.highlight .c{color:#999}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069}.highlight .o{color:#555}.highlight .cm{color:#09f}.highlight .cp{color:#099}.highlight .c1,.highlight .cs{color:#999}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .gr{color:red}.highlight .gh{color:#030}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#069}.highlight .kt{color:#078}.highlight .m{color:#f60}.highlight .s{color:#d44950}.highlight .na{color:#4f9fcf}.highlight .nb{color:#366}.highlight .nc{color:#0a8}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999}.highlight .ne{color:#c00}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf}.highlight .nt{color:#2f6f9f}.highlight .nv{color:#033}.highlight .ow{color:#000}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f60}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .se,.highlight .sh{color:#c30}.highlight .sd{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .vc,.highlight .vg,.highlight .vi{color:#033}.highlight .il{color:#f60}.css .nt+.nt,.css .o,.css .o+.nt{color:#999}@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Light-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-LightItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Italic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Semibold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-SemiboldItalic-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-Bold-webfont.ttf) format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans/OpenSans-BoldItalic-webfont.ttf) format("truetype")}@font-face{font-family:edx-icons;font-style:normal;font-weight:300;src:url(../fonts/edx-icons/edx-icons.woff) format("woff"),url(../fonts/edx-icons/edx-icons.ttf) format("truetype")}.btn-combo:disabled,.btn-default:disabled,.btn-elevated-alt:disabled,.btn-elevated:disabled,.btn-link:disabled,.btn-overlay:disabled,.btn-primary:disabled,.btn-secondary:disabled,.is-disabled.btn-combo,.is-disabled.btn-default,.is-disabled.btn-elevated,.is-disabled.btn-elevated-alt,.is-disabled.btn-link,.is-disabled.btn-overlay,.is-disabled.btn-primary,.is-disabled.btn-secondary,.wrapper-custom-select.is-disabled,.wrapper-custom-select:disabled{pointer-events:none;outline:0;cursor:not-allowed}[class^=wrapper]{width:100%}[class^=wrapper]::after{clear:both;content:"";display:table}.alert-copy>:last-child,.example-set:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.input-checkbox.replace-checkbox,.input-checkbox.replace-radio,.input-radio.replace-checkbox,.input-radio.replace-radio,.pldoc-tab-heading,.sr-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.bg-replace{text-indent:100%}pre,textarea{overflow:auto}.sr-only,.sr-only *{background:#000!important;color:#fff!important}.grid-manual .gallery,.pldoc-nav .nav-list,.pldoc-pattern-depth .zebra-stripe,.pldoc-pattern-grid .example-grid-semantic .list-related,.pldoc-pattern-header .pldoc-pattern-meta,.pldoc-tab-labels,.pldoc-view-example-depth .zebra-stripe,.pldoc-view-example-grid #example-grid-1 .list-related{margin:0;padding:0;list-style:none;text-indent:0}.btn-link,.link,a{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s;border-bottom:1px solid transparent;color:#0079bc;text-decoration:none}.btn-link:active,.btn-link:focus,.btn-link:hover,.link:active,.link:focus,.link:hover,a:active,a:focus,a:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}fieldset,img,legend{border:0}.btn-link:disabled,.is-disabled.btn-link,.is-disabled.link,.link:disabled,a.is-disabled,a:disabled{display:none;color:#d2d0d0}article,aside,details,figcaption,figure,figure img,footer,header,hgroup,main,menu,nav,section,summary{display:block}.btn-link:active,.is-active.btn-link,.is-active.link,.is-pressed.btn-link,.is-pressed.link,.link:active,a.is-active,a.is-pressed,a:active{color:#065683}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.edx-icons .icon,body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button{overflow:visible}button,select{text-transform:none}.hd-7,.hd-8{text-transform:uppercase}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}legend{padding:0}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}audio,canvas,iframe,img,svg,video{vertical-align:middle}body{margin:0;font-size:1rem;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif}dl,ol,p,ul{margin:0 0 1.25rem}fieldset{margin:0;padding:0}figure{display:inline-block;margin:0;padding:0}.img,picture{max-width:100%;margin:0}pre{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace;margin:0}.is-hidden{display:none}.btn-combo,.btn-default,.btn-elevated,.btn-elevated-alt,.btn-link,.btn-overlay,.btn-primary,.btn-secondary{-webkit-transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;transition:color 125ms ease-in-out 0s,border-color 125ms ease-in-out 0s,background 125ms ease-in-out 0s,box-shadow 125ms ease-in-out 0s;display:inline-block;border-style:solid;border-radius:3px;border-width:1px;font-weight:600}.btn-combo,.btn-link{border-radius:0}.block.btn-combo,.block.btn-default,.block.btn-elevated,.block.btn-elevated-alt,.block.btn-link,.block.btn-overlay,.block.btn-primary,.block.btn-secondary{display:block;width:100%}.btn-large{padding:1.25rem 1.875rem;font-size:1.125rem}.btn-base{padding:.625rem 1.25rem;font-size:1rem}.btn-small{padding:.625rem;font-size:.875rem}.btn-default{border-color:#0079bc;background:#fcfcfc;color:#0079bc}.btn-default.is-focused,.btn-default.is-hovered,.btn-default:focus,.btn-default:hover{background:#0079bc;color:#fcfcfc}.btn-default.is-active,.btn-default.is-pressed,.btn-default:active{border-color:#065683;background:#065683}.btn-default.is-disabled,.btn-default:disabled{border-color:#d2d0d0;background:#fcfcfc;color:#6b6969}.btn-primary{border-color:#0079bc;background:#0079bc;color:#fcfcfc}.btn-primary.is-focused,.btn-primary.is-hovered,.btn-primary:focus,.btn-primary:hover{border-color:#0ea6ec;background:#0ea6ec}.btn-primary.is-active,.btn-primary.is-pressed,.btn-primary:active{border-color:#0079bc;background:#0079bc}.btn-primary.is-disabled,.btn-primary:disabled{border-color:#d2d0d0;background:#e7e6e6;color:#6b6969}.btn-secondary{border-color:transparent;background:0 0;color:#0079bc}.btn-secondary.is-focused,.btn-secondary.is-hovered,.btn-secondary:focus,.btn-secondary:hover{border-color:#cdd7db}.btn-secondary.is-active,.btn-secondary.is-pressed,.btn-secondary:active{border-color:#0079bc;color:#0079bc}.btn-secondary.is-disabled,.btn-secondary:disabled{border-color:#d2d0d0;color:#6b6969}.btn-link{border-color:transparent;padding:1px;background:0 0}.btn-link:disabled{display:none}.btn-elevated{border-color:#0079bc;box-shadow:inset 0 -3px 0 0 #065683;background:#0079bc;color:#fcfcfc}.btn-elevated.is-focused,.btn-elevated.is-hovered,.btn-elevated:focus,.btn-elevated:hover{box-shadow:inset 0 -3px 0 0 #065683;background:#0ea6ec}.btn-elevated.is-active,.btn-elevated.is-pressed,.btn-elevated:active{box-shadow:inset 0 3px 0 0 #0b344a;background:#065683}.btn-elevated.is-disabled,.btn-elevated:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-elevated-alt{box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #cdd7db;border-color:#cdd7db;background:0 0;color:#0079bc}.btn-elevated-alt.is-focused,.btn-elevated-alt.is-hovered,.btn-elevated-alt:focus,.btn-elevated-alt:hover{border-color:#0079bc;box-shadow:inset 0 0-"inset 0 -3px 0 0 #065683" 0 0 #0079bc;background:#0ea6ec;color:#fcfcfc}.btn-elevated-alt.is-active,.btn-elevated-alt.is-pressed,.btn-elevated-alt:active{box-shadow:inset 0 inset 0 -3px 0 0 #065683 0 0 #0b344a;background:#065683}.btn-elevated-alt.is-disabled,.btn-elevated-alt:disabled{border-color:#e7e6e6;box-shadow:inset 0 -1px 0 #d2d0d0;background:#e7e6e6;color:#6b6969}.btn-combo:first-of-type{-webkit-border-top-right-radius:3px;-moz-border-topright-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottomright-radius:3px;border-bottom-right-radius:3px}.btn-combo:last-of-type{-webkit-border-top-left-radius:3px;-moz-border-topleft-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottomleft-radius:3px;border-bottom-left-radius:3px}.btn-overlay{border-color:#fcfcfc;background:0 0;color:#fcfcfc}.btn-overlay.is-focused,.btn-overlay.is-hovered,.btn-overlay:focus,.btn-overlay:hover{background:#fcfcfc;color:#0079bc}.btn-overlay.is-active,.btn-overlay.is-pressed,.btn-overlay:active{color:#065683}.btn-overlay.is-disabled,.btn-overlay:disabled{border-color:rgba(167,164,164,.5);color:#fcfcfc}.btn-overlay.is-disabled:hover,.btn-overlay:disabled:hover{border-color:rgba(167,164,164,.5);background:0 0;color:#fcfcfc}.hd-1,.hd-2,.hd-3,.hd-4,.hd-5,.hd-6,h1,h2,h3,h4,h5,h6{margin:0 0 1.25rem;font-weight:400;font-size:1rem;line-height:1.5;color:#4d4b4b}.hd-1,.hd-2{margin-bottom:1.25rem;line-height:1.4}.alert-title,.hd-1.emphasized,.hd-2.emphasized,.hd-3.emphasized,.hd-4.emphasized,.hd-5.emphasized,.hd-6.emphasized{color:#000;font-weight:600}.hd-1.de-emphasized,.hd-2.de-emphasized,.hd-3.de-emphasized,.hd-4.de-emphasized,.hd-5.de-emphasized,.hd-6.de-emphasized{color:#6b6969}.hd-6.emphasized,.hd-7.emphasized{font-weight:700}.hd-1{font-size:2.375rem}.hd-2{font-size:1.75rem}.hd-3,.hd-4,.hd-5{margin-bottom:.625rem}.hd-3{font-size:1.5rem;line-height:1.5}.hd-4,.hd-5,.hd-7{line-height:1.6}.hd-4{font-size:1.3125rem}.hd-5{font-size:1.125rem}.alert-title,.hd-6{margin-bottom:.3125rem;font-size:1rem;font-weight:600;line-height:1.6}.emphasized.alert-title,.emphasized.hd-6{font-weight:700}.hd-7{margin-bottom:.625rem;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.badge,.hd-8{letter-spacing:.03125rem}.emphasized.hd-7{font-weight:700}.hd-8{margin-bottom:.3125rem;font-size:.75rem;font-weight:600;line-height:1.5}.emphasized.hd-8{font-weight:700}.copy.emphasized{color:#000;font-weight:400}.copy.de-emphasized{color:#6b6969;font-weight:400}.copy{color:#4d4b4b}.copy-lead{font-size:1.3125rem;line-height:1.5}.copy-lead dl,.copy-lead ol,.copy-lead p,.copy-lead ul{margin-bottom:1.875rem}.alert-copy dl,.alert-copy ol,.alert-copy p,.alert-copy ul,.copy-base dl,.copy-base ol,.copy-base p,.copy-base ul,.copy-large dl,.copy-large ol,.copy-large p,.copy-large ul,.copy-meta dl,.copy-meta ol,.copy-meta p,.copy-meta ul,.copy-micro dl,.copy-micro ol,.copy-micro p,.copy-micro ul,.example-layout .example-label dl,.example-layout .example-label ol,.example-layout .example-label p,.example-layout .example-label ul,.pldoc-pattern-grid .col .example-label dl,.pldoc-pattern-grid .col .example-label ol,.pldoc-pattern-grid .col .example-label p,.pldoc-pattern-grid .col .example-label ul,.pldoc-pattern-grid .example-grid .example-label dl,.pldoc-pattern-grid .example-grid .example-label ol,.pldoc-pattern-grid .example-grid .example-label p,.pldoc-pattern-grid .example-grid .example-label ul,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label dl,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ol,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label p,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label ul,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story .example-label p,.pldoc-pattern-grid .example-grid-semantic .story .example-label ul,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label dl,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ol,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label p,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label ul,.pldoc-pattern-grid .gallery-item .example-label dl,.pldoc-pattern-grid .gallery-item .example-label ol,.pldoc-pattern-grid .gallery-item .example-label p,.pldoc-pattern-grid .gallery-item .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-main .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-main .example-label p,.pldoc-view-example-grid #example-grid-1 .content-main .example-label ul,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label ul,.pldoc-view-example-grid #example-grid-1 .story .example-label dl,.pldoc-view-example-grid #example-grid-1 .story .example-label ol,.pldoc-view-example-grid #example-grid-1 .story .example-label p,.pldoc-view-example-grid #example-grid-1 .story .example-label ul,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label dl,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ol,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label p,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label ul,.pldoc-view-example-grid .example-grid .col .example-label dl,.pldoc-view-example-grid .example-grid .col .example-label ol,.pldoc-view-example-grid .example-grid .col .example-label p,.pldoc-view-example-grid .example-grid .col .example-label ul{margin-bottom:1.25rem}.copy-large{font-size:1.125rem;line-height:1.6}.copy-base{font-size:1rem;line-height:1.6}.alert-copy,.copy-meta{font-size:.875rem;line-height:1.6}.copy-micro,.example-layout .example-label,.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{font-size:.75rem;line-height:1.5}.form-group{margin-bottom:1.875rem}.form-group::after{clear:both;content:"";display:table}.form-group .form-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.form-group .field{margin-bottom:2.5rem}.form-group .field:last-child{margin-bottom:0}.form-group .field .field-hint{font-size:.875rem;color:#586165}.field-group{margin-bottom:1.25rem}.field-group .field-group-hd{margin-bottom:1.25rem;font-size:1.125rem}.field-group .field{margin-bottom:.625rem}.field-group .field:last-child{margin-bottom:0}.field-group .field .field-hint{margin-right:1.875rem;margin-top:.3125rem;font-size:.875rem;color:#586165}.field-label{display:block;width:auto;margin-bottom:.625rem;font-size:1rem;line-height:100%;color:#4d4b4b}.field-label.label-inline{display:inline-block;margin-bottom:0}.field-label .field-input:checked+.field-input-label,.field-label .field-radio:checked+.field-input-label,.field-label .wrapper-custom-select:checked+.field-input-label,.field-label.is-active,.field-label.is-selected{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;color:#4d4b4b}.field-message{font-size:.875rem;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.field-message.has-error{padding:.625rem;background:#b20610;color:#fcfcfc}.field-hint{margin-top:.625rem}.field-required:before{display:inline-block;margin-right:.3125rem;content:"*";font-size:.875rem;color:#4d4b4b}.field-hint,.field-message,.input-progress,.input-select,.input-slider,.input-text,.input-textarea,.wrapper-custom-select{width:18.75rem}.field-input,.field-select,.field-textarea,.wrapper-custom-select{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;display:inline-block;padding:.625rem;border:1px solid #e7e6e6;background:#fcfcfc;font-size:1rem;color:#34383a}.field-input::-webkit-input-placeholder,.field-select::-webkit-input-placeholder,.field-textarea::-webkit-input-placeholder,.wrapper-custom-select::-webkit-input-placeholder{color:#cdd7db}.field-input::-moz-placeholder,.field-select::-moz-placeholder,.field-textarea::-moz-placeholder,.wrapper-custom-select::-moz-placeholder{color:#cdd7db}.field-input:-moz-placeholder,.field-select:-moz-placeholder,.field-textarea:-moz-placeholder,.wrapper-custom-select:-moz-placeholder{color:#cdd7db}.field-input:-ms-input-placeholder,.field-select:-ms-input-placeholder,.field-textarea:-ms-input-placeholder,.wrapper-custom-select:-ms-input-placeholder{color:#cdd7db}.field-input.is-active,.field-input:focus,.field-select.is-active,.field-select:focus,.field-textarea.is-active,.field-textarea:focus,.is-active.wrapper-custom-select,.wrapper-custom-select:focus{border-color:#0ea6ec;color:#34383a;outline:0}.field-input.is-disabled,.field-input:disabled,.field-select.is-disabled,.field-select:disabled,.field-textarea.is-disabled,.field-textarea:disabled,.is-disabled.wrapper-custom-select,.wrapper-custom-select:disabled{border-color:#cdd7db;background:#e5e9eb;cursor:not-allowed}.field-input.has-error,.field-select.has-error,.field-textarea.has-error,.has-error.wrapper-custom-select{border-color:#b20610}.field-input.has-error+.field-hint,.field-select.has-error+.field-hint,.field-textarea.has-error+.field-hint,.has-error.wrapper-custom-select+.field-hint{color:#7d0910}.field-input.has-error .icon,.field-select.has-error .icon,.field-textarea.has-error .icon,.has-error.wrapper-custom-select .icon{fill:#b20610}.field-input.has-warning,.field-select.has-warning,.field-textarea.has-warning,.has-warning.wrapper-custom-select{border-color:#fdbc56}.field-input.has-warning+.field-hint,.field-select.has-warning+.field-hint,.field-textarea.has-warning+.field-hint,.has-warning.wrapper-custom-select+.field-hint{color:#af833f}.field-input.has-warning .icon,.field-select.has-warning .icon,.field-textarea.has-warning .icon,.has-warning.wrapper-custom-select .icon{fill:#fdbc56}.field-input.has-success,.field-select.has-success,.field-textarea.has-success,.has-success.wrapper-custom-select{border-color:#25b85a}.field-input.has-success .icon,.field-select.has-success .icon,.field-textarea.has-success .icon,.has-success.wrapper-custom-select .icon{fill:#25b85a}.form-progress{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s}.input-text.input-alt{padding:spacing-verical(small) 0;border-width:0 0 2px;background:0 0}.grid-manual .col-1,.grid-manual .col-10,.grid-manual .col-11,.grid-manual .col-12,.grid-manual .col-2,.grid-manual .col-3,.grid-manual .col-4,.grid-manual .col-5,.grid-manual .col-7,.grid-manual .col-8,.grid-manual .col-9{padding-right:1.04167%;padding-left:1.04167%}.input-text.input-alt.is-active,.input-text.input-alt:focus{border-color:#4d4b4b;background:0 0}.input-text.input-alt.has-error{border-width:1px 1px 2px;border-color:#b20610}.wrapper-replace-select{position:relative;margin-bottom:0}.input-select{height:2.5rem;line-height:1.25rem}.input-select+.field-message{margin-top:-.3125rem}.input-select.is-replaced{position:relative;top:0;right:0;z-index:10;opacity:0}.wrapper-custom-select{display:inline;position:absolute;top:0;right:0;height:2.5rem;line-height:100%;z-index:1}.wrapper-custom-select .icon{height:1.25rem;width:1.25rem;position:absolute;left:.3125rem;margin-top:-.125rem;color:#0079bc;vertical-align:middle}.input-checkbox.is-disabled+.field-input-label,.input-checkbox.is-disabled.replace-checkbox+.field-input-label,.input-checkbox.is-disabled.replace-radio+.field-input-label,.input-checkbox:disabled+.field-input-label,.input-checkbox:disabled.replace-checkbox+.field-input-label,.input-checkbox:disabled.replace-radio+.field-input-label,.input-radio.is-disabled+.field-input-label,.input-radio.is-disabled.replace-checkbox+.field-input-label,.input-radio.is-disabled.replace-radio+.field-input-label,.input-radio:disabled+.field-input-label,.input-radio:disabled.replace-checkbox+.field-input-label,.input-radio:disabled.replace-radio+.field-input-label{color:#a7a4a4}.wrapper-custom-select .icon-fallback-glyph .icon:before{content:"\25BE"}.wrapper-custom-select.is-disabled .icon,.wrapper-custom-select:disabled .icon{fill:#cdd7db}.input-checkbox,.input-radio{margin-left:.625rem}.input-checkbox.replace-checkbox+.field-input-label:before,.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{height:1rem;width:1rem;display:inline-block;vertical-align:top;content:""}.gallery::after,.row::after{content:"";display:table}.input-checkbox.replace-checkbox+.field-input-label:before,.input-radio.replace-checkbox+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;background:#e5e9eb;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-checkbox:checked+.field-input-label:before,.input-radio.replace-checkbox:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.replace-radio+.field-input-label:before,.input-radio.replace-radio+.field-input-label:before{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;margin-left:.625rem;border:1px solid #e7e6e6;border-radius:50%;background:#0079bc;box-shadow:inset 0 0 0 3px #fcfcfc}.input-checkbox.replace-radio:checked+.field-input-label:before,.input-radio.replace-radio:checked+.field-input-label:before{border-color:transparent;background:#fcfcfc;box-shadow:inset 0 0 0 6px #0079bc}.input-checkbox.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-checkbox:disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio.is-disabled.replace-radio+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-checkbox+.field-input-label:before+.field-input-label:before,.input-radio:disabled.replace-radio+.field-input-label:before+.field-input-label:before{background:#fcfcfc;box-shadow:none;cursor:not-allowed}.input-checkbox.is-disabled,.input-checkbox:disabled,.input-radio.is-disabled,.input-radio:disabled{cursor:not-allowed}.input-textarea{height:10rem}.input-textarea+.field-message{margin-top:-.3125rem}.input-textarea.textarea-short{height:5rem}.input-textarea.textarea-tall{height:15rem}.input-textarea.textarea-block{width:100%}.input-slider{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:none;border-radius:3px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-slider::-webkit-slider-runnable-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-webkit-slider-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-moz-range-track{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-moz-range-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider::-ms-fill-upper{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-fill-lower{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-slider::-ms-track{border-width:.625rem;border-color:transparent;background:0 0;color:transparent}.input-slider::-ms-thumb{height:.625rem;width:.625rem;-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;border:0;border-radius:50%;background:#53a4d1;-webkit-appearance:none}.input-slider.is-focused::-webkit-slider-runnable-track,.input-slider.is-hovered::-webkit-slider-runnable-track,.input-slider:focus::-webkit-slider-runnable-track,.input-slider:hover::-webkit-slider-runnable-track{background:#00abfa}.input-slider.is-focused::-webkit-slider-thumb,.input-slider.is-hovered::-webkit-slider-thumb,.input-slider:focus::-webkit-slider-thumb,.input-slider:hover::-webkit-slider-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-moz-range-track,.input-slider.is-hovered::-moz-range-track,.input-slider:focus::-moz-range-track,.input-slider:hover::-moz-range-track{background:#00abfa}.input-slider.is-focused::-moz-range-thumb,.input-slider.is-hovered::-moz-range-thumb,.input-slider:focus::-moz-range-thumb,.input-slider:hover::-moz-range-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-slider.is-focused::-ms-track,.input-slider.is-hovered::-ms-track,.input-slider:focus::-ms-track,.input-slider:hover::-ms-track{background:0 0;border-color:transparent}.input-slider.is-focused::-ms-fill-upper,.input-slider.is-hovered::-ms-fill-upper,.input-slider:focus::-ms-fill-upper,.input-slider:hover::-ms-fill-upper{background:#00abfa}.input-slider.is-focused::-ms-fill-lower,.input-slider.is-hovered::-ms-fill-lower,.input-slider:focus::-ms-fill-lower,.input-slider:hover::-ms-fill-lower{background:#00abfa}.input-slider.is-focused::-ms-thumb,.input-slider.is-hovered::-ms-thumb,.input-slider:focus::-ms-thumb,.input-slider:hover::-ms-thumb{height:1.25rem;width:1.25rem;margin-top:-.38462rem;background:#0079bc}.input-progress{height:.625rem;background:#e7e6e6;border:none;border-radius:3px}.input-progress[value]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.input-progress[value]::-webkit-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-webkit-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-moz-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.input-progress[value]::-ms-progress-bar{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;-webkit-transform-origin:center center;transform-origin:center center;width:100%;height:.625rem;border:0;border-radius:3px;background:#e7e6e6;cursor:pointer}.input-progress[value]::-ms-progress-value{-webkit-transition:all 125ms ease-in-out 0s;transition:all 125ms ease-in-out 0s;background:#00abfa;border-radius:3px}.grid-container .col.col-last,.grid-container .col.col-omega{float:left;margin-left:0}.gallery,.gallery::after,.grid-break,.grid-container .col.col-break,.grid-container .col.col-full,.row,.row::after{clear:both}.grid-container,.pldoc-view-example-depth .example-set,.pldoc-view-example-layouts .example-layout-hd{max-width:73.125rem;margin-left:auto;margin-right:auto}.grid-container::after,.pldoc-view-example-depth .example-set::after,.pldoc-view-example-layouts .example-layout-hd::after{clear:both;content:"";display:table}.grid-container .col .fill-col{display:block;width:100%}.grid-container .col.col-first{margin-right:0}.grid-container .col.col-full{width:100%;float:right;margin-right:0;margin-left:0}.grid-unbreak{clear:none}.grid-manual .row{margin-right:-1.04167%;margin-left:-1.04167%}.grid-manual .col-1{width:8.33333%;float:right}.grid-manual .col-2{width:16.66667%;float:right}.grid-manual .col-3{width:25%;float:right}.grid-manual .col-4{width:33.33333%;float:right}.grid-manual .col-5{width:41.66667%;float:right}.grid-manual .col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .col-7{width:58.33333%;float:right}.grid-manual .col-8{width:66.66667%;float:right}.grid-manual .col-9{width:75%;float:right}.grid-manual .col-10{width:83.33333%;float:right}.grid-manual .col-11{width:91.66667%;float:right}.grid-manual .col-12{width:100%;float:right}.grid-manual .pre-1{margin-right:8.33333%}.grid-manual .pre-2{margin-right:16.66667%}.grid-manual .pre-3{margin-right:25%}.grid-manual .pre-4{margin-right:33.33333%}.grid-manual .pre-5{margin-right:41.66667%}.grid-manual .pre-6{margin-right:50%}.grid-manual .pre-7{margin-right:58.33333%}.grid-manual .pre-8{margin-right:66.66667%}.grid-manual .pre-9{margin-right:75%}.grid-manual .pre-10{margin-right:83.33333%}.grid-manual .pre-11{margin-right:91.66667%}.grid-manual .pre-12{margin-right:100%}.grid-manual .post-1{margin-right:8.33333%}.grid-manual .post-2{margin-right:16.66667%}.grid-manual .post-3{margin-right:25%}.grid-manual .post-4{margin-right:33.33333%}.grid-manual .post-5{margin-right:41.66667%}.grid-manual .post-6{margin-right:50%}.grid-manual .post-7{margin-right:58.33333%}.grid-manual .post-8{margin-right:66.66667%}.grid-manual .post-9{margin-right:75%}.grid-manual .post-10{margin-right:83.33333%}.grid-manual .post-11{margin-right:91.66667%}.grid-manual .post-12{margin-right:100%}@media (min-width:480px){.grid-manual .sm-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .sm-pre-1{margin-right:8.33333%}.grid-manual .sm-pre-2{margin-right:16.66667%}.grid-manual .sm-pre-3{margin-right:25%}.grid-manual .sm-pre-4{margin-right:33.33333%}.grid-manual .sm-pre-5{margin-right:41.66667%}.grid-manual .sm-pre-6{margin-right:50%}.grid-manual .sm-pre-7{margin-right:58.33333%}.grid-manual .sm-pre-8{margin-right:66.66667%}.grid-manual .sm-pre-9{margin-right:75%}.grid-manual .sm-pre-10{margin-right:83.33333%}.grid-manual .sm-pre-11{margin-right:91.66667%}.grid-manual .sm-pre-12{margin-right:100%}.grid-manual .sm-post-1{margin-left:8.33333%}.grid-manual .sm-post-2{margin-left:16.66667%}.grid-manual .sm-post-3{margin-left:25%}.grid-manual .sm-post-4{margin-left:33.33333%}.grid-manual .sm-post-5{margin-left:41.66667%}.grid-manual .sm-post-6{margin-left:50%}.grid-manual .sm-post-7{margin-left:58.33333%}.grid-manual .sm-post-8{margin-left:66.66667%}.grid-manual .sm-post-9{margin-left:75%}.grid-manual .sm-post-10{margin-left:83.33333%}.grid-manual .sm-post-11{margin-left:91.66667%}.grid-manual .sm-post-12{margin-left:100%}}@media (min-width:768px){.grid-manual .md-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .md-pre-1{margin-right:8.33333%}.grid-manual .md-pre-2{margin-right:16.66667%}.grid-manual .md-pre-3{margin-right:25%}.grid-manual .md-pre-4{margin-right:33.33333%}.grid-manual .md-pre-5{margin-right:41.66667%}.grid-manual .md-pre-6{margin-right:50%}.grid-manual .md-pre-7{margin-right:58.33333%}.grid-manual .md-pre-8{margin-right:66.66667%}.grid-manual .md-pre-9{margin-right:75%}.grid-manual .md-pre-10{margin-right:83.33333%}.grid-manual .md-pre-11{margin-right:91.66667%}.grid-manual .md-pre-12{margin-right:100%}.grid-manual .md-post-1{margin-left:8.33333%}.grid-manual .md-post-2{margin-left:16.66667%}.grid-manual .md-post-3{margin-left:25%}.grid-manual .md-post-4{margin-left:33.33333%}.grid-manual .md-post-5{margin-left:41.66667%}.grid-manual .md-post-6{margin-left:50%}.grid-manual .md-post-7{margin-left:58.33333%}.grid-manual .md-post-8{margin-left:66.66667%}.grid-manual .md-post-9{margin-left:75%}.grid-manual .md-post-10{margin-left:83.33333%}.grid-manual .md-post-11{margin-left:91.66667%}.grid-manual .md-post-12{margin-left:100%}}@media (min-width:1024px){.grid-manual .lg-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .lg-pre-1{margin-right:8.33333%}.grid-manual .lg-pre-2{margin-right:16.66667%}.grid-manual .lg-pre-3{margin-right:25%}.grid-manual .lg-pre-4{margin-right:33.33333%}.grid-manual .lg-pre-5{margin-right:41.66667%}.grid-manual .lg-pre-6{margin-right:50%}.grid-manual .lg-pre-7{margin-right:58.33333%}.grid-manual .lg-pre-8{margin-right:66.66667%}.grid-manual .lg-pre-9{margin-right:75%}.grid-manual .lg-pre-10{margin-right:83.33333%}.grid-manual .lg-pre-11{margin-right:91.66667%}.grid-manual .lg-pre-12{margin-right:100%}.grid-manual .lg-post-1{margin-left:8.33333%}.grid-manual .lg-post-2{margin-left:16.66667%}.grid-manual .lg-post-3{margin-left:25%}.grid-manual .lg-post-4{margin-left:33.33333%}.grid-manual .lg-post-5{margin-left:41.66667%}.grid-manual .lg-post-6{margin-left:50%}.grid-manual .lg-post-7{margin-left:58.33333%}.grid-manual .lg-post-8{margin-left:66.66667%}.grid-manual .lg-post-9{margin-left:75%}.grid-manual .lg-post-10{margin-left:83.33333%}.grid-manual .lg-post-11{margin-left:91.66667%}.grid-manual .lg-post-12{margin-left:100%}}@media (min-width:1280px){.grid-manual .xl-col-1{width:8.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-2{width:16.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-3{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-4{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-5{width:41.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-6{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-7{width:58.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-8{width:66.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-9{width:75%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-10{width:83.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-11{width:91.66667%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-col-12{width:100%;float:right;padding-right:1.04167%;padding-left:1.04167%}.grid-manual .xl-pre-1{margin-right:8.33333%}.grid-manual .xl-pre-2{margin-right:16.66667%}.grid-manual .xl-pre-3{margin-right:25%}.grid-manual .xl-pre-4{margin-right:33.33333%}.grid-manual .xl-pre-5{margin-right:41.66667%}.grid-manual .xl-pre-6{margin-right:50%}.grid-manual .xl-pre-7{margin-right:58.33333%}.grid-manual .xl-pre-8{margin-right:66.66667%}.grid-manual .xl-pre-9{margin-right:75%}.grid-manual .xl-pre-10{margin-right:83.33333%}.grid-manual .xl-pre-11{margin-right:91.66667%}.grid-manual .xl-pre-12{margin-right:100%}.grid-manual .xl-post-1{margin-left:8.33333%}.grid-manual .xl-post-2{margin-left:16.66667%}.grid-manual .xl-post-3{margin-left:25%}.grid-manual .xl-post-4{margin-left:33.33333%}.grid-manual .xl-post-5{margin-left:41.66667%}.grid-manual .xl-post-6{margin-left:50%}.grid-manual .xl-post-7{margin-left:58.33333%}.grid-manual .xl-post-8{margin-left:66.66667%}.grid-manual .xl-post-9{margin-left:75%}.grid-manual .xl-post-10{margin-left:83.33333%}.grid-manual .xl-post-11{margin-left:91.66667%}.grid-manual .xl-post-12{margin-left:100%}}.grid-manual .gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .gallery-10 .gallery-item:nth-child(1n+1),.grid-manual .gallery-11 .gallery-item:nth-child(1n+1),.grid-manual .gallery-7 .gallery-item:nth-child(1n+1),.grid-manual .gallery-8 .gallery-item:nth-child(1n+1),.grid-manual .gallery-9 .gallery-item:nth-child(1n+1){clear:both;margin-right:0;margin-left:-100%}.grid-manual .gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .gallery-12 .gallery-item{width:100%;float:right}.grid-manual .gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}@media (min-width:480px){.grid-manual .sm-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .sm-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .sm-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .sm-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .sm-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .sm-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .sm-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .sm-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .sm-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:768px){.grid-manual .md-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .md-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .md-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .md-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .md-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .md-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .md-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .md-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .md-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .md-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .md-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .md-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1024px){.grid-manual .lg-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .lg-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .lg-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .lg-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .lg-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .lg-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .lg-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .lg-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .lg-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}@media (min-width:1280px){.grid-manual .xl-gallery-1 .gallery-item{width:6.38298%;float:right}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+2){margin-right:8.51064%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+3){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+4){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+5){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+6){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+7){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+8){margin-right:59.57447%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+9){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+10){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+11){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-1 .gallery-item:nth-child(12n+12){margin-right:93.61702%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item{width:14.89362%;float:right}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+2){margin-right:17.02128%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+3){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+4){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+5){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-2 .gallery-item:nth-child(6n+6){margin-right:85.10638%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item{width:23.40426%;float:right}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-3 .gallery-item:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item{width:31.91489%;float:right}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-4 .gallery-item:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-5 .gallery-item{width:40.42553%;float:right}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-5 .gallery-item:nth-child(2n+2){margin-right:42.55319%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-6 .gallery-item{width:48.93617%;float:right}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-6 .gallery-item:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.grid-manual .xl-gallery-7 .gallery-item{width:57.44681%;float:right}.grid-manual .xl-gallery-7 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-8 .gallery-item{width:65.95745%;float:right}.grid-manual .xl-gallery-8 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-9 .gallery-item{width:74.46809%;float:right}.grid-manual .xl-gallery-9 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-10 .gallery-item{width:82.97872%;float:right}.grid-manual .xl-gallery-10 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-11 .gallery-item{width:91.48936%;float:right}.grid-manual .xl-gallery-11 .gallery-item:nth-child(1n+1){margin-left:-100%;clear:both;margin-right:0}.grid-manual .xl-gallery-12 .gallery-item{width:100%;float:right}.grid-manual .xl-gallery-12 .gallery-item:nth-child(1n+1){margin-right:0;margin-left:-100%;clear:none}}.layout,.layout-1h1h.layout,.layout-1q1h1q.layout,.layout-1q1q1h.layout,.layout-1q3q.layout,.layout-1t1t1t.layout,.layout-1t2t.layout,.layout-full{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout:after,.layout-1q1h1q.layout:after,.layout-1q1q1h.layout:after,.layout-1q3q.layout:after,.layout-1t1t1t.layout:after,.layout-1t2t.layout:after,.layout-full:after,.layout:after{content:" ";display:block;clear:both}.layout-1h1h.layout-flush,.layout-1q1h1q.layout-flush,.layout-1q1q1h.layout-flush,.layout-1q3q.layout-flush,.layout-1t1t1t.layout-flush,.layout-1t2t.layout-flush,.layout-flush{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-flush:after,.layout-1q1h1q.layout-flush:after,.layout-1q1q1h.layout-flush:after,.layout-1q3q.layout-flush:after,.layout-1t1t1t.layout-flush:after,.layout-1t2t.layout-flush:after,.layout-flush:after{content:" ";display:block;clear:both}.layout-1h1h.layout-reversed,.layout-1q1h1q.layout-reversed,.layout-1q1q1h.layout-reversed,.layout-1q3q.layout-reversed,.layout-1t1t1t.layout-reversed,.layout-1t2t.layout-reversed{max-width:73.125rem;margin-left:auto;margin-right:auto}.layout-1h1h.layout-reversed:after,.layout-1q1h1q.layout-reversed:after,.layout-1q1q1h.layout-reversed:after,.layout-1q3q.layout-reversed:after,.layout-1t1t1t.layout-reversed:after,.layout-1t2t.layout-reversed:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view,.layout-view-1q1h1q.layout-view,.layout-view-1q3q.layout-view,.layout-view-1t1t1t.layout-view,.layout-view-1t2t.layout-view{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view:after,.layout-view-1q1h1q.layout-view:after,.layout-view-1q3q.layout-view:after,.layout-view-1t1t1t.layout-view:after,.layout-view-1t2t.layout-view:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-flush,.layout-view-1q1h1q.layout-view-flush,.layout-view-1q3q.layout-view-flush,.layout-view-1t1t1t.layout-view-flush,.layout-view-1t2t.layout-view-flush{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-flush:after,.layout-view-1q1h1q.layout-view-flush:after,.layout-view-1q3q.layout-view-flush:after,.layout-view-1t1t1t.layout-view-flush:after,.layout-view-1t2t.layout-view-flush:after{content:" ";display:block;clear:both}.layout-view-1h1h.layout-view-reversed,.layout-view-1q1h1q.layout-view-reversed,.layout-view-1q3q.layout-view-reversed,.layout-view-1t1t1t.layout-view-reversed,.layout-view-1t2t.layout-view-reversed{max-width:100%;margin-left:auto;margin-right:auto}.layout-view-1h1h.layout-view-reversed:after,.layout-view-1q1h1q.layout-view-reversed:after,.layout-view-1q3q.layout-view-reversed:after,.layout-view-1t1t1t.layout-view-reversed:after,.layout-view-1t2t.layout-view-reversed:after{content:" ";display:block;clear:both}.layout-col,.layout-full .layout-col-a,.layout-full .layout-col-b,.layout-full .layout-col-c,.layout-full .layout-col-d{width:100%;float:right;margin-right:0;margin-left:0}@media (min-width:768px){.layout-1q3q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q3q.layout .layout-col-b{width:74.46809%;float:left;margin-left:0}.layout-1q3q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-flush .layout-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q3q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q3q.layout-reversed .layout-col-b{width:74.46809%;float:right;margin-right:0}.layout-1t1t1t.layout .layout-col-a,.layout-1t1t1t.layout .layout-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t1t1t.layout .layout-col-c{width:31.91489%;float:left;margin-left:0}.layout-1t1t1t.layout-flush .layout-col-a,.layout-1t1t1t.layout-flush .layout-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-flush .layout-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t1t1t.layout-reversed .layout-col-a,.layout-1t1t1t.layout-reversed .layout-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t1t1t.layout-reversed .layout-col-c{width:31.91489%;float:right;margin-right:0}.layout-1t2t.layout .layout-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-1t2t.layout .layout-col-b{width:65.95745%;float:left;margin-left:0}.layout-1t2t.layout-flush .layout-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-flush .layout-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1t2t.layout-reversed .layout-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-1t2t.layout-reversed .layout-col-b{width:65.95745%;float:right;margin-right:0}.layout-1h1h.layout .layout-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-1h1h.layout .layout-col-b{width:48.93617%;float:left;margin-left:0}.layout-1h1h.layout-flush .layout-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-flush .layout-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1h1h.layout-reversed .layout-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-1h1h.layout-reversed .layout-col-b{width:48.93617%;float:right;margin-right:0}.layout-1q1h1q.layout .layout-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-1q1h1q.layout .layout-col-c{width:23.40426%;float:left;margin-left:0}.layout-1q1h1q.layout-flush .layout-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-flush .layout-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1h1q.layout-reversed .layout-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-1q1h1q.layout-reversed .layout-col-c{width:23.40426%;float:right;margin-right:0}.layout-1q1q1h.layout .layout-col-a,.layout-1q1q1h.layout .layout-col-b{width:23.40426%;float:right;margin-left:2.12766%}.layout-1q1q1h.layout .layout-col-c{width:48.93617%;float:left;margin-left:0}.layout-1q1q1h.layout-flush .layout-col-a,.layout-1q1q1h.layout-flush .layout-col-b{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-flush .layout-col-c{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-1q1q1h.layout-reversed .layout-col-a,.layout-1q1q1h.layout-reversed .layout-col-b{width:23.40426%;float:left;margin-right:2.12766%}.layout-1q1q1h.layout-reversed .layout-col-c{width:48.93617%;float:right;margin-right:0}.layout-view-1h1h.layout-view .layout-view-col-a{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1h1h.layout-view .layout-view-col-b{width:48.93617%;float:left;margin-left:0}.layout-view-1h1h.layout-view-flush .layout-view-col-a{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-flush .layout-view-col-b{width:50%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1h1h.layout-view-reversed .layout-view-col-a{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1h1h.layout-view-reversed .layout-view-col-b{width:48.93617%;float:right;margin-right:0}.layout-view-1t1t1t.layout-view .layout-view-col-a,.layout-view-1t1t1t.layout-view .layout-view-col-b{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t1t1t.layout-view .layout-view-col-c{width:31.91489%;float:left;margin-left:0}.layout-view-1t1t1t.layout-view-flush .layout-view-col-a,.layout-view-1t1t1t.layout-view-flush .layout-view-col-b{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-flush .layout-view-col-c{width:33.33333%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-a,.layout-view-1t1t1t.layout-view-reversed .layout-view-col-b{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t1t1t.layout-view-reversed .layout-view-col-c{width:31.91489%;float:right;margin-right:0}.layout-view-1q1h1q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-b{width:48.93617%;float:right;margin-left:2.12766%}.layout-view-1q1h1q.layout-view .layout-view-col-c{width:23.40426%;float:left;margin-left:0}.layout-view-1q1h1q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-b{width:50%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-flush .layout-view-col-c{width:25%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-b{width:48.93617%;float:left;margin-right:2.12766%}.layout-view-1q1h1q.layout-view-reversed .layout-view-col-c{width:23.40426%;float:right;margin-right:0}.layout-view-1t2t.layout-view .layout-view-col-a{width:31.91489%;float:right;margin-left:2.12766%}.layout-view-1t2t.layout-view .layout-view-col-b{width:65.95745%;float:left;margin-left:0}.layout-view-1t2t.layout-view-flush .layout-view-col-a{width:33.33333%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-flush .layout-view-col-b{width:66.66667%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1t2t.layout-view-reversed .layout-view-col-a{width:31.91489%;float:left;margin-right:2.12766%}.layout-view-1t2t.layout-view-reversed .layout-view-col-b{width:65.95745%;float:right;margin-right:0}.layout-view-1q3q.layout-view .layout-view-col-a{width:23.40426%;float:right;margin-left:2.12766%}.layout-view-1q3q.layout-view .layout-view-col-b{width:74.46809%;float:left;margin-left:0}.layout-view-1q3q.layout-view-flush .layout-view-col-a{width:25%;float:right;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-flush .layout-view-col-b{width:75%;float:left;padding-right:1.04167%;padding-left:1.04167%}.layout-view-1q3q.layout-view-reversed .layout-view-col-a{width:23.40426%;float:left;margin-right:2.12766%}.layout-view-1q3q.layout-view-reversed .layout-view-col-b{width:74.46809%;float:right;margin-right:0}}.card,.slat,.well{padding:1.25rem}.depth--3,.pldoc-wrapper-content-supplemental{background:#34383a}.depth--2{background:#586165}.depth--1,.well{background:#e7e6e6}.depth-0,.pldoc,.pldoc-wrapper-content-main,.zebra-stripe>:nth-child(odd),body{background:#efefef}.depth-1,.pldoc-view-example .pldoc-wrapper-view-header,.slat,.zebra-stripe>:nth-child(even){background:#fcfcfc}.card,.depth-2,.pldoc-tab-content{background:#fcfcfc;box-shadow:0 1px 2px 1px rgba(167,164,164,.25)}.well{box-shadow:inset 0 1px 2px 1px rgba(167,164,164,.25)}/*! afontgarde - v0.1.6 - 2015-03-13 * https://github.com/filamentgroup/a-font-garde * Copyright (c) 2015 Filament Group c/o Zach Leatherman - * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.is-copyable,.pldoc-pattern-markup code{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace}.badge,.pldoc-nav-title{text-transform:uppercase}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat}body,html{height:100%;color:#4d4b4b}.example-set{padding-bottom:2.5rem;border-bottom:.125rem solid #e5e9eb;margin-bottom:2.5rem}.example-set::after{clear:both;content:"";display:table}.example-set .button-overlay-demo{padding:3.75rem 1.875rem;background:url(../images/bg-overlay-example.png) 0 50% no-repeat #0ea6ec;background-size:cover}.is-copyable{display:inline-block}.wrapper-alert{margin-bottom:.625rem}.alert{border-right:.25rem solid #cdd7db;border-radius:.1875rem;padding:1.25rem;background-color:#e7e6e6}.alert-information{border-color:#0079bc}.alert-warning{border-color:#fdbc56}.alert-error{border-color:#b20610}.alert-success{border-color:#25b85a}.alert-ui-toolkit{border-color:#ffde20}.badge{text-align:center;border-radius:.9375rem;padding:.125rem .625rem;font-size:.625rem;font-weight:700}.badge .badge-abbreviation{border-bottom:none}.badge-ui-toolkit{background-color:#ffde20;color:#34383a}.pldoc-header-site .pldoc-header-site-title{display:inline-block;vertical-align:middle}@media (min-width:1024px){.pldoc-header-site,.pldoc-header-site .pldoc-header-site-title{margin:0}}.pldoc-header-site .pldoc-header-site-title .title-name{display:block;margin-bottom:.625rem;color:#fcfcfc;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.0625rem}.pldoc-header-site .pldoc-header-site-title .title-name:active,.pldoc-header-site .pldoc-header-site-title .title-name:focus,.pldoc-header-site .pldoc-header-site-title .title-name:hover{color:#0ea6ec}.pldoc-header-site .pldoc-header-site-title .pldoc-link{border:none}.pldoc-header-site .pldoc-title-description{display:block;color:#a7a4a4;font-weight:400}.pldoc-nav{margin-bottom:3.75rem}.pldoc-nav:last-child{margin-bottom:0}.pldoc-nav .nav-list{margin:0}.pldoc-nav .pldoc-link{-webkit-transition:background .25s ease-in-out;transition:background .25s ease-in-out;display:block;border-bottom:1px solid #111010;padding:.625rem 1.875rem;color:#e7e6e6;text-decoration:none;font-size:.875rem;font-weight:600}.pldoc-nav .pldoc-link:active,.pldoc-nav .pldoc-link:focus,.pldoc-nav .pldoc-link:hover{color:#53a4d1;background:#111010}.pldoc-nav .nav-list-item:last-child .pldoc-link{border-bottom:0}.pldoc-nav .nav-list-item.is-current .pldoc-link:before{display:inline-block}.pldoc-nav .list-patterns .pattern::after{clear:both;content:"";display:table}.pldoc-nav .list-patterns .pattern .badge,.pldoc-nav .list-patterns .pattern .pattern-title{display:inline-block}.pldoc-nav .list-patterns .pattern .pattern-title{width:80%}.pldoc-nav .list-patterns .pattern .badge{float:left}.pldoc-nav-internal .pldoc-link{position:relative}.pldoc-nav-internal .pldoc-link:before{-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;height:.3125rem;width:.3125rem;position:absolute;top:1.125rem;right:.9375rem;content:'';border-radius:100%;opacity:0;background:#0ea6ec}.pldoc-nav-internal .pldoc-link.is-current{color:#53a4d1;background:#111010}.pldoc-nav-internal .pldoc-link.is-current:before{opacity:1}.pldoc-nav-external .pldoc-link::after{clear:both;content:"";display:table}.pldoc-nav-external .pldoc-link .icon{margin-right:.15625rem;float:left;opacity:.25}.pldoc-nav-external .pldoc-link:active .icon,.pldoc-nav-external .pldoc-link:focus .icon,.pldoc-nav-external .pldoc-link:hover .icon{opacity:1}.pldoc-nav-title{margin:0 1.875rem .625rem;color:#a7a4a4;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.pldoc-tab:focus{outline:0}.pldoc-tab-content{-webkit-transition:box-shadow .5s ease-in-out;transition:box-shadow .5s ease-in-out;border:.0625rem solid #e7e6e6;padding:2.5rem 1.25rem}@media (min-width:768px){.pldoc-tab-content{padding:2.5rem 1.875rem}}.pldoc-settings{background:#efefef;margin-bottom:5rem;padding:1.25rem .625rem}.pldoc-setting{display:inline-block;vertical-align:middle;margin-left:.625rem}.pldoc-setting:last-child{margin-left:0}.pldoc-wrapper-content-supplemental{color:#e7e6e6}.pldoc-footer-site{margin:2.5rem 1.25rem}.pldoc-footer-site-copyright .pldoc-copy{font-size:.875rem;color:#a7a4a4}.pldoc-pattern .example-set-hd{margin-bottom:1.25rem}.pldoc-pattern-header{margin-bottom:2.5rem;border-bottom:1px solid #6b6969;padding-bottom:1.25rem}.pldoc-tab-labels{border-bottom:.25rem solid #e7e6e6}.pldoc-tab-labels::after{clear:both;content:"";display:table}.pldoc-tab-label{float:left;position:relative;bottom:-.3125rem}.pldoc-tab-label .pldoc-link{display:block;margin:0;border-width:0 0 .25rem;border-color:transparent;border-style:solid;background:0 0;padding:.625rem .9375rem;font-weight:600;color:#6b6969}.pldoc-tab-label .pldoc-link:focus,.pldoc-tab-label .pldoc-link:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}.pldoc-tab-label .pldoc-link.is-active{border-bottom-color:#4d4b4b;color:#4d4b4b}.pldoc-pattern-colors .brand-primary.base{background:#0079bc}.pldoc-pattern-colors .brand-primary.light{background:#53a4d1}.pldoc-pattern-colors .brand-primary.x-light{background:#a6cfe6}.pldoc-pattern-colors .brand-primary.dark{background:#065683}.pldoc-pattern-colors .brand-primary.x-dark{background:#0b344a}.pldoc-pattern-colors .brand-primary.accent{background:#0ea6ec}.pldoc-pattern-colors .brand-primary.x-accent{background:#00abfa}.pldoc-pattern-colors .brand-secondary,.pldoc-pattern-colors .brand-secondary.base{background:#cb598d}.pldoc-pattern-colors .brand-secondary.light{background:#db8fb2}.pldoc-pattern-colors .brand-secondary.x-light{background:#ebc5d6}.pldoc-pattern-colors .brand-secondary.dark{background:#8e4164}.pldoc-pattern-colors .brand-secondary.x-dark{background:#50293b}.pldoc-pattern-colors .brand-secondary.accent{background:#f26caa}.pldoc-pattern-colors .grayscale,.pldoc-pattern-colors .grayscale.base{background:#a7a4a4}.pldoc-pattern-colors .grayscale.light{background:#d2d0d0}.pldoc-pattern-colors .grayscale.x-light{background:#e7e6e6}.pldoc-pattern-colors .grayscale.xx-light{background:#efefef}.pldoc-pattern-colors .grayscale.white{background:#fcfcfc}.pldoc-pattern-colors .grayscale.white-t{background:#fff}.pldoc-pattern-colors .grayscale.dark{background:#6b6969}.pldoc-pattern-colors .grayscale.x-dark{background:#4d4b4b}.pldoc-pattern-colors .grayscale.black{background:#111010}.pldoc-pattern-colors .grayscale.black-t{background:#000}.pldoc-pattern-colors .grayscale.trans{background:rgba(167,164,164,.5)}.pldoc-pattern-colors .grayscale.x-trans{background:rgba(167,164,164,.25)}.pldoc-pattern-colors .grayscale.xx-trans{background:rgba(167,164,164,.05)}.pldoc-pattern-colors .grayscale-cool,.pldoc-pattern-colors .grayscale-cool.base{background:#9eb1b9}.pldoc-pattern-colors .grayscale-cool.light{background:#cdd7db}.pldoc-pattern-colors .grayscale-cool.x-light{background:#e5e9eb}.pldoc-pattern-colors .grayscale-cool.xx-light{background:#eef1f2}.pldoc-pattern-colors .grayscale-cool.dark{background:#586165}.pldoc-pattern-colors .grayscale-cool.x-dark{background:#34383a}.pldoc-pattern-colors .grayscale-cool.trans{background:rgba(158,177,185,.5)}.pldoc-pattern-colors .grayscale-cool.x-trans{background:rgba(158,177,185,.25)}.pldoc-pattern-colors .grayscale-cool.xx-trans{background:rgba(158,177,185,.05)}.pldoc-pattern-colors .success,.pldoc-pattern-colors .success.base{background:#25b85a}.pldoc-pattern-colors .success.light{background:#6cce8f}.pldoc-pattern-colors .success.dark{background:#1e8142}.pldoc-pattern-colors .warning,.pldoc-pattern-colors .warning.base{background:#fdbc56}.pldoc-pattern-colors .warning.light{background:#fdd18d}.pldoc-pattern-colors .warning.dark{background:#af833f}.pldoc-pattern-colors .error,.pldoc-pattern-colors .error.base{background:#b20610}.pldoc-pattern-colors .error.light{background:#ca575e}.pldoc-pattern-colors .error.dark{background:#7d0910}.pldoc-pattern-colors .example-color{-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:100%;float:right;margin-right:0;margin-left:0;position:relative;border:0;border-radius:0;padding:1.25rem;box-shadow:none;color:#fcfcfc}.pldoc-pattern-colors .example-color.fail-a11y-color{border-left:.3125rem solid #fdbc56}.pldoc-pattern-colors .example-color:active,.pldoc-pattern-colors .example-color:focus,.pldoc-pattern-colors .example-color:hover{-webkit-transform:scale(1.02);-ms-transform:scale(1.02);transform:scale(1.02);z-index:10}.pldoc-pattern-colors .example-color.dol .color-class,.pldoc-pattern-colors .example-color.dol .color-meta,.pldoc-pattern-colors .example-color.dol .color-reference{color:#111010}.pldoc-pattern-colors .example-color.lod .color-class,.pldoc-pattern-colors .example-color.lod .color-meta,.pldoc-pattern-colors .example-color.lod .color-reference{color:#fcfcfc}.pldoc-pattern-colors .example-color .color-info{width:100%;float:right;margin-right:0;margin-left:0;margin-bottom:1.25rem}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-info{width:48.93617%;float:right;margin-left:2.12766%;margin-bottom:0}}.pldoc-pattern-colors .example-color .color-class{display:block;width:100%;margin-bottom:.625rem;font-size:.875rem;font-weight:600;text-transform:lowercase}.pldoc-pattern-colors .example-color.base{padding-top:2.5rem;padding-bottom:2.5rem}.pldoc-pattern-colors .example-color.base .color-class{font-size:1rem;font-weight:700}.pldoc-pattern-colors .example-color .color-reference{display:block;font-size:.75rem}.pldoc-pattern-colors .example-color .color-meta{width:100%;float:right;margin-right:0;margin-left:0;font-size:.75rem;color:#fcfcfc}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-meta{width:48.93617%;float:left;margin-left:0;text-align:left}}.pldoc-pattern-colors .example-color .color-meta .color-hex,.pldoc-pattern-colors .example-color .color-meta .color-rgb{vertical-align:middle;text-align:center}.pldoc-pattern-colors .example-color .color-meta .color-rgb{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;margin-left:.625rem}.pldoc-pattern-colors .example-color .color-meta .color-hex{text-transform:uppercase}.pldoc-pattern-buttons .btn{display:inline-block;vertical-align:middle;margin-right:.3125rem;margin-bottom:.625rem}.pldoc-pattern-buttons .btn:last-child{margin-right:0}.pldoc-pattern-icons .example-icon{text-align:center;display:inline-block;width:10rem;margin:0 .9375rem 1.875rem 0}.pldoc-pattern-icons .example-icon .icon-display{width:100%;margin:0 auto .625rem}.pldoc-pattern-icons .example-icon .icon-display .icon{font-size:3rem;color:#0079bc}.pldoc-pattern-icons .example-icon .icon-classname,.pldoc-pattern-icons .example-icon .use-description{font-size:.875rem;color:#6b6969}.pldoc-pattern-depth .depth{padding:1.25rem}.pldoc-pattern-depth .depth--2 .hd,.pldoc-pattern-depth .depth--3 .hd{color:#fcfcfc}.pldoc-pattern-depth .depth--2 .copy,.pldoc-pattern-depth .depth--3 .copy{color:#e7e6e6}.pldoc-pattern-depth .card,.pldoc-pattern-depth .slat{margin-bottom:.625rem}.pldoc-pattern-depth .card:last-child,.pldoc-pattern-depth .slat:last-child,.pldoc-pattern-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33)}@media (min-width:768px){.pldoc-pattern-icons .example-icon{width:23.40426%;float:right}.pldoc-pattern-icons .example-icon:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-icons .example-icon:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(239,53,138,.33)}}@media (min-width:1024px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}@media (min-width:1280px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{display:block;color:#000}.pldoc-pattern-grid .col,.pldoc-pattern-grid .gallery-item{text-align:center;padding:1.25rem .625rem}.pldoc-pattern-grid .row{margin-bottom:1.875rem}.pldoc-pattern-grid .row:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid .example-label{display:block}.pldoc-pattern-grid .example-grid .example-label-container{clear:both;width:100%;float:right;margin-right:0;margin-left:0;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-basic .col{width:6.38298%;float:right;margin-left:2.12766%}.pldoc-pattern-grid .example-grid-basic .col:nth-child(12n+12){float:left;margin-left:0}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-A{width:91.48936%;float:right;margin-left:2.12766%;margin-right:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-B{width:82.97872%;float:right;margin-left:2.12766%;margin-right:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-C{width:74.46809%;float:right;margin-left:2.12766%;margin-right:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-D{width:65.95745%;float:right;margin-left:2.12766%;margin-right:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-E{width:57.44681%;float:right;margin-left:2.12766%;margin-right:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-F{width:48.93617%;float:right;margin-left:2.12766%;margin-right:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-G{width:40.42553%;float:right;margin-left:2.12766%;margin-right:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-H{width:31.91489%;float:right;margin-left:2.12766%;margin-right:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-I{width:23.40426%;float:right;margin-left:2.12766%;margin-right:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-J{width:14.89362%;float:right;margin-left:2.12766%;margin-right:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-K{width:6.38298%;float:right;margin-left:2.12766%;margin-right:93.61702%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-A{width:91.48936%;float:right;margin-left:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-B{width:82.97872%;float:right;margin-left:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-C{width:74.46809%;float:right;margin-left:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-D{width:65.95745%;float:right;margin-left:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-E{width:57.44681%;float:right;margin-left:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-F{width:48.93617%;float:right;margin-left:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-G{width:40.42553%;float:right;margin-left:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-H{width:31.91489%;float:right;margin-left:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-I{width:23.40426%;float:right;margin-left:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-J{width:14.89362%;float:right;margin-left:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-K{width:6.38298%;float:right;margin-left:93.61702%}.pldoc-pattern-grid .example-grid-shifts section{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-shifts section::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-shifts section:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-grid .example-grid-semantic .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-pattern-grid .example-grid-semantic .content-main{width:65.95745%;float:right;margin-left:2.12766%}.pldoc-pattern-grid .example-grid-semantic .story{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-semantic .story:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .story-main{clear:both}.pldoc-pattern-grid .example-grid-semantic .story-secondary{width:48.3871%;float:right;margin-left:3.22581%}.pldoc-pattern-grid .example-grid-semantic .story-secondary:nth-child(2n+1){float:left;margin-left:0}.pldoc-pattern-grid .example-grid-semantic .content-secondary{width:31.91489%;float:left;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery{margin-bottom:2.5rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo{width:31.91489%;float:right;margin-bottom:2.12766%}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo-source{display:block;width:100%;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo{width:48.93617%;float:right}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-classes .gallery,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item:last-child{margin-bottom:0}.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33);padding:1.25rem .625rem}@media (min-width:768px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(239,53,138,.33)}}.example-layout .example-label{display:block;color:#000}.pldoc-wrapper-content-supplemental .pldoc-header-site{padding:1.875rem}@media (min-width:1024px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-wrapper-content-main{width:calc(100% - $pldoc-content-supplemental-width);margin-left:20.625rem}.pldoc-wrapper-content-supplemental{height:100%;width:20.625rem;display:block;position:fixed;top:0;right:0;overflow-y:scroll}.pldoc-wrapper-content-supplemental .pldoc-header-site{margin:2.5rem 1.875rem;padding:0}}.pldoc-wrapper-content-supplemental .pldoc-nav{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-nav{display:block}}.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:block}}.pldoc-wrapper-pattern{padding:1.25rem;border-bottom:.125rem solid;box-shadow:inset .15625rem 0 0 0 transparent}.pldoc-wrapper-pattern:last-child{border-bottom:none}.pldoc-pattern{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern:after{content:" ";display:block;clear:both}.pldoc-pattern-header::after{clear:both;content:"";display:table}.pldoc-pattern-title{margin-bottom:.625rem}@media (min-width:1280px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-pattern-title{width:48.93617%;float:right;margin-left:2.12766%;margin-bottom:0}.pldoc-pattern-meta{width:48.93617%;float:left;margin-left:0;text-align:left}}.pldoc-pattern-meta .meta{display:block}@media (min-width:768px){.pldoc-wrapper-pattern{padding:3.75rem 2.5rem}.pldoc-pattern-meta .meta{display:inline-block;vertical-align:middle;margin-left:.625rem}}.pldoc-view-example .pldoc-view-header,.pldoc-view-example-grid #example-grid-1 .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-meta .meta-updated{margin-bottom:.625rem}@media (min-width:768px){.pldoc-pattern-meta .meta-updated{margin-bottom:0}}.pldoc-view-example .pldoc-wrapper-view-header{margin-bottom:2.5rem;padding:1.875rem 2.12766%}.pldoc-view-example .pldoc-view-header:after{content:" ";display:block;clear:both}.pldoc-view-example .example{margin-bottom:2.5rem}.pldoc-view-example .example:last-child{margin-bottom:0}.pldoc.view-index .pldoc-wrapper-link-top{padding:0 2.5rem 1.25rem}.pldoc.view-index .pldoc-link-top{display:block;text-align:center}.pldoc-view-example-depth .example-set{margin-bottom:2.5rem}.pldoc-view-example-depth .depth{padding:1.25rem}.pldoc-view-example-depth .depth--2 .hd,.pldoc-view-example-depth .depth--3 .hd{color:#fcfcfc}.pldoc-view-example-depth .depth--2 .copy,.pldoc-view-example-depth .depth--3 .copy{color:#e7e6e6}.pldoc-view-example-depth .card,.pldoc-view-example-depth .slat{margin-bottom:.625rem}.pldoc-view-example-depth .card:last-child,.pldoc-view-example-depth .slat:last-child,.pldoc-view-example-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-view-example-grid .example-grid .row{margin-bottom:1.875rem}.pldoc-view-example-grid .example-grid .row:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-view-example-grid #example-grid-1 .content-main{width:65.95745%;float:right;margin-left:2.12766%}.pldoc-view-example-grid #example-grid-1 .story{margin-bottom:1.25rem}.pldoc-view-example-grid #example-grid-1 .story:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .story-main{clear:both}.pldoc-view-example-grid #example-grid-1 .story-secondary{width:48.3871%;float:right;margin-left:3.22581%}.pldoc-view-example-grid #example-grid-1 .story-secondary:nth-child(2n+1){float:left;margin-left:0}.pldoc-view-example-grid #example-grid-1 .content-secondary{width:31.91489%;float:left;margin-left:0}.pldoc-view-example-layouts .example-layout{margin-bottom:5rem}.pldoc-view-example-layouts .example-layout:last-child{margin-bottom:0} \ No newline at end of file + * MIT License */.icon-fallback-text .icon{display:none}.icon-fallback-glyph .text,.icon-fallback-img .text{clip:rect(0 0 0 0);overflow:hidden;position:absolute;height:1px;width:1px}.no-generatedcontent .icon-fallback-glyph .text{clip:auto;overflow:visible;position:static;height:auto;width:auto}.icon-fallback-img .icon{display:inline-block;height:1em;width:1em}.icon-fallback-img .icon:before{content:""}.edx-icons .icon-fallback.icon-fallback-img .icon{background-image:none}.icon{display:inline-block;color:currentColor}.edx-icons .icon{height:auto;width:auto;font-family:edx-icons,"Open Sans",sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.is-copyable,.pldoc-pattern-markup code{font-family:"Bitstream Vera Sans Mono",Consolas,Courier,monospace}.badge,.pldoc-nav-title{text-transform:uppercase}.edx-icons .icon-linkedin-square:before{content:"\e600"}.edx-icons .icon-caret-down:before{content:"\e601"}.edx-icons .icon-caret-up:before{content:"\e602"}.edx-icons .icon-caret-left:before{content:"\e603"}.edx-icons .icon-caret-right:before{content:"\e604"}.edx-icons .icon-dot-circle-o:before{content:"\e605"}.edx-icons .icon-square-o:before{content:"\e606"}.edx-icons .icon-square:before{content:"\e607"}.edx-icons .icon-circle:before{content:"\e608"}.edx-icons .icon-circle-thin:before,.edx-icons .icon-genderless:before{content:"\e609"}.edx-icons .icon-search:before{content:"\e60a"}.edx-icons .icon-envelope-o:before{content:"\e60b"}.edx-icons .icon-star:before{content:"\e60c"}.edx-icons .icon-user:before{content:"\e60d"}.edx-icons .icon-check:before{content:"\e60e"}.edx-icons .icon-close:before,.edx-icons .icon-remove:before,.edx-icons .icon-times:before{content:"\e60f"}.edx-icons .icon-search-plus:before{content:"\e610"}.edx-icons .icon-search-minus:before{content:"\e611"}.edx-icons .icon-cog:before,.edx-icons .icon-gear:before{content:"\e612"}.edx-icons .icon-trash-o:before{content:"\e613"}.edx-icons .icon-home:before{content:"\e614"}.edx-icons .icon-file-o:before{content:"\e615"}.edx-icons .icon-clock-o:before{content:"\e616"}.edx-icons .icon-refresh:before{content:"\e617"}.edx-icons .icon-list-alt:before{content:"\e618"}.edx-icons .icon-lock:before{content:"\e619"}.edx-icons .icon-flag:before{content:"\e61a"}.edx-icons .icon-volume-off:before{content:"\e61b"}.edx-icons .icon-volume-down:before{content:"\e61c"}.edx-icons .icon-volume-up:before{content:"\e61d"}.edx-icons .icon-book:before{content:"\e61e"}.edx-icons .icon-print:before{content:"\e61f"}.edx-icons .icon-camera:before{content:"\e620"}.edx-icons .icon-video-camera:before{content:"\e621"}.edx-icons .icon-pencil:before{content:"\e622"}.edx-icons .icon-edit:before,.edx-icons .icon-pencil-square-o:before{content:"\e623"}.edx-icons .icon-share-square-o:before{content:"\e624"}.edx-icons .icon-check-square-o:before{content:"\e625"}.edx-icons .icon-fast-backward:before{content:"\e626"}.edx-icons .icon-play:before{content:"\e627"}.edx-icons .icon-pause:before{content:"\e628"}.edx-icons .icon-stop:before{content:"\e629"}.edx-icons .icon-fast-forward:before{content:"\e62a"}.edx-icons .icon-chevron-left:before{content:"\e62b"}.edx-icons .icon-chevron-right:before{content:"\e62c"}.edx-icons .icon-times-circle:before{content:"\e62d"}.edx-icons .icon-question-circle:before{content:"\e62e"}.edx-icons .icon-info-circle:before{content:"\e62f"}.edx-icons .icon-times-circle-o:before{content:"\e630"}.edx-icons .icon-arrow-up:before{content:"\e631"}.edx-icons .icon-arrow-down:before{content:"\e632"}.edx-icons .icon-compress:before{content:"\e633"}.edx-icons .icon-plus:before{content:"\e634"}.edx-icons .icon-minus:before{content:"\e635"}.edx-icons .icon-exclamation-circle:before{content:"\e636"}.edx-icons .icon-eye:before{content:"\e637"}.edx-icons .icon-eye-slash:before{content:"\e638"}.edx-icons .icon-exclamation-triangle:before,.edx-icons .icon-warning:before{content:"\e639"}.edx-icons .icon-calendar:before{content:"\e63a"}.edx-icons .icon-comment:before{content:"\e63b"}.edx-icons .icon-shopping-cart:before{content:"\e63c"}.edx-icons .icon-twitter-square:before{content:"\e63d"}.edx-icons .icon-facebook-square:before{content:"\e63e"}.edx-icons .icon-comments:before{content:"\e63f"}.edx-icons .icon-thumb-tack:before{content:"\e640"}.edx-icons .icon-external-link:before{content:"\e641"}.edx-icons .icon-upload:before{content:"\e642"}.edx-icons .icon-square-o2:before{content:"\e643"}.edx-icons .icon-bullhorn:before{content:"\e644"}.edx-icons .icon-arrow-circle-down:before{content:"\e645"}.edx-icons .icon-filter:before{content:"\e646"}.edx-icons .icon-arrows-alt:before{content:"\e647"}.edx-icons .icon-chain:before,.edx-icons .icon-link:before{content:"\e648"}.edx-icons .icon-copy:before,.edx-icons .icon-files-o:before{content:"\e649"}.edx-icons .icon-bars:before,.edx-icons .icon-navicon:before,.edx-icons .icon-reorder:before{content:"\e64a"}.edx-icons .icon-list-ul:before{content:"\e64b"}.edx-icons .icon-table:before{content:"\e64c"}.edx-icons .icon-money:before{content:"\e64d"}.edx-icons .icon-sort:before,.edx-icons .icon-unsorted:before{content:"\e64e"}.edx-icons .icon-envelope:before{content:"\e64f"}.edx-icons .icon-rotate-left:before,.edx-icons .icon-undo:before{content:"\e650"}.edx-icons .icon-sitemap:before{content:"\e651"}.edx-icons .icon-angle-left:before{content:"\e652"}.edx-icons .icon-angle-right:before{content:"\e653"}.edx-icons .icon-angle-up:before{content:"\e654"}.edx-icons .icon-angle-down:before{content:"\e655"}.edx-icons .icon-circle-o:before{content:"\e656"}.edx-icons .icon-quote-left:before{content:"\e657"}.edx-icons .icon-spinner:before{content:"\e658"}.edx-icons .icon-mail-reply:before,.edx-icons .icon-reply:before{content:"\e659"}.edx-icons .icon-chain-broken:before,.edx-icons .icon-unlink:before{content:"\e65a"}.edx-icons .icon-unlock-alt:before{content:"\e65b"}.edx-icons .icon-ellipsis-h:before{content:"\e65c"}.edx-icons .icon-check-square:before{content:"\e65d"}.edx-icons .icon-file:before{content:"\e65e"}.edx-icons .icon-cc:before{content:"\e65f"}.icon-fallback-img .icon-linkedin-square{background:url(../fonts/edx-icons/fallback-img/linkedin-square.svg) center center no-repeat}.icon-fallback-img .icon-caret-down{background:url(../fonts/edx-icons/fallback-img/caret-down.svg) center center no-repeat}.icon-fallback-img .icon-caret-up{background:url(../fonts/edx-icons/fallback-img/caret-up.svg) center center no-repeat}.icon-fallback-img .icon-caret-left{background:url(../fonts/edx-icons/fallback-img/caret-left.svg) center center no-repeat}.icon-fallback-img .icon-caret-right{background:url(../fonts/edx-icons/fallback-img/caret-right.svg) center center no-repeat}.icon-fallback-img .icon-dot-circle-o{background:url(../fonts/edx-icons/fallback-img/dot-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-square-o{background:url(../fonts/edx-icons/fallback-img/square-o.svg) center center no-repeat}.icon-fallback-img .icon-square{background:url(../fonts/edx-icons/fallback-img/square.svg) center center no-repeat}.icon-fallback-img .icon-circle{background:url(../fonts/edx-icons/fallback-img/circle.svg) center center no-repeat}.icon-fallback-img .icon-circle-thin{background:url(../fonts/edx-icons/fallback-img/circle-thin.svg) center center no-repeat}.icon-fallback-img .icon-genderless{background:url(../fonts/edx-icons/fallback-img/genderless.svg) center center no-repeat}.icon-fallback-img .icon-search{background:url(../fonts/edx-icons/fallback-img/search.svg) center center no-repeat}.icon-fallback-img .icon-envelope-o{background:url(../fonts/edx-icons/fallback-img/envelope-o.svg) center center no-repeat}.icon-fallback-img .icon-star{background:url(../fonts/edx-icons/fallback-img/star.svg) center center no-repeat}.icon-fallback-img .icon-user{background:url(../fonts/edx-icons/fallback-img/user.svg) center center no-repeat}.icon-fallback-img .icon-check{background:url(../fonts/edx-icons/fallback-img/check.svg) center center no-repeat}.icon-fallback-img .icon-close{background:url(../fonts/edx-icons/fallback-img/close.svg) center center no-repeat}.icon-fallback-img .icon-remove{background:url(../fonts/edx-icons/fallback-img/remove.svg) center center no-repeat}.icon-fallback-img .icon-times{background:url(../fonts/edx-icons/fallback-img/times.svg) center center no-repeat}.icon-fallback-img .icon-search-plus{background:url(../fonts/edx-icons/fallback-img/search-plus.svg) center center no-repeat}.icon-fallback-img .icon-search-minus{background:url(../fonts/edx-icons/fallback-img/search-minus.svg) center center no-repeat}.icon-fallback-img .icon-cog{background:url(../fonts/edx-icons/fallback-img/cog.svg) center center no-repeat}.icon-fallback-img .icon-gear{background:url(../fonts/edx-icons/fallback-img/gear.svg) center center no-repeat}.icon-fallback-img .icon-trash-o{background:url(../fonts/edx-icons/fallback-img/trash-o.svg) center center no-repeat}.icon-fallback-img .icon-home{background:url(../fonts/edx-icons/fallback-img/home.svg) center center no-repeat}.icon-fallback-img .icon-file-o{background:url(../fonts/edx-icons/fallback-img/file-o.svg) center center no-repeat}.icon-fallback-img .icon-clock-o{background:url(../fonts/edx-icons/fallback-img/clock-o.svg) center center no-repeat}.icon-fallback-img .icon-refresh{background:url(../fonts/edx-icons/fallback-img/refresh.svg) center center no-repeat}.icon-fallback-img .icon-list-alt{background:url(../fonts/edx-icons/fallback-img/list-alt.svg) center center no-repeat}.icon-fallback-img .icon-lock{background:url(../fonts/edx-icons/fallback-img/lock.svg) center center no-repeat}.icon-fallback-img .icon-flag{background:url(../fonts/edx-icons/fallback-img/flag.svg) center center no-repeat}.icon-fallback-img .icon-volume-off{background:url(../fonts/edx-icons/fallback-img/volume-off.svg) center center no-repeat}.icon-fallback-img .icon-volume-down{background:url(../fonts/edx-icons/fallback-img/volume-down.svg) center center no-repeat}.icon-fallback-img .icon-volume-up{background:url(../fonts/edx-icons/fallback-img/volume-up.svg) center center no-repeat}.icon-fallback-img .icon-book{background:url(../fonts/edx-icons/fallback-img/book.svg) center center no-repeat}.icon-fallback-img .icon-print{background:url(../fonts/edx-icons/fallback-img/print.svg) center center no-repeat}.icon-fallback-img .icon-camera{background:url(../fonts/edx-icons/fallback-img/camera.svg) center center no-repeat}.icon-fallback-img .icon-video-camera{background:url(../fonts/edx-icons/fallback-img/video-camera.svg) center center no-repeat}.icon-fallback-img .icon-pencil{background:url(../fonts/edx-icons/fallback-img/pencil.svg) center center no-repeat}.icon-fallback-img .icon-edit{background:url(../fonts/edx-icons/fallback-img/edit.svg) center center no-repeat}.icon-fallback-img .icon-pencil-square-o{background:url(../fonts/edx-icons/fallback-img/pencil-square-o.svg) center center no-repeat}.icon-fallback-img .icon-share-square-o{background:url(../fonts/edx-icons/fallback-img/share-square-o.svg) center center no-repeat}.icon-fallback-img .icon-check-square-o{background:url(../fonts/edx-icons/fallback-img/check-square-o.svg) center center no-repeat}.icon-fallback-img .icon-fast-backward{background:url(../fonts/edx-icons/fallback-img/fast-backward.svg) center center no-repeat}.icon-fallback-img .icon-play{background:url(../fonts/edx-icons/fallback-img/play.svg) center center no-repeat}.icon-fallback-img .icon-pause{background:url(../fonts/edx-icons/fallback-img/pause.svg) center center no-repeat}.icon-fallback-img .icon-stop{background:url(../fonts/edx-icons/fallback-img/stop.svg) center center no-repeat}.icon-fallback-img .icon-fast-forward{background:url(../fonts/edx-icons/fallback-img/fast-forward.svg) center center no-repeat}.icon-fallback-img .icon-chevron-left{background:url(../fonts/edx-icons/fallback-img/chevron-left.svg) center center no-repeat}.icon-fallback-img .icon-chevron-right{background:url(../fonts/edx-icons/fallback-img/chevron-right.svg) center center no-repeat}.icon-fallback-img .icon-times-circle{background:url(../fonts/edx-icons/fallback-img/times-circle.svg) center center no-repeat}.icon-fallback-img .icon-question-circle{background:url(../fonts/edx-icons/fallback-img/question-circle.svg) center center no-repeat}.icon-fallback-img .icon-info-circle{background:url(../fonts/edx-icons/fallback-img/info-circle.svg) center center no-repeat}.icon-fallback-img .icon-times-circle-o{background:url(../fonts/edx-icons/fallback-img/times-circle-o.svg) center center no-repeat}.icon-fallback-img .icon-arrow-up{background:url(../fonts/edx-icons/fallback-img/arrow-up.svg) center center no-repeat}.icon-fallback-img .icon-arrow-down{background:url(../fonts/edx-icons/fallback-img/arrow-down.svg) center center no-repeat}.icon-fallback-img .icon-compress{background:url(../fonts/edx-icons/fallback-img/compress.svg) center center no-repeat}.icon-fallback-img .icon-plus{background:url(../fonts/edx-icons/fallback-img/plus.svg) center center no-repeat}.icon-fallback-img .icon-minus{background:url(../fonts/edx-icons/fallback-img/minus.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-circle{background:url(../fonts/edx-icons/fallback-img/exclamation-circle.svg) center center no-repeat}.icon-fallback-img .icon-eye{background:url(../fonts/edx-icons/fallback-img/eye.svg) center center no-repeat}.icon-fallback-img .icon-eye-slash{background:url(../fonts/edx-icons/fallback-img/eye-slash.svg) center center no-repeat}.icon-fallback-img .icon-exclamation-triangle{background:url(../fonts/edx-icons/fallback-img/exclamation-triangle.svg) center center no-repeat}.icon-fallback-img .icon-warning{background:url(../fonts/edx-icons/fallback-img/warning.svg) center center no-repeat}.icon-fallback-img .icon-calendar{background:url(../fonts/edx-icons/fallback-img/calendar.svg) center center no-repeat}.icon-fallback-img .icon-comment{background:url(../fonts/edx-icons/fallback-img/comment.svg) center center no-repeat}.icon-fallback-img .icon-shopping-cart{background:url(../fonts/edx-icons/fallback-img/shopping-cart.svg) center center no-repeat}.icon-fallback-img .icon-twitter-square{background:url(../fonts/edx-icons/fallback-img/twitter-square.svg) center center no-repeat}.icon-fallback-img .icon-facebook-square{background:url(../fonts/edx-icons/fallback-img/facebook-square.svg) center center no-repeat}.icon-fallback-img .icon-comments{background:url(../fonts/edx-icons/fallback-img/comments.svg) center center no-repeat}.icon-fallback-img .icon-thumb-tack{background:url(../fonts/edx-icons/fallback-img/thumb-tack.svg) center center no-repeat}.icon-fallback-img .icon-external-link{background:url(../fonts/edx-icons/fallback-img/external-link.svg) center center no-repeat}.icon-fallback-img .icon-upload{background:url(../fonts/edx-icons/fallback-img/upload.svg) center center no-repeat}.icon-fallback-img .icon-square-o2{background:url(../fonts/edx-icons/fallback-img/square-o2.svg) center center no-repeat}.icon-fallback-img .icon-bullhorn{background:url(../fonts/edx-icons/fallback-img/bullhorn.svg) center center no-repeat}.icon-fallback-img .icon-arrow-circle-down{background:url(../fonts/edx-icons/fallback-img/arrow-circle-down.svg) center center no-repeat}.icon-fallback-img .icon-filter{background:url(../fonts/edx-icons/fallback-img/filter.svg) center center no-repeat}.icon-fallback-img .icon-arrows-alt{background:url(../fonts/edx-icons/fallback-img/arrows-alt.svg) center center no-repeat}.icon-fallback-img .icon-chain{background:url(../fonts/edx-icons/fallback-img/chain.svg) center center no-repeat}.icon-fallback-img .icon-link{background:url(../fonts/edx-icons/fallback-img/link.svg) center center no-repeat}.icon-fallback-img .icon-copy{background:url(../fonts/edx-icons/fallback-img/copy.svg) center center no-repeat}.icon-fallback-img .icon-files-o{background:url(../fonts/edx-icons/fallback-img/files-o.svg) center center no-repeat}.icon-fallback-img .icon-bars{background:url(../fonts/edx-icons/fallback-img/bars.svg) center center no-repeat}.icon-fallback-img .icon-navicon{background:url(../fonts/edx-icons/fallback-img/navicon.svg) center center no-repeat}.icon-fallback-img .icon-reorder{background:url(../fonts/edx-icons/fallback-img/reorder.svg) center center no-repeat}.icon-fallback-img .icon-list-ul{background:url(../fonts/edx-icons/fallback-img/list-ul.svg) center center no-repeat}.icon-fallback-img .icon-table{background:url(../fonts/edx-icons/fallback-img/table.svg) center center no-repeat}.icon-fallback-img .icon-money{background:url(../fonts/edx-icons/fallback-img/money.svg) center center no-repeat}.icon-fallback-img .icon-sort{background:url(../fonts/edx-icons/fallback-img/sort.svg) center center no-repeat}.icon-fallback-img .icon-unsorted{background:url(../fonts/edx-icons/fallback-img/unsorted.svg) center center no-repeat}.icon-fallback-img .icon-envelope{background:url(../fonts/edx-icons/fallback-img/envelope.svg) center center no-repeat}.icon-fallback-img .icon-rotate-left{background:url(../fonts/edx-icons/fallback-img/rotate-left.svg) center center no-repeat}.icon-fallback-img .icon-undo{background:url(../fonts/edx-icons/fallback-img/undo.svg) center center no-repeat}.icon-fallback-img .icon-sitemap{background:url(../fonts/edx-icons/fallback-img/sitemap.svg) center center no-repeat}.icon-fallback-img .icon-angle-left{background:url(../fonts/edx-icons/fallback-img/angle-left.svg) center center no-repeat}.icon-fallback-img .icon-angle-right{background:url(../fonts/edx-icons/fallback-img/angle-right.svg) center center no-repeat}.icon-fallback-img .icon-angle-up{background:url(../fonts/edx-icons/fallback-img/angle-up.svg) center center no-repeat}.icon-fallback-img .icon-angle-down{background:url(../fonts/edx-icons/fallback-img/angle-down.svg) center center no-repeat}.icon-fallback-img .icon-circle-o{background:url(../fonts/edx-icons/fallback-img/circle-o.svg) center center no-repeat}.icon-fallback-img .icon-quote-left{background:url(../fonts/edx-icons/fallback-img/quote-left.svg) center center no-repeat}.icon-fallback-img .icon-spinner{background:url(../fonts/edx-icons/fallback-img/spinner.svg) center center no-repeat}.icon-fallback-img .icon-mail-reply{background:url(../fonts/edx-icons/fallback-img/mail-reply.svg) center center no-repeat}.icon-fallback-img .icon-reply{background:url(../fonts/edx-icons/fallback-img/reply.svg) center center no-repeat}.icon-fallback-img .icon-chain-broken{background:url(../fonts/edx-icons/fallback-img/chain-broken.svg) center center no-repeat}.icon-fallback-img .icon-unlink{background:url(../fonts/edx-icons/fallback-img/unlink.svg) center center no-repeat}.icon-fallback-img .icon-unlock-alt{background:url(../fonts/edx-icons/fallback-img/unlock-alt.svg) center center no-repeat}.icon-fallback-img .icon-ellipsis-h{background:url(../fonts/edx-icons/fallback-img/ellipsis-h.svg) center center no-repeat}.icon-fallback-img .icon-check-square{background:url(../fonts/edx-icons/fallback-img/check-square.svg) center center no-repeat}.icon-fallback-img .icon-file{background:url(../fonts/edx-icons/fallback-img/file.svg) center center no-repeat}.icon-fallback-img .icon-cc{background:url(../fonts/edx-icons/fallback-img/cc.svg) center center no-repeat}body,html{height:100%;color:#4d4b4b}.example-set{padding-bottom:2.5rem;border-bottom:.125rem solid #e5e9eb;margin-bottom:2.5rem}.example-set::after{clear:both;content:"";display:table}.example-set .button-overlay-demo{padding:3.75rem 1.875rem;background:url(../images/bg-overlay-example.png) 0 50% no-repeat #0ea6ec;background-size:cover}.is-copyable{display:inline-block}.wrapper-alert{margin-bottom:.625rem}.alert{border-right:.25rem solid #cdd7db;border-radius:.1875rem;padding:1.25rem;background-color:#e7e6e6}.alert-information{border-color:#0079bc}.alert-warning{border-color:#fdbc56}.alert-error{border-color:#b20610}.alert-success{border-color:#25b85a}.alert-ui-toolkit{border-color:#ffde20}.badge{text-align:center;border-radius:.9375rem;padding:.125rem .625rem;font-size:.625rem;font-weight:700}.badge .badge-abbreviation{border-bottom:none}.badge-ui-toolkit{background-color:#ffde20;color:#34383a}.pldoc-header-site .pldoc-header-site-title{display:inline-block;vertical-align:middle}@media (min-width:1024px){.pldoc-header-site,.pldoc-header-site .pldoc-header-site-title{margin:0}}.pldoc-header-site .pldoc-header-site-title .title-name{display:block;margin-bottom:.625rem;color:#fcfcfc;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.0625rem}.pldoc-header-site .pldoc-header-site-title .title-name:active,.pldoc-header-site .pldoc-header-site-title .title-name:focus,.pldoc-header-site .pldoc-header-site-title .title-name:hover{color:#0ea6ec}.pldoc-header-site .pldoc-header-site-title .pldoc-link{border:none}.pldoc-header-site .pldoc-title-description{display:block;color:#a7a4a4;font-weight:400}.pldoc-nav{margin-bottom:3.75rem}.pldoc-nav:last-child{margin-bottom:0}.pldoc-nav .nav-list{margin:0}.pldoc-nav .pldoc-link{-webkit-transition:background .25s ease-in-out;transition:background .25s ease-in-out;display:block;border-bottom:1px solid #111010;padding:.625rem 1.875rem;color:#e7e6e6;text-decoration:none;font-size:.875rem;font-weight:600}.pldoc-nav .pldoc-link:active,.pldoc-nav .pldoc-link:focus,.pldoc-nav .pldoc-link:hover{color:#53a4d1;background:#111010}.pldoc-nav .nav-list-item:last-child .pldoc-link{border-bottom:0}.pldoc-nav .nav-list-item.is-current .pldoc-link:before{display:inline-block}.pldoc-nav .list-patterns .pattern::after{clear:both;content:"";display:table}.pldoc-nav .list-patterns .pattern .badge,.pldoc-nav .list-patterns .pattern .pattern-title{display:inline-block}.pldoc-nav .list-patterns .pattern .pattern-title{width:80%}.pldoc-nav .list-patterns .pattern .badge{float:left}.pldoc-nav-internal .pldoc-link{position:relative}.pldoc-nav-internal .pldoc-link:before{-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;height:.3125rem;width:.3125rem;position:absolute;top:1.125rem;right:.9375rem;content:'';border-radius:100%;opacity:0;background:#0ea6ec}.pldoc-nav-internal .pldoc-link.is-current{color:#53a4d1;background:#111010}.pldoc-nav-internal .pldoc-link.is-current:before{opacity:1}.pldoc-nav-external .pldoc-link::after{clear:both;content:"";display:table}.pldoc-nav-external .pldoc-link .icon{margin-right:.15625rem;float:left;opacity:.25}.pldoc-nav-external .pldoc-link:active .icon,.pldoc-nav-external .pldoc-link:focus .icon,.pldoc-nav-external .pldoc-link:hover .icon{opacity:1}.pldoc-nav-title{margin:0 1.875rem .625rem;color:#a7a4a4;font-size:.875rem;font-weight:600;letter-spacing:.0625rem}.pldoc-tab:focus{outline:0}.pldoc-tab-content{-webkit-transition:box-shadow .5s ease-in-out;transition:box-shadow .5s ease-in-out;border:.0625rem solid #e7e6e6;padding:2.5rem 1.25rem}@media (min-width:768px){.pldoc-tab-content{padding:2.5rem 1.875rem}}.pldoc-settings{background:#efefef;margin-bottom:5rem;padding:1.25rem .625rem}.pldoc-setting{display:inline-block;vertical-align:middle;margin-left:.625rem}.pldoc-setting:last-child{margin-left:0}.pldoc-wrapper-content-supplemental{color:#e7e6e6}.pldoc-footer-site{margin:2.5rem 1.25rem}.pldoc-footer-site-copyright .pldoc-copy{font-size:.875rem;color:#a7a4a4}.pldoc-pattern .example-set-hd{margin-bottom:1.25rem}.pldoc-pattern-header{margin-bottom:2.5rem;border-bottom:1px solid #6b6969;padding-bottom:1.25rem}.pldoc-tab-labels{border-bottom:.25rem solid #e7e6e6}.pldoc-tab-labels::after{clear:both;content:"";display:table}.pldoc-tab-label{float:left;position:relative;bottom:-.3125rem}.pldoc-tab-label .pldoc-link{display:block;margin:0;border-width:0 0 .25rem;border-color:transparent;border-style:solid;background:0 0;padding:.625rem .9375rem;font-weight:600;color:#6b6969}.pldoc-tab-label .pldoc-link:focus,.pldoc-tab-label .pldoc-link:hover{border-bottom-color:#0ea6ec;color:#0ea6ec}.pldoc-tab-label .pldoc-link.is-active{border-bottom-color:#4d4b4b;color:#4d4b4b}.pldoc-pattern-colors .brand-primary.base{background:#0079bc}.pldoc-pattern-colors .brand-primary.light{background:#53a4d1}.pldoc-pattern-colors .brand-primary.x-light{background:#a6cfe6}.pldoc-pattern-colors .brand-primary.dark{background:#065683}.pldoc-pattern-colors .brand-primary.x-dark{background:#0b344a}.pldoc-pattern-colors .brand-primary.accent{background:#0ea6ec}.pldoc-pattern-colors .brand-primary.x-accent{background:#00abfa}.pldoc-pattern-colors .brand-secondary,.pldoc-pattern-colors .brand-secondary.base{background:#cb598d}.pldoc-pattern-colors .brand-secondary.light{background:#db8fb2}.pldoc-pattern-colors .brand-secondary.x-light{background:#ebc5d6}.pldoc-pattern-colors .brand-secondary.dark{background:#8e4164}.pldoc-pattern-colors .brand-secondary.x-dark{background:#50293b}.pldoc-pattern-colors .brand-secondary.accent{background:#f26caa}.pldoc-pattern-colors .grayscale,.pldoc-pattern-colors .grayscale.base{background:#a7a4a4}.pldoc-pattern-colors .grayscale.light{background:#d2d0d0}.pldoc-pattern-colors .grayscale.x-light{background:#e7e6e6}.pldoc-pattern-colors .grayscale.xx-light{background:#efefef}.pldoc-pattern-colors .grayscale.white{background:#fcfcfc}.pldoc-pattern-colors .grayscale.white-t{background:#fff}.pldoc-pattern-colors .grayscale.dark{background:#6b6969}.pldoc-pattern-colors .grayscale.x-dark{background:#4d4b4b}.pldoc-pattern-colors .grayscale.black{background:#111010}.pldoc-pattern-colors .grayscale.black-t{background:#000}.pldoc-pattern-colors .grayscale.trans{background:rgba(167,164,164,.5)}.pldoc-pattern-colors .grayscale.x-trans{background:rgba(167,164,164,.25)}.pldoc-pattern-colors .grayscale.xx-trans{background:rgba(167,164,164,.05)}.pldoc-pattern-colors .grayscale-cool,.pldoc-pattern-colors .grayscale-cool.base{background:#9eb1b9}.pldoc-pattern-colors .grayscale-cool.light{background:#cdd7db}.pldoc-pattern-colors .grayscale-cool.x-light{background:#e5e9eb}.pldoc-pattern-colors .grayscale-cool.xx-light{background:#eef1f2}.pldoc-pattern-colors .grayscale-cool.dark{background:#586165}.pldoc-pattern-colors .grayscale-cool.x-dark{background:#34383a}.pldoc-pattern-colors .grayscale-cool.trans{background:rgba(158,177,185,.5)}.pldoc-pattern-colors .grayscale-cool.x-trans{background:rgba(158,177,185,.25)}.pldoc-pattern-colors .grayscale-cool.xx-trans{background:rgba(158,177,185,.05)}.pldoc-pattern-colors .success,.pldoc-pattern-colors .success.base{background:#25b85a}.pldoc-pattern-colors .success.light{background:#6cce8f}.pldoc-pattern-colors .success.dark{background:#1e8142}.pldoc-pattern-colors .warning,.pldoc-pattern-colors .warning.base{background:#fdbc56}.pldoc-pattern-colors .warning.light{background:#fdd18d}.pldoc-pattern-colors .warning.dark{background:#af833f}.pldoc-pattern-colors .error,.pldoc-pattern-colors .error.base{background:#b20610}.pldoc-pattern-colors .error.light{background:#ca575e}.pldoc-pattern-colors .error.dark{background:#7d0910}.pldoc-pattern-colors .example-color{-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:100%;float:right;margin-right:0;margin-left:0;position:relative;border:0;border-radius:0;padding:1.25rem;box-shadow:none;color:#fcfcfc}.pldoc-pattern-colors .example-color.fail-a11y-color{border-left:.3125rem solid #fdbc56}.pldoc-pattern-colors .example-color:active,.pldoc-pattern-colors .example-color:focus,.pldoc-pattern-colors .example-color:hover{-webkit-transform:scale(1.02);transform:scale(1.02);z-index:10}.pldoc-pattern-colors .example-color.dol .color-class,.pldoc-pattern-colors .example-color.dol .color-meta,.pldoc-pattern-colors .example-color.dol .color-reference{color:#111010}.pldoc-pattern-colors .example-color.lod .color-class,.pldoc-pattern-colors .example-color.lod .color-meta,.pldoc-pattern-colors .example-color.lod .color-reference{color:#fcfcfc}.pldoc-pattern-colors .example-color .color-info{width:100%;float:right;margin-right:0;margin-left:0;margin-bottom:1.25rem}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-info{width:48.93617%;float:right;margin-left:2.12766%;margin-bottom:0}}.pldoc-pattern-colors .example-color .color-class{display:block;width:100%;margin-bottom:.625rem;font-size:.875rem;font-weight:600;text-transform:lowercase}.pldoc-pattern-colors .example-color.base{padding-top:2.5rem;padding-bottom:2.5rem}.pldoc-pattern-colors .example-color.base .color-class{font-size:1rem;font-weight:700}.pldoc-pattern-colors .example-color .color-reference{display:block;font-size:.75rem}.pldoc-pattern-colors .example-color .color-meta{width:100%;float:right;margin-right:0;margin-left:0;font-size:.75rem;color:#fcfcfc}@media (min-width:768px){.pldoc-pattern-colors .example-color .color-meta{width:48.93617%;float:left;margin-left:0;text-align:left}}.pldoc-pattern-colors .example-color .color-meta .color-hex,.pldoc-pattern-colors .example-color .color-meta .color-rgb{vertical-align:middle;text-align:center}.pldoc-pattern-colors .example-color .color-meta .color-rgb{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;margin-left:.625rem}.pldoc-pattern-colors .example-color .color-meta .color-hex{text-transform:uppercase}.pldoc-pattern-buttons .btn{display:inline-block;vertical-align:middle;margin-right:.3125rem;margin-bottom:.625rem}.pldoc-pattern-buttons .btn:last-child{margin-right:0}.pldoc-pattern-icons .example-icon{text-align:center;display:inline-block;width:10rem;margin:0 .9375rem 1.875rem 0}.pldoc-pattern-icons .example-icon .icon-display{width:100%;margin:0 auto .625rem}.pldoc-pattern-icons .example-icon .icon-display .icon{font-size:3rem;color:#0079bc}.pldoc-pattern-icons .example-icon .icon-classname,.pldoc-pattern-icons .example-icon .use-description{font-size:.875rem;color:#6b6969}.pldoc-pattern-depth .depth{padding:1.25rem}.pldoc-pattern-depth .depth--2 .hd,.pldoc-pattern-depth .depth--3 .hd{color:#fcfcfc}.pldoc-pattern-depth .depth--2 .copy,.pldoc-pattern-depth .depth--3 .copy{color:#e7e6e6}.pldoc-pattern-depth .card,.pldoc-pattern-depth .slat{margin-bottom:.625rem}.pldoc-pattern-depth .card:last-child,.pldoc-pattern-depth .slat:last-child,.pldoc-pattern-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33)}@media (min-width:768px){.pldoc-pattern-icons .example-icon{width:23.40426%;float:right}.pldoc-pattern-icons .example-icon:nth-child(4n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-icons .example-icon:nth-child(4n+2){margin-right:25.53191%;margin-left:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+3){margin-right:51.06383%;margin-left:-100%;clear:none}.pldoc-pattern-icons .example-icon:nth-child(4n+4){margin-right:76.59574%;margin-left:-100%;clear:none}.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(239,53,138,.33)}}@media (min-width:1024px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}@media (min-width:1280px){.pldoc-pattern-grid .col,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo,.pldoc-pattern-grid .example-grid-semantic .content-main,.pldoc-pattern-grid .example-grid-semantic .content-secondary,.pldoc-pattern-grid .example-grid-semantic .story,.pldoc-pattern-grid .example-grid-semantic .story-secondary,.pldoc-pattern-grid .gallery-item,.pldoc-view-example-grid #example-grid-1 .content-main,.pldoc-view-example-grid #example-grid-1 .content-secondary,.pldoc-view-example-grid #example-grid-1 .story,.pldoc-view-example-grid #example-grid-1 .story-secondary,.pldoc-view-example-grid .example-grid .col{background:rgba(255,37,136,.33)}}.pldoc-pattern-grid .col .example-label,.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo .example-label,.pldoc-pattern-grid .example-grid-semantic .content-main .example-label,.pldoc-pattern-grid .example-grid-semantic .content-secondary .example-label,.pldoc-pattern-grid .example-grid-semantic .story .example-label,.pldoc-pattern-grid .example-grid-semantic .story-secondary .example-label,.pldoc-pattern-grid .gallery-item .example-label,.pldoc-view-example-grid #example-grid-1 .content-main .example-label,.pldoc-view-example-grid #example-grid-1 .content-secondary .example-label,.pldoc-view-example-grid #example-grid-1 .story .example-label,.pldoc-view-example-grid #example-grid-1 .story-secondary .example-label,.pldoc-view-example-grid .example-grid .col .example-label{display:block;color:#000}.pldoc-pattern-grid .col,.pldoc-pattern-grid .gallery-item{text-align:center;padding:1.25rem .625rem}.pldoc-pattern-grid .row{margin-bottom:1.875rem}.pldoc-pattern-grid .row:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid .example-label{display:block}.pldoc-pattern-grid .example-grid .example-label-container{clear:both;width:100%;float:right;margin-right:0;margin-left:0;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-basic .col{width:6.38298%;float:right;margin-left:2.12766%}.pldoc-pattern-grid .example-grid-basic .col:nth-child(12n+12){float:left;margin-left:0}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-A{width:91.48936%;float:right;margin-left:2.12766%;margin-right:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-B{width:82.97872%;float:right;margin-left:2.12766%;margin-right:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-C{width:74.46809%;float:right;margin-left:2.12766%;margin-right:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-D{width:65.95745%;float:right;margin-left:2.12766%;margin-right:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-E{width:57.44681%;float:right;margin-left:2.12766%;margin-right:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-F{width:48.93617%;float:right;margin-left:2.12766%;margin-right:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-G{width:40.42553%;float:right;margin-left:2.12766%;margin-right:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-H{width:31.91489%;float:right;margin-left:2.12766%;margin-right:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-I{width:23.40426%;float:right;margin-left:2.12766%;margin-right:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-J{width:14.89362%;float:right;margin-left:2.12766%;margin-right:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-pre .col-K{width:6.38298%;float:right;margin-left:2.12766%;margin-right:93.61702%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-A{width:91.48936%;float:right;margin-left:8.51064%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-B{width:82.97872%;float:right;margin-left:17.02128%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-C{width:74.46809%;float:right;margin-left:25.53191%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-D{width:65.95745%;float:right;margin-left:34.04255%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-E{width:57.44681%;float:right;margin-left:42.55319%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-F{width:48.93617%;float:right;margin-left:51.06383%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-G{width:40.42553%;float:right;margin-left:59.57447%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-H{width:31.91489%;float:right;margin-left:68.08511%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-I{width:23.40426%;float:right;margin-left:76.59574%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-J{width:14.89362%;float:right;margin-left:85.10638%}.pldoc-pattern-grid .example-grid-shifts .shifts-post .col-K{width:6.38298%;float:right;margin-left:93.61702%}.pldoc-pattern-grid .example-grid-shifts section{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-shifts section::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-shifts section:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-grid .example-grid-semantic .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-pattern-grid .example-grid-semantic .content-main{width:65.95745%;float:right;margin-left:2.12766%}.pldoc-pattern-grid .example-grid-semantic .story{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-semantic .story:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-semantic .story-main{clear:both}.pldoc-pattern-grid .example-grid-semantic .story-secondary{width:48.3871%;float:right;margin-left:3.22581%}.pldoc-pattern-grid .example-grid-semantic .story-secondary:nth-child(2n+1){float:left;margin-left:0}.pldoc-pattern-grid .example-grid-semantic .content-secondary{width:31.91489%;float:left;margin-left:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery{margin-bottom:2.5rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery::after{clear:both;content:"";display:table}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo{width:31.91489%;float:right;margin-bottom:2.12766%}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+2){margin-right:34.04255%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo:nth-child(3n+3){margin-right:68.08511%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery .photo-source{display:block;width:100%;margin-bottom:.625rem}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo{width:48.93617%;float:right}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+1){margin-left:-100%;clear:both;margin-right:0}.pldoc-pattern-grid .example-grid-gallery-semantic .photo-gallery-large .photo:nth-child(2n+2){margin-right:51.06383%;margin-left:-100%;clear:none}.pldoc-pattern-grid .example-grid-gallery-classes .gallery,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery{margin-bottom:1.875rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery:last-child{margin-bottom:0}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item{margin-bottom:1.25rem}.pldoc-pattern-grid .example-grid-gallery-classes .gallery-item:last-child,.pldoc-pattern-grid .example-grid-gallery-responsive .gallery-item:last-child{margin-bottom:0}.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(203,89,141,.33);border:1px solid rgba(255,37,136,.33);padding:1.25rem .625rem}@media (min-width:768px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(239,53,138,.33)}}.example-layout .example-label{display:block;color:#000}.pldoc-wrapper-content-supplemental .pldoc-header-site{padding:1.875rem}@media (min-width:1024px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-wrapper-content-main{width:calc(100% - $pldoc-content-supplemental-width);margin-left:20.625rem}.pldoc-wrapper-content-supplemental{height:100%;width:20.625rem;display:block;position:fixed;top:0;right:0;overflow-y:scroll}.pldoc-wrapper-content-supplemental .pldoc-header-site{margin:2.5rem 1.875rem;padding:0}}.pldoc-wrapper-content-supplemental .pldoc-nav{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-nav{display:block}}.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:none}@media (min-width:1024px){.pldoc-wrapper-content-supplemental .pldoc-footer-site{display:block}}.pldoc-wrapper-pattern{padding:1.25rem;border-bottom:.125rem solid;box-shadow:inset .15625rem 0 0 0 transparent}.pldoc-wrapper-pattern:last-child{border-bottom:none}.pldoc-pattern{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern:after{content:" ";display:block;clear:both}.pldoc-pattern-header::after{clear:both;content:"";display:table}.pldoc-pattern-title{margin-bottom:.625rem}@media (min-width:1280px){.example-layout .layout-col,.example-layout .layout-view-col{background:rgba(255,37,136,.33)}.pldoc-pattern-title{width:48.93617%;float:right;margin-left:2.12766%;margin-bottom:0}.pldoc-pattern-meta{width:48.93617%;float:left;margin-left:0;text-align:left}}.pldoc-pattern-meta .meta{display:block}@media (min-width:768px){.pldoc-wrapper-pattern{padding:3.75rem 2.5rem}.pldoc-pattern-meta .meta{display:inline-block;vertical-align:middle;margin-left:.625rem}}.pldoc-view-example .pldoc-view-header,.pldoc-view-example-grid #example-grid-1 .wrapper-content{max-width:73.125rem;margin-left:auto;margin-right:auto}.pldoc-pattern-meta .meta-updated{margin-bottom:.625rem}@media (min-width:768px){.pldoc-pattern-meta .meta-updated{margin-bottom:0}}.pldoc-view-example .pldoc-wrapper-view-header{margin-bottom:2.5rem;padding:1.875rem 2.12766%}.pldoc-view-example .pldoc-view-header:after{content:" ";display:block;clear:both}.pldoc-view-example .example{margin-bottom:2.5rem}.pldoc-view-example .example:last-child{margin-bottom:0}.pldoc.view-index .pldoc-wrapper-link-top{padding:0 2.5rem 1.25rem}.pldoc.view-index .pldoc-link-top{display:block;text-align:center}.pldoc-view-example-depth .example-set{margin-bottom:2.5rem}.pldoc-view-example-depth .depth{padding:1.25rem}.pldoc-view-example-depth .depth--2 .hd,.pldoc-view-example-depth .depth--3 .hd{color:#fcfcfc}.pldoc-view-example-depth .depth--2 .copy,.pldoc-view-example-depth .depth--3 .copy{color:#e7e6e6}.pldoc-view-example-depth .card,.pldoc-view-example-depth .slat{margin-bottom:.625rem}.pldoc-view-example-depth .card:last-child,.pldoc-view-example-depth .slat:last-child,.pldoc-view-example-depth .zebra-stripe .slat{margin-bottom:0}.pldoc-view-example-grid .example-grid .row{margin-bottom:1.875rem}.pldoc-view-example-grid .example-grid .row:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .wrapper-content:after{content:" ";display:block;clear:both}.pldoc-view-example-grid #example-grid-1 .content-main{width:65.95745%;float:right;margin-left:2.12766%}.pldoc-view-example-grid #example-grid-1 .story{margin-bottom:1.25rem}.pldoc-view-example-grid #example-grid-1 .story:last-child{margin-bottom:0}.pldoc-view-example-grid #example-grid-1 .story-main{clear:both}.pldoc-view-example-grid #example-grid-1 .story-secondary{width:48.3871%;float:right;margin-left:3.22581%}.pldoc-view-example-grid #example-grid-1 .story-secondary:nth-child(2n+1){float:left;margin-left:0}.pldoc-view-example-grid #example-grid-1 .content-secondary{width:31.91489%;float:left;margin-left:0}.pldoc-view-example-layouts .example-layout{margin-bottom:5rem}.pldoc-view-example-layouts .example-layout:last-child{margin-bottom:0} \ No newline at end of file diff --git a/public/js/require.js b/public/js/require.js index 8b734e45..18f50d86 100644 --- a/public/js/require.js +++ b/public/js/require.js @@ -1 +1 @@ -var requirejs,require,define;!function(global){function isFunction(e){return"[object Function]"===ostring.call(e)}function isArray(e){return"[object Array]"===ostring.call(e)}function each(e,t){if(e){var i;for(i=0;i-1&&(!e[i]||!t(e[i],i,e));i-=1);}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var i;for(i in e)if(hasProp(e,i)&&t(e[i],i))break}function mixin(e,t,i,r){return t&&eachProp(t,function(t,n){(i||!hasProp(e,n))&&(!r||"object"!=typeof t||!t||isArray(t)||isFunction(t)||t instanceof RegExp?e[n]=t:(e[n]||(e[n]={}),mixin(e[n],t,i,r)))}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,i,r){var n=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return n.requireType=e,n.requireModules=r,i&&(n.originalError=i),n}function newContext(e){function t(e){var t,i;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}function i(e,i,r){var n,a,o,s,u,c,d,p,f,l,h,m,g=i&&i.split("/"),v=y.map,x=v&&v["*"];if(e&&(e=e.split("/"),d=e.length-1,y.nodeIdCompat&&jsSuffixRegExp.test(e[d])&&(e[d]=e[d].replace(jsSuffixRegExp,"")),"."===e[0].charAt(0)&&g&&(m=g.slice(0,g.length-1),e=m.concat(e)),t(e),e=e.join("/")),r&&v&&(g||x)){o=e.split("/");e:for(s=o.length;s>0;s-=1){if(c=o.slice(0,s).join("/"),g)for(u=g.length;u>0;u-=1)if(a=getOwn(v,g.slice(0,u).join("/")),a&&(a=getOwn(a,c))){p=a,f=s;break e}!l&&x&&getOwn(x,c)&&(l=getOwn(x,c),h=s)}!p&&l&&(p=l,f=h),p&&(o.splice(0,f,p),e=o.join("/"))}return n=getOwn(y.pkgs,e),n?n:e}function r(e){isBrowser&&each(scripts(),function(t){return t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===q.contextName?(t.parentNode.removeChild(t),!0):void 0})}function n(e){var t=getOwn(y.paths,e);return t&&isArray(t)&&t.length>1?(t.shift(),q.require.undef(e),q.makeRequire(null,{skipMap:!0})([e]),!0):void 0}function a(e){var t,i=e?e.indexOf("!"):-1;return i>-1&&(t=e.substring(0,i),e=e.substring(i+1,e.length)),[t,e]}function o(e,t,r,n){var o,s,u,c,d=null,p=t?t.name:null,f=e,l=!0,h="";return e||(l=!1,e="_@r"+(A+=1)),c=a(e),d=c[0],e=c[1],d&&(d=i(d,p,n),s=getOwn(j,d)),e&&(d?h=s&&s.normalize?s.normalize(e,function(e){return i(e,p,n)}):-1===e.indexOf("!")?i(e,p,n):e:(h=i(e,p,n),c=a(h),d=c[0],h=c[1],r=!0,o=q.nameToUrl(h))),u=!d||s||r?"":"_unnormalized"+(T+=1),{prefix:d,name:h,parentMap:t,unnormalized:!!u,url:o,originalName:f,isDefine:l,id:(d?d+"!"+h:h)+u}}function s(e){var t=e.id,i=getOwn(S,t);return i||(i=S[t]=new q.Module(e)),i}function u(e,t,i){var r=e.id,n=getOwn(S,r);!hasProp(j,r)||n&&!n.defineEmitComplete?(n=s(e),n.error&&"error"===t?i(n.error):n.on(t,i)):"defined"===t&&i(j[r])}function c(e,t){var i=e.requireModules,r=!1;t?t(e):(each(i,function(t){var i=getOwn(S,t);i&&(i.error=e,i.events.error&&(r=!0,i.emit("error",e)))}),r||req.onError(e))}function d(){globalDefQueue.length&&(each(globalDefQueue,function(e){var t=e[0];"string"==typeof t&&(q.defQueueMap[t]=!0),O.push(e)}),globalDefQueue=[])}function p(e){delete S[e],delete k[e]}function f(e,t,i){var r=e.map.id;e.error?e.emit("error",e.error):(t[r]=!0,each(e.depMaps,function(r,n){var a=r.id,o=getOwn(S,a);!o||e.depMatched[n]||i[a]||(getOwn(t,a)?(e.defineDep(n,j[a]),e.check()):f(o,t,i))}),i[r]=!0)}function l(){var e,t,i=1e3*y.waitSeconds,a=i&&q.startTime+i<(new Date).getTime(),o=[],s=[],u=!1,d=!0;if(!x){if(x=!0,eachProp(k,function(e){var i=e.map,c=i.id;if(e.enabled&&(i.isDefine||s.push(e),!e.error))if(!e.inited&&a)n(c)?(t=!0,u=!0):(o.push(c),r(c));else if(!e.inited&&e.fetched&&i.isDefine&&(u=!0,!i.prefix))return d=!1}),a&&o.length)return e=makeError("timeout","Load timeout for modules: "+o,null,o),e.contextName=q.contextName,c(e);d&&each(s,function(e){f(e,{},{})}),a&&!t||!u||!isBrowser&&!isWebWorker||w||(w=setTimeout(function(){w=0,l()},50)),x=!1}}function h(e){hasProp(j,e[0])||s(o(e[0],null,!0)).init(e[1],e[2])}function m(e,t,i,r){e.detachEvent&&!isOpera?r&&e.detachEvent(r,t):e.removeEventListener(i,t,!1)}function g(e){var t=e.currentTarget||e.srcElement;return m(t,q.onScriptLoad,"load","onreadystatechange"),m(t,q.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function v(){var e;for(d();O.length;){if(e=O.shift(),null===e[0])return c(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));h(e)}q.defQueueMap={}}var x,b,q,E,w,y={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},S={},k={},M={},O=[],j={},P={},R={},A=1,T=1;return E={require:function(e){return e.require?e.require:e.require=q.makeRequire(e.map)},exports:function(e){return e.usingExports=!0,e.map.isDefine?e.exports?j[e.map.id]=e.exports:e.exports=j[e.map.id]={}:void 0},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(y.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},b=function(e){this.events=getOwn(M,e.id)||{},this.map=e,this.shim=getOwn(y.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},b.prototype={init:function(e,t,i,r){r=r||{},this.inited||(this.factory=t,i?this.on("error",i):this.events.error&&(i=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=i,this.inited=!0,this.ignore=r.ignore,r.enabled||this.enabled?this.enable():this.check())},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(!this.fetched){this.fetched=!0,q.startTime=(new Date).getTime();var e=this.map;return this.shim?void q.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()})):e.prefix?this.callPlugin():this.load()}},load:function(){var e=this.map.url;P[e]||(P[e]=!0,q.load(this.map.id,e))},check:function(){if(this.enabled&&!this.enabling){var e,t,i=this.map.id,r=this.depExports,n=this.exports,a=this.factory;if(this.inited){if(this.error)this.emit("error",this.error);else if(!this.defining){if(this.defining=!0,this.depCount<1&&!this.defined){if(isFunction(a)){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)try{n=q.execCb(i,a,r,n)}catch(o){e=o}else n=q.execCb(i,a,r,n);if(this.map.isDefine&&void 0===n&&(t=this.module,t?n=t.exports:this.usingExports&&(n=this.exports)),e)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",c(this.error=e)}else n=a;this.exports=n,this.map.isDefine&&!this.ignore&&(j[i]=n,req.onResourceLoad&&req.onResourceLoad(q,this.map,this.depMaps)),p(i),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}}else hasProp(q.defQueueMap,i)||this.fetch()}},callPlugin:function(){var e=this.map,t=e.id,r=o(e.prefix);this.depMaps.push(r),u(r,"defined",bind(this,function(r){var n,a,d,f=getOwn(R,this.map.id),l=this.map.name,h=this.map.parentMap?this.map.parentMap.name:null,m=q.makeRequire(e.parentMap,{enableBuildCallback:!0});return this.map.unnormalized?(r.normalize&&(l=r.normalize(l,function(e){return i(e,h,!0)})||""),a=o(e.prefix+"!"+l,this.map.parentMap),u(a,"defined",bind(this,function(e){this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),d=getOwn(S,a.id),void(d&&(this.depMaps.push(a),this.events.error&&d.on("error",bind(this,function(e){this.emit("error",e)})),d.enable()))):f?(this.map.url=q.nameToUrl(f),void this.load()):(n=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),n.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(S,function(e){0===e.map.id.indexOf(t+"_unnormalized")&&p(e.map.id)}),c(e)}),n.fromText=bind(this,function(i,r){var a=e.name,u=o(a),d=useInteractive;r&&(i=r),d&&(useInteractive=!1),s(u),hasProp(y.config,t)&&(y.config[a]=y.config[t]);try{req.exec(i)}catch(p){return c(makeError("fromtexteval","fromText eval for "+t+" failed: "+p,p,[t]))}d&&(useInteractive=!0),this.depMaps.push(u),q.completeLoad(a),m([a],n)}),void r.load(e.name,m,n,y))})),q.enable(r,this),this.pluginMaps[r.id]=r},enable:function(){k[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var i,r,n;if("string"==typeof e){if(e=o(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,n=getOwn(E,e.id))return void(this.depExports[t]=n(this));this.depCount+=1,u(e,"defined",bind(this,function(e){this.undefed||(this.defineDep(t,e),this.check())})),this.errback?u(e,"error",bind(this,this.errback)):this.events.error&&u(e,"error",bind(this,function(e){this.emit("error",e)}))}i=e.id,r=S[i],hasProp(E,i)||!r||r.enabled||q.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(S,e.id);t&&!t.enabled&&q.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var i=this.events[e];i||(i=this.events[e]=[]),i.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),"error"===e&&delete this.events[e]}},q={config:y,contextName:e,registry:S,defined:j,urlFetched:P,defQueue:O,defQueueMap:{},Module:b,makeModuleMap:o,nextTick:req.nextTick,onError:c,configure:function(e){e.baseUrl&&"/"!==e.baseUrl.charAt(e.baseUrl.length-1)&&(e.baseUrl+="/");var t=y.shim,i={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){i[t]?(y[t]||(y[t]={}),mixin(y[t],e,!0,!0)):y[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(R[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,i){isArray(e)&&(e={deps:e}),!e.exports&&!e.init||e.exportsFn||(e.exportsFn=q.makeShimExports(e)),t[i]=e}),y.shim=t),e.packages&&each(e.packages,function(e){var t,i;e="string"==typeof e?{name:e}:e,i=e.name,t=e.location,t&&(y.paths[i]=e.location),y.pkgs[i]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(S,function(e,t){e.inited||e.map.unnormalized||(e.map=o(t,null,!0))}),(e.deps||e.callback)&&q.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function a(i,r,u){var d,p,f;return n.enableBuildCallback&&r&&isFunction(r)&&(r.__requireJsBuild=!0),"string"==typeof i?isFunction(r)?c(makeError("requireargs","Invalid require call"),u):t&&hasProp(E,i)?E[i](S[t.id]):req.get?req.get(q,i,t,a):(p=o(i,t,!1,!0),d=p.id,hasProp(j,d)?j[d]:c(makeError("notloaded",'Module name "'+d+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(v(),q.nextTick(function(){v(),f=s(o(null,t)),f.skipMap=n.skipMap,f.init(i,r,u,{enabled:!0}),l()}),a)}return n=n||{},mixin(a,{isBrowser:isBrowser,toUrl:function(e){var r,n=e.lastIndexOf("."),a=e.split("/")[0],o="."===a||".."===a;return-1!==n&&(!o||n>1)&&(r=e.substring(n,e.length),e=e.substring(0,n)),q.nameToUrl(i(e,t&&t.id,!0),r,!0)},defined:function(e){return hasProp(j,o(e,t,!1,!0).id)},specified:function(e){return e=o(e,t,!1,!0).id,hasProp(j,e)||hasProp(S,e)}}),t||(a.undef=function(e){d();var i=o(e,t,!0),n=getOwn(S,e);n.undefed=!0,r(e),delete j[e],delete P[i.url],delete M[e],eachReverse(O,function(t,i){t[0]===e&&O.splice(i,1)}),delete q.defQueueMap[e],n&&(n.events.defined&&(M[e]=n.events),p(e))}),a},enable:function(e){var t=getOwn(S,e.id);t&&s(e).enable()},completeLoad:function(e){var t,i,r,a=getOwn(y.shim,e)||{},o=a.exports;for(d();O.length;){if(i=O.shift(),null===i[0]){if(i[0]=e,t)break;t=!0}else i[0]===e&&(t=!0);h(i)}if(q.defQueueMap={},r=getOwn(S,e),!t&&!hasProp(j,e)&&r&&!r.inited){if(!(!y.enforceDefine||o&&getGlobal(o)))return n(e)?void 0:c(makeError("nodefine","No define call for "+e,null,[e]));h([e,a.deps||[],a.exportsFn])}l()},nameToUrl:function(e,t,i){var r,n,a,o,s,u,c,d=getOwn(y.pkgs,e);if(d&&(e=d),c=getOwn(R,e))return q.nameToUrl(c,t,i);if(req.jsExtRegExp.test(e))s=e+(t||"");else{for(r=y.paths,n=e.split("/"),a=n.length;a>0;a-=1)if(o=n.slice(0,a).join("/"),u=getOwn(r,o)){isArray(u)&&(u=u[0]),n.splice(0,a,u);break}s=n.join("/"),s+=t||(/^data\:|\?/.test(s)||i?"":".js"),s=("/"===s.charAt(0)||s.match(/^[\w\+\.\-]+:/)?"":y.baseUrl)+s}return y.urlArgs?s+((-1===s.indexOf("?")?"?":"&")+y.urlArgs):s},load:function(e,t){req.load(q,e,t)},execCb:function(e,t,i,r){return t.apply(r,i)},onScriptLoad:function(e){if("load"===e.type||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=g(e);q.completeLoad(t.id)}},onScriptError:function(e){var t=g(e);return n(t.id)?void 0:c(makeError("scripterror","Script error for: "+t.id,e,[t.id]))}},q.require=q.makeRequire(),q}function getInteractiveScript(){return interactiveScript&&"interactive"===interactiveScript.readyState?interactiveScript:(eachReverse(scripts(),function(e){return"interactive"===e.readyState?interactiveScript=e:void 0}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.1.20",commentRegExp=/(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/gm,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,ap=Array.prototype,isBrowser=!("undefined"==typeof window||"undefined"==typeof navigator||!window.document),isWebWorker=!isBrowser&&"undefined"!=typeof importScripts,readyRegExp=isBrowser&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if("undefined"==typeof define){if("undefined"!=typeof requirejs){if(isFunction(requirejs))return;cfg=requirejs,requirejs=void 0}"undefined"==typeof require||isFunction(require)||(cfg=require,require=void 0),req=requirejs=function(e,t,i,r){var n,a,o=defContextName;return isArray(e)||"string"==typeof e||(a=e,isArray(t)?(e=t,t=i,i=r):e=[]),a&&a.context&&(o=a.context),n=getOwn(contexts,o),n||(n=contexts[o]=req.s.newContext(o)),a&&n.configure(a),n.require(e,t,i)},req.config=function(e){return req(e)},req.nextTick="undefined"!=typeof setTimeout?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,i){var r=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return r.type=e.scriptType||"text/javascript",r.charset="utf-8",r.async=!0,r},req.load=function(e,t,i){var r,n=e&&e.config||{};if(isBrowser)return r=req.createNode(n,t,i),n.onNodeCreated&&n.onNodeCreated(r,n,t,i),r.setAttribute("data-requirecontext",e.contextName),r.setAttribute("data-requiremodule",t),!r.attachEvent||r.attachEvent.toString&&r.attachEvent.toString().indexOf("[native code")<0||isOpera?(r.addEventListener("load",e.onScriptLoad,!1),r.addEventListener("error",e.onScriptError,!1)):(useInteractive=!0,r.attachEvent("onreadystatechange",e.onScriptLoad)),r.src=i,currentlyAddingScript=r,baseElement?head.insertBefore(r,baseElement):head.appendChild(r),currentlyAddingScript=null,r;if(isWebWorker)try{importScripts(i),e.completeLoad(t)}catch(a){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+i,a,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){return head||(head=e.parentNode),dataMain=e.getAttribute("data-main"),dataMain?(mainScript=dataMain,cfg.baseUrl||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0):void 0}),define=function(e,t,i){var r,n;"string"!=typeof e&&(i=t,t=e,e=null),isArray(t)||(i=t,t=null),!t&&isFunction(i)&&(t=[],i.length&&(i.toString().replace(commentRegExp,"").replace(cjsRequireRegExp,function(e,i){t.push(i)}),t=(1===i.length?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(r=currentlyAddingScript||getInteractiveScript(),r&&(e||(e=r.getAttribute("data-requiremodule")),n=contexts[r.getAttribute("data-requirecontext")])),n?(n.defQueue.push([e,t,i]),n.defQueueMap[e]=!0):globalDefQueue.push([e,t,i])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)}}(this); \ No newline at end of file +var requirejs,require,define;!function(global){function isFunction(e){return"[object Function]"===ostring.call(e)}function isArray(e){return"[object Array]"===ostring.call(e)}function each(e,t){if(e){var r;for(r=0;r-1&&(!e[r]||!t(e[r],r,e));r-=1);}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var r;for(r in e)if(hasProp(e,r)&&t(e[r],r))break}function mixin(e,t,r,i){return t&&eachProp(t,function(t,n){(r||!hasProp(e,n))&&(!i||"object"!=typeof t||!t||isArray(t)||isFunction(t)||t instanceof RegExp?e[n]=t:(e[n]||(e[n]={}),mixin(e[n],t,r,i)))}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,r,i){var n=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return n.requireType=e,n.requireModules=i,r&&(n.originalError=r),n}function newContext(e){function t(e){var t,r;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}function r(e,r,i){var n,o,a,s,u,c,d,p,f,l,h,m,g=r&&r.split("/"),v=w.map,x=v&&v["*"];if(e&&(e=e.split("/"),d=e.length-1,w.nodeIdCompat&&jsSuffixRegExp.test(e[d])&&(e[d]=e[d].replace(jsSuffixRegExp,"")),"."===e[0].charAt(0)&&g&&(m=g.slice(0,g.length-1),e=m.concat(e)),t(e),e=e.join("/")),i&&v&&(g||x)){a=e.split("/");e:for(s=a.length;s>0;s-=1){if(c=a.slice(0,s).join("/"),g)for(u=g.length;u>0;u-=1)if(o=getOwn(v,g.slice(0,u).join("/")),o&&(o=getOwn(o,c))){p=o,f=s;break e}!l&&x&&getOwn(x,c)&&(l=getOwn(x,c),h=s)}!p&&l&&(p=l,f=h),p&&(a.splice(0,f,p),e=a.join("/"))}return n=getOwn(w.pkgs,e),n?n:e}function i(e){isBrowser&&each(scripts(),function(t){return t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===q.contextName?(t.parentNode.removeChild(t),!0):void 0})}function n(e){var t=getOwn(w.paths,e);return t&&isArray(t)&&t.length>1?(t.shift(),q.require.undef(e),q.makeRequire(null,{skipMap:!0})([e]),!0):void 0}function o(e){var t,r=e?e.indexOf("!"):-1;return r>-1&&(t=e.substring(0,r),e=e.substring(r+1,e.length)),[t,e]}function a(e,t,i,n){var a,s,u,c,d=null,p=t?t.name:null,f=e,l=!0,h="";return e||(l=!1,e="_@r"+(A+=1)),c=o(e),d=c[0],e=c[1],d&&(d=r(d,p,n),s=getOwn(j,d)),e&&(d?h=s&&s.normalize?s.normalize(e,function(e){return r(e,p,n)}):-1===e.indexOf("!")?r(e,p,n):e:(h=r(e,p,n),c=o(h),d=c[0],h=c[1],i=!0,a=q.nameToUrl(h))),u=!d||s||i?"":"_unnormalized"+(T+=1),{prefix:d,name:h,parentMap:t,unnormalized:!!u,url:a,originalName:f,isDefine:l,id:(d?d+"!"+h:h)+u}}function s(e){var t=e.id,r=getOwn(S,t);return r||(r=S[t]=new q.Module(e)),r}function u(e,t,r){var i=e.id,n=getOwn(S,i);!hasProp(j,i)||n&&!n.defineEmitComplete?(n=s(e),n.error&&"error"===t?r(n.error):n.on(t,r)):"defined"===t&&r(j[i])}function c(e,t){var r=e.requireModules,i=!1;t?t(e):(each(r,function(t){var r=getOwn(S,t);r&&(r.error=e,r.events.error&&(i=!0,r.emit("error",e)))}),i||req.onError(e))}function d(){globalDefQueue.length&&(each(globalDefQueue,function(e){var t=e[0];"string"==typeof t&&(q.defQueueMap[t]=!0),O.push(e)}),globalDefQueue=[])}function p(e){delete S[e],delete k[e]}function f(e,t,r){var i=e.map.id;e.error?e.emit("error",e.error):(t[i]=!0,each(e.depMaps,function(i,n){var o=i.id,a=getOwn(S,o);!a||e.depMatched[n]||r[o]||(getOwn(t,o)?(e.defineDep(n,j[o]),e.check()):f(a,t,r))}),r[i]=!0)}function l(){var e,t,r=1e3*w.waitSeconds,o=r&&q.startTime+r<(new Date).getTime(),a=[],s=[],u=!1,d=!0;if(!x){if(x=!0,eachProp(k,function(e){var r=e.map,c=r.id;if(e.enabled&&(r.isDefine||s.push(e),!e.error))if(!e.inited&&o)n(c)?(t=!0,u=!0):(a.push(c),i(c));else if(!e.inited&&e.fetched&&r.isDefine&&(u=!0,!r.prefix))return d=!1}),o&&a.length)return e=makeError("timeout","Load timeout for modules: "+a,null,a),e.contextName=q.contextName,c(e);d&&each(s,function(e){f(e,{},{})}),o&&!t||!u||!isBrowser&&!isWebWorker||y||(y=setTimeout(function(){y=0,l()},50)),x=!1}}function h(e){hasProp(j,e[0])||s(a(e[0],null,!0)).init(e[1],e[2])}function m(e,t,r,i){e.detachEvent&&!isOpera?i&&e.detachEvent(i,t):e.removeEventListener(r,t,!1)}function g(e){var t=e.currentTarget||e.srcElement;return m(t,q.onScriptLoad,"load","onreadystatechange"),m(t,q.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function v(){var e;for(d();O.length;){if(e=O.shift(),null===e[0])return c(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));h(e)}q.defQueueMap={}}var x,b,q,E,y,w={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},S={},k={},M={},O=[],j={},P={},R={},A=1,T=1;return E={require:function(e){return e.require?e.require:e.require=q.makeRequire(e.map)},exports:function(e){return e.usingExports=!0,e.map.isDefine?e.exports?j[e.map.id]=e.exports:e.exports=j[e.map.id]={}:void 0},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(w.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},b=function(e){this.events=getOwn(M,e.id)||{},this.map=e,this.shim=getOwn(w.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},b.prototype={init:function(e,t,r,i){i=i||{},this.inited||(this.factory=t,r?this.on("error",r):this.events.error&&(r=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=r,this.inited=!0,this.ignore=i.ignore,i.enabled||this.enabled?this.enable():this.check())},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(!this.fetched){this.fetched=!0,q.startTime=(new Date).getTime();var e=this.map;return this.shim?void q.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()})):e.prefix?this.callPlugin():this.load()}},load:function(){var e=this.map.url;P[e]||(P[e]=!0,q.load(this.map.id,e))},check:function(){if(this.enabled&&!this.enabling){var e,t,r=this.map.id,i=this.depExports,n=this.exports,o=this.factory;if(this.inited){if(this.error)this.emit("error",this.error);else if(!this.defining){if(this.defining=!0,this.depCount<1&&!this.defined){if(isFunction(o)){try{n=q.execCb(r,o,i,n)}catch(a){e=a}if(this.map.isDefine&&void 0===n&&(t=this.module,t?n=t.exports:this.usingExports&&(n=this.exports)),e){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",c(this.error=e);"undefined"!=typeof console&&console.error?console.error(e):req.onError(e)}}else n=o;if(this.exports=n,this.map.isDefine&&!this.ignore&&(j[r]=n,req.onResourceLoad)){var s=[];each(this.depMaps,function(e){s.push(e.normalizedMap||e)}),req.onResourceLoad(q,this.map,s)}p(r),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}}else hasProp(q.defQueueMap,r)||this.fetch()}},callPlugin:function(){var e=this.map,t=e.id,i=a(e.prefix);this.depMaps.push(i),u(i,"defined",bind(this,function(i){var n,o,d,f=getOwn(R,this.map.id),l=this.map.name,h=this.map.parentMap?this.map.parentMap.name:null,m=q.makeRequire(e.parentMap,{enableBuildCallback:!0});return this.map.unnormalized?(i.normalize&&(l=i.normalize(l,function(e){return r(e,h,!0)})||""),o=a(e.prefix+"!"+l,this.map.parentMap),u(o,"defined",bind(this,function(e){this.map.normalizedMap=o,this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),d=getOwn(S,o.id),void(d&&(this.depMaps.push(o),this.events.error&&d.on("error",bind(this,function(e){this.emit("error",e)})),d.enable()))):f?(this.map.url=q.nameToUrl(f),void this.load()):(n=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),n.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(S,function(e){0===e.map.id.indexOf(t+"_unnormalized")&&p(e.map.id)}),c(e)}),n.fromText=bind(this,function(r,i){var o=e.name,u=a(o),d=useInteractive;i&&(r=i),d&&(useInteractive=!1),s(u),hasProp(w.config,t)&&(w.config[o]=w.config[t]);try{req.exec(r)}catch(p){return c(makeError("fromtexteval","fromText eval for "+t+" failed: "+p,p,[t]))}d&&(useInteractive=!0),this.depMaps.push(u),q.completeLoad(o),m([o],n)}),void i.load(e.name,m,n,w))})),q.enable(i,this),this.pluginMaps[i.id]=i},enable:function(){k[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var r,i,n;if("string"==typeof e){if(e=a(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,n=getOwn(E,e.id))return void(this.depExports[t]=n(this));this.depCount+=1,u(e,"defined",bind(this,function(e){this.undefed||(this.defineDep(t,e),this.check())})),this.errback?u(e,"error",bind(this,this.errback)):this.events.error&&u(e,"error",bind(this,function(e){this.emit("error",e)}))}r=e.id,i=S[r],hasProp(E,r)||!i||i.enabled||q.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(S,e.id);t&&!t.enabled&&q.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var r=this.events[e];r||(r=this.events[e]=[]),r.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),"error"===e&&delete this.events[e]}},q={config:w,contextName:e,registry:S,defined:j,urlFetched:P,defQueue:O,defQueueMap:{},Module:b,makeModuleMap:a,nextTick:req.nextTick,onError:c,configure:function(e){e.baseUrl&&"/"!==e.baseUrl.charAt(e.baseUrl.length-1)&&(e.baseUrl+="/");var t=w.shim,r={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){r[t]?(w[t]||(w[t]={}),mixin(w[t],e,!0,!0)):w[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(R[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,r){isArray(e)&&(e={deps:e}),!e.exports&&!e.init||e.exportsFn||(e.exportsFn=q.makeShimExports(e)),t[r]=e}),w.shim=t),e.packages&&each(e.packages,function(e){var t,r;e="string"==typeof e?{name:e}:e,r=e.name,t=e.location,t&&(w.paths[r]=e.location),w.pkgs[r]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(S,function(e,t){e.inited||e.map.unnormalized||(e.map=a(t,null,!0))}),(e.deps||e.callback)&&q.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function o(r,i,u){var d,p,f;return n.enableBuildCallback&&i&&isFunction(i)&&(i.__requireJsBuild=!0),"string"==typeof r?isFunction(i)?c(makeError("requireargs","Invalid require call"),u):t&&hasProp(E,r)?E[r](S[t.id]):req.get?req.get(q,r,t,o):(p=a(r,t,!1,!0),d=p.id,hasProp(j,d)?j[d]:c(makeError("notloaded",'Module name "'+d+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(v(),q.nextTick(function(){v(),f=s(a(null,t)),f.skipMap=n.skipMap,f.init(r,i,u,{enabled:!0}),l()}),o)}return n=n||{},mixin(o,{isBrowser:isBrowser,toUrl:function(e){var i,n=e.lastIndexOf("."),o=e.split("/")[0],a="."===o||".."===o;return-1!==n&&(!a||n>1)&&(i=e.substring(n,e.length),e=e.substring(0,n)),q.nameToUrl(r(e,t&&t.id,!0),i,!0)},defined:function(e){return hasProp(j,a(e,t,!1,!0).id)},specified:function(e){return e=a(e,t,!1,!0).id,hasProp(j,e)||hasProp(S,e)}}),t||(o.undef=function(e){d();var r=a(e,t,!0),n=getOwn(S,e);n.undefed=!0,i(e),delete j[e],delete P[r.url],delete M[e],eachReverse(O,function(t,r){t[0]===e&&O.splice(r,1)}),delete q.defQueueMap[e],n&&(n.events.defined&&(M[e]=n.events),p(e))}),o},enable:function(e){var t=getOwn(S,e.id);t&&s(e).enable()},completeLoad:function(e){var t,r,i,o=getOwn(w.shim,e)||{},a=o.exports;for(d();O.length;){if(r=O.shift(),null===r[0]){if(r[0]=e,t)break;t=!0}else r[0]===e&&(t=!0);h(r)}if(q.defQueueMap={},i=getOwn(S,e),!t&&!hasProp(j,e)&&i&&!i.inited){if(!(!w.enforceDefine||a&&getGlobal(a)))return n(e)?void 0:c(makeError("nodefine","No define call for "+e,null,[e]));h([e,o.deps||[],o.exportsFn])}l()},nameToUrl:function(e,t,r){var i,n,o,a,s,u,c,d=getOwn(w.pkgs,e);if(d&&(e=d),c=getOwn(R,e))return q.nameToUrl(c,t,r);if(req.jsExtRegExp.test(e))s=e+(t||"");else{for(i=w.paths,n=e.split("/"),o=n.length;o>0;o-=1)if(a=n.slice(0,o).join("/"),u=getOwn(i,a)){isArray(u)&&(u=u[0]),n.splice(0,o,u);break}s=n.join("/"),s+=t||(/^data\:|\?/.test(s)||r?"":".js"),s=("/"===s.charAt(0)||s.match(/^[\w\+\.\-]+:/)?"":w.baseUrl)+s}return w.urlArgs?s+((-1===s.indexOf("?")?"?":"&")+w.urlArgs):s},load:function(e,t){req.load(q,e,t)},execCb:function(e,t,r,i){return t.apply(i,r)},onScriptLoad:function(e){if("load"===e.type||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=g(e);q.completeLoad(t.id)}},onScriptError:function(e){var t=g(e);if(!n(t.id)){var r=[];return eachProp(S,function(e,i){0!==i.indexOf("_@r")&&each(e.depMaps,function(e){return e.id===t.id&&r.push(i),!0})}),c(makeError("scripterror",'Script error for "'+t.id+(r.length?'", needed by: '+r.join(", "):'"'),e,[t.id]))}}},q.require=q.makeRequire(),q}function getInteractiveScript(){return interactiveScript&&"interactive"===interactiveScript.readyState?interactiveScript:(eachReverse(scripts(),function(e){return"interactive"===e.readyState?interactiveScript=e:void 0}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.1.22",commentRegExp=/(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/gm,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,ap=Array.prototype,isBrowser=!("undefined"==typeof window||"undefined"==typeof navigator||!window.document),isWebWorker=!isBrowser&&"undefined"!=typeof importScripts,readyRegExp=isBrowser&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if("undefined"==typeof define){if("undefined"!=typeof requirejs){if(isFunction(requirejs))return;cfg=requirejs,requirejs=void 0}"undefined"==typeof require||isFunction(require)||(cfg=require,require=void 0),req=requirejs=function(e,t,r,i){var n,o,a=defContextName;return isArray(e)||"string"==typeof e||(o=e,isArray(t)?(e=t,t=r,r=i):e=[]),o&&o.context&&(a=o.context),n=getOwn(contexts,a),n||(n=contexts[a]=req.s.newContext(a)),o&&n.configure(o),n.require(e,t,r)},req.config=function(e){return req(e)},req.nextTick="undefined"!=typeof setTimeout?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,r){var i=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return i.type=e.scriptType||"text/javascript",i.charset="utf-8",i.async=!0,i},req.load=function(e,t,r){var i,n=e&&e.config||{};if(isBrowser)return i=req.createNode(n,t,r),n.onNodeCreated&&n.onNodeCreated(i,n,t,r),i.setAttribute("data-requirecontext",e.contextName),i.setAttribute("data-requiremodule",t),!i.attachEvent||i.attachEvent.toString&&i.attachEvent.toString().indexOf("[native code")<0||isOpera?(i.addEventListener("load",e.onScriptLoad,!1),i.addEventListener("error",e.onScriptError,!1)):(useInteractive=!0,i.attachEvent("onreadystatechange",e.onScriptLoad)),i.src=r,currentlyAddingScript=i,baseElement?head.insertBefore(i,baseElement):head.appendChild(i),currentlyAddingScript=null,i;if(isWebWorker)try{importScripts(r),e.completeLoad(t)}catch(o){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+r,o,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){return head||(head=e.parentNode),dataMain=e.getAttribute("data-main"),dataMain?(mainScript=dataMain,cfg.baseUrl||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0):void 0}),define=function(e,t,r){var i,n;"string"!=typeof e&&(r=t,t=e,e=null),isArray(t)||(r=t,t=null),!t&&isFunction(r)&&(t=[],r.length&&(r.toString().replace(commentRegExp,"").replace(cjsRequireRegExp,function(e,r){t.push(r)}),t=(1===r.length?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(i=currentlyAddingScript||getInteractiveScript(),i&&(e||(e=i.getAttribute("data-requiremodule")),n=contexts[i.getAttribute("data-requirecontext")])),n?(n.defQueue.push([e,t,r]),n.defQueueMap[e]=!0):globalDefQueue.push([e,t,r])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)}}(this); \ No newline at end of file