@cfpb/ccdb5-ui 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -17
- package/dist/ccdb5.css +3 -0
- package/dist/ccdb5.css.map +1 -0
- package/dist/ccdb5.js +3 -0
- package/dist/{ccdb5.min.js.LICENSE.txt → ccdb5.js.LICENSE.txt} +42 -0
- package/dist/ccdb5.js.map +1 -0
- package/package.json +53 -103
- package/dist/ccdb5.min.js +0 -3
- package/dist/ccdb5.min.js.map +0 -1
package/README.md
CHANGED
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
This application allows consumers to search complaints submitted to the CFPB by other consumers.
|
|
5
5
|
|
|
6
6
|
#### Technology Stack
|
|
7
|
+
|
|
7
8
|
This application is written in JavaScript and [Less](http://lesscss.org) within
|
|
8
9
|
the [React](https://facebook.github.io/react/) + [Redux](http://redux.js.org/)
|
|
9
|
-
framework.
|
|
10
|
+
framework. It uses [Webpack](http://webpack.github.io/docs/) at runtime to
|
|
10
11
|
manage module loading.
|
|
11
12
|
|
|
12
13
|
The code is written with the [ES6](http://es6-features.org/) feature set
|
|
@@ -20,6 +21,7 @@ Unit testing of the application is performed within
|
|
|
20
21
|
[yarn](https://yarnpkg.com/) is used to manage the build/test/deploy cycle.
|
|
21
22
|
|
|
22
23
|
#### Screenshot
|
|
24
|
+
|
|
23
25
|

|
|
24
26
|
|
|
25
27
|
## Dependencies
|
|
@@ -48,19 +50,20 @@ Please see the subsection Configuring in [INSTALL](INSTALL.md#configuring)
|
|
|
48
50
|
#### Developing code
|
|
49
51
|
|
|
50
52
|
###### Prerequisites
|
|
53
|
+
|
|
51
54
|
This application depends on the [Public Complaints API](https://github.com/cfpb/ccdb5-api)
|
|
52
55
|
to be available.
|
|
53
56
|
|
|
54
57
|
For local development, you will need to the following:
|
|
55
58
|
|
|
56
|
-
|
|
57
|
-
|
|
59
|
+
- [Run consumerfinance.gov locally (which includes the API)](https://github.com/cfpb/consumerfinance.gov#quickstart).
|
|
60
|
+
- [Fill the local Elasticsearch with data](https://github.com/cfpb/ccdb-data-pipeline/blob/main/INSTALL.md).
|
|
58
61
|
|
|
59
|
-
|
|
62
|
+
**_Note:_** The Public Complaints API runs as part of consumerfinance.gov, but you can run the API as an independent app:
|
|
60
63
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
+
- Ensure the consumerfinance.gov python container is stopped with `docker-compose stop python`.
|
|
65
|
+
- [Install the API](https://github.com/cfpb/ccdb5-api#setup--running) and run it with `python manage.py runserver`.
|
|
66
|
+
- Edit [`env.js`](https://github.com/cfpb/ccdb5-ui/blob/main/config/env.js#L104) to point `ccdbApiUrl.dev` to the locally running API (likely at `http://localhost:8000/`).
|
|
64
67
|
|
|
65
68
|
###### Code-Build cycle
|
|
66
69
|
|
|
@@ -80,6 +83,7 @@ Enter `Control-C` to exit development mode
|
|
|
80
83
|
## How to test the software
|
|
81
84
|
|
|
82
85
|
#### Unit testing
|
|
86
|
+
|
|
83
87
|
To launch the JavaScript test runner in interactive watch/test mode:
|
|
84
88
|
|
|
85
89
|
```bash
|
|
@@ -100,9 +104,11 @@ Timeouts and the local `baseUrl` are set in cypress.json
|
|
|
100
104
|
### To run Cypress tests locally
|
|
101
105
|
|
|
102
106
|
- Set your node env to development:
|
|
107
|
+
|
|
103
108
|
```bash
|
|
104
109
|
export NODE_ENV=development
|
|
105
110
|
```
|
|
111
|
+
|
|
106
112
|
You can run the tests in headless mode and just see results, or you can open the Cypress test-runner, which lets you choose tests and watch them run in a Chrome browser. Having the live browser allows you to see page state during tests, and you can open Chrome dev tools to check console errors and network requests.
|
|
107
113
|
|
|
108
114
|
To run local tests and just see results:
|
|
@@ -124,6 +130,7 @@ yarn run cypress open --browser chrome
|
|
|
124
130
|
```
|
|
125
131
|
|
|
126
132
|
### To run against a server
|
|
133
|
+
|
|
127
134
|
You can also run Cypress tests against a server by passing a `baseUrl` config with the path to the server's consumer complaints search page.
|
|
128
135
|
|
|
129
136
|
**Note**: If you run against a server that has Django's `DEBUG=False` setting,
|
|
@@ -134,6 +141,70 @@ Our internal DEV servers can be deployed with `DEBUG=True` for running Cypress t
|
|
|
134
141
|
yarn run cypress run --browser chrome --headless --config baseUrl=https://[DEV SERVER URL]/data-research/consumer-complaints/search/
|
|
135
142
|
```
|
|
136
143
|
|
|
144
|
+
## Release management
|
|
145
|
+
|
|
146
|
+
Ready to publish changes to npm?
|
|
147
|
+
|
|
148
|
+
### Config prep:
|
|
149
|
+
|
|
150
|
+
1. If you don't have a `.env` file,
|
|
151
|
+
copy it from the sample file with `cp .env_SAMPLE .env`.
|
|
152
|
+
2. Add a `GITHUB_TOKEN` in your `.env` file (see
|
|
153
|
+
https://github.com/settings/tokens/new?scopes=repo&description=ccdb-release-it
|
|
154
|
+
to create the token value).
|
|
155
|
+
Set the desired token expiry length and click generate.
|
|
156
|
+
3. You need to be part of the collaborators for
|
|
157
|
+
https://www.npmjs.com/package/@cfpb/ccdb5-ui.
|
|
158
|
+
Ask a member of the [consumerfinance.gov](https://github.com/cfpb/consumerfinance.gov) team if you are not.
|
|
159
|
+
|
|
160
|
+
### Steps:
|
|
161
|
+
|
|
162
|
+
1. Ensure you're on `main` and `git pull` to confirm you're up-to-date.
|
|
163
|
+
2. Run `yarn run build` to ensure you have the latest built artifacts for npm.
|
|
164
|
+
Commit any changes to `/dist/` directory files to `main`.
|
|
165
|
+
3. Source your `.env` with `source ./.env` (if `GITHUB_TOKEN` in unset).
|
|
166
|
+
4. Log into npm with `npm login` (if not already logged in).
|
|
167
|
+
5. Run `yarn run release` to start the release.
|
|
168
|
+
This'll run the build scripts to copy the latest JS into
|
|
169
|
+
the `dist` directory. It then uses
|
|
170
|
+
[release-it](https://github.com/release-it/release-it/) to publish to
|
|
171
|
+
npm and create a GitHub tag.
|
|
172
|
+
6. Manually create an entry in the GitHub releases changelog by visiting
|
|
173
|
+
https://github.com/cfpb/ccdb5-ui/releases and clicking "Draft a new release":
|
|
174
|
+
- Choose the latest tag generated by the release script in the prior step.
|
|
175
|
+
- Title the release the same as the release version.
|
|
176
|
+
- Click "Auto-generate release notes" or manually enter release notes.
|
|
177
|
+
- Click "Publish release"
|
|
178
|
+
|
|
179
|
+
### Post-publish steps in consumerfinance.gov
|
|
180
|
+
|
|
181
|
+
1. Navigate to the root directory of the
|
|
182
|
+
[consumerfinance.gov](https://github.com/cfpb/consumerfinance.gov) repo.
|
|
183
|
+
2. Create a new branch.
|
|
184
|
+
3. Move to CCDB asset app directory with `cd cfgov/unprocessed/apps/ccdb-search/`.
|
|
185
|
+
4. `npx yarn-check -u` and update to the latest ccdb5-ui version.
|
|
186
|
+
5. Commit the changes to the npm package and node cache.
|
|
187
|
+
6. Open a Pull Request from the branch for review.
|
|
188
|
+
|
|
189
|
+
### Troubleshooting
|
|
190
|
+
|
|
191
|
+
- Ensure your npm version is up-to-date.
|
|
192
|
+
- `yarn run release` can't find https://www.npmjs.com/package/@cfpb/ccdb5-ui
|
|
193
|
+
and doesn't succeed.
|
|
194
|
+
- You're probably not an npm maintainer on the ccdb5-ui project.
|
|
195
|
+
Reach out to a core consumerfinance.gov member to get access.
|
|
196
|
+
- When updating the package in the consumerfinance.gov repo you get a message
|
|
197
|
+
similar to "Cannot download package in offline mode."
|
|
198
|
+
- This is likely an outdated cache issue, perform the following:
|
|
199
|
+
- Delete `cfgov/unprocessed/apps/ccdb-search/npm-packages-offline-cache`
|
|
200
|
+
- Delete `cfgov/unprocessed/apps/ccdb-search/node_modules`
|
|
201
|
+
- Delete `cfgov/unprocessed/apps/ccdb-search/yarn.lock`
|
|
202
|
+
- Temporarily edit the root directory `.yarnrc` file
|
|
203
|
+
and remove the last two lines and save.
|
|
204
|
+
- Run `yarn cache clean; yarn install`
|
|
205
|
+
from `cfgov/unprocessed/apps/ccdb-search/`.
|
|
206
|
+
- Re-add the last two lines to the root `.yarnrc` file.
|
|
207
|
+
|
|
137
208
|
## Getting help
|
|
138
209
|
|
|
139
210
|
If you have questions, concerns, bug reports, etc, please file an issue in this
|
|
@@ -143,23 +214,24 @@ repository's [Issue Tracker](https://github.com/cfpb/ccdb5-ui/issues).
|
|
|
143
214
|
|
|
144
215
|
[CONTRIBUTING](CONTRIBUTING.md).
|
|
145
216
|
|
|
146
|
-
|
|
217
|
+
---
|
|
147
218
|
|
|
148
219
|
## Open source licensing info
|
|
220
|
+
|
|
149
221
|
1. [TERMS](TERMS.md)
|
|
150
222
|
2. [LICENSE](LICENSE)
|
|
151
223
|
3. [CFPB Source Code Policy](https://github.com/cfpb/source-code-policy/)
|
|
152
224
|
|
|
153
|
-
|
|
154
|
-
----
|
|
225
|
+
---
|
|
155
226
|
|
|
156
227
|
## Links that were helpful
|
|
157
228
|
|
|
158
229
|
#### React-Redux
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
230
|
+
|
|
231
|
+
- https://egghead.io/lessons/javascript-redux-the-single-immutable-state-tree
|
|
232
|
+
- https://medium.com/lexical-labs-engineering/redux-best-practices-64d59775802e
|
|
233
|
+
- https://medium.com/@kylpo/redux-best-practices-eef55a20cc72
|
|
234
|
+
- https://github.com/markerikson/react-redux-links/blob/main/tips-and-best-practices.md
|
|
235
|
+
- https://getstream.io/blog/react-redux-best-practices-gotchas/
|
|
236
|
+
- https://tech.affirm.com/redux-patterns-and-anti-patterns-7d80ef3d53bc
|
|
237
|
+
- https://github.com/gaearon/redux-devtools
|
package/dist/ccdb5.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:sans-serif}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:initial;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;box-sizing:initial}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.no-js .u-js-only{display:none!important}.u-clearfix:after{clear:both;content:"";display:table}.u-visually-hidden{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media only all and (max-width:37.5em){.u-visually-hidden-on-mobile{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.u-hide-on-mobile{display:none}}.u-show-on-mobile{display:none}@media only all and (max-width:37.5em){.u-show-on-mobile{display:block}}.u-hidden{display:none!important}.u-invisible{visibility:hidden}.u-inline-block{display:inline-block}.u-right{float:right}.u-break-word{word-break:break-all}.u-nowrap{white-space:nowrap}.u-flexible-container{height:0;padding-bottom:56.25%;position:relative}.u-flexible-container_inner{height:100%;left:0;position:absolute;top:0;width:100%}.u-flexible-container__4-3{height:0;padding-bottom:75%;position:relative}.u-mt0{margin-top:0!important}.u-mb0{margin-bottom:0!important}.u-mt5{margin-top:5px!important}.u-mb5{margin-bottom:5px!important}.u-mt10{margin-top:10px!important}.u-mb10{margin-bottom:10px!important}.u-mt15{margin-top:15px!important}.u-mb15{margin-bottom:15px!important}.u-mt20{margin-top:20px!important}.u-mb20{margin-bottom:20px!important}.u-mt30{margin-top:30px!important}.u-mb30{margin-bottom:30px!important}.u-mt45{margin-top:45px!important}.u-mb45{margin-bottom:45px!important}.u-mt60{margin-top:60px!important}.u-mb60{margin-bottom:60px!important}.u-w100pct{width:100%}.u-w90pct{width:90%}.u-w80pct{width:80%}.u-w70pct{width:70%}.u-w60pct{width:60%}.u-w50pct{width:50%}.u-w40pct{width:40%}.u-w30pct{width:30%}.u-w20pct{width:20%}.u-w10pct{width:10%}.u-w75pct{width:75%}.u-w25pct{width:25%}.u-w66pct{width:66.66666667%}.u-w33pct{width:33.33333333%}.u-small-text,small{font-size:.875em}body{color:#101820;font-size:100%;line-height:1.375}body,button,input,select,textarea{font-family:Avenir Next,Arial,sans-serif}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.44117647em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.76470588em}@media only all and (max-width:37.5em){.h1,h1{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.73076923em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.15384615em}}.h2,h2{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.73076923em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.15384615em}@media only all and (max-width:37.5em){.h2,h2{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.36363636em}}.h3,h3{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.36363636em}@media only all and (max-width:37.5em){.h3,h3{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;text-transform:inherit}}.h4,h4{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.66666667em}@media only all and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.07142857em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.14285714em}.h6,h6{font-size:.75em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;margin-top:1.36363636em;text-transform:inherit}@media only all and (max-width:37.5em){.lead-paragraph{font-size:1.125em;margin-top:1.66666667em}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.41666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}ol ol{list-style-type:lower-alpha}ol ol ol{list-style-type:lower-roman}a{border:0 dotted #0072ce;color:#0072ce;text-decoration:none}a.visited,a:visited{border-color:#005e5d;color:#005e5d}a.hover,a:hover{border-color:#7eb7e8;border-style:solid;color:#7eb7e8}a.focus,a:focus{border-style:solid;outline:thin dotted}a.active,a:active{border-color:#002d72;border-style:solid;color:#002d72}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol li{margin-left:0!important}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:#f7f8f9;color:#101820;font-size:1em;padding:.71428571em;vertical-align:top}tbody tr,thead{border-bottom:1px solid #5a5d61}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:.875em;font-size:inherit;font-weight:600;letter-spacing:1px;line-height:1.25;margin:0;text-transform:uppercase}.h1+thead th .h2,.h1+thead th .h3,.h1+thead th .h4,.h1+thead th .h5,.h1+thead th .h6,.h1+thead th h2,.h1+thead th h3,.h1+thead th h4,.h1+thead th h5,.h1+thead th h6,.h2+thead th .h2,.h2+thead th .h3,.h2+thead th .h4,.h2+thead th .h5,.h2+thead th .h6,.h2+thead th h2,.h2+thead th h3,.h2+thead th h4,.h2+thead th h5,.h2+thead th h6,.h3+thead th .h2,.h3+thead th .h3,.h3+thead th .h4,.h3+thead th .h5,.h3+thead th .h6,.h3+thead th h2,.h3+thead th h3,.h3+thead th h4,.h3+thead th h5,.h3+thead th h6,.h4+thead th .h2,.h4+thead th .h3,.h4+thead th .h4,.h4+thead th .h5,.h4+thead th .h6,.h4+thead th h2,.h4+thead th h3,.h4+thead th h4,.h4+thead th h5,.h4+thead th h6,.h6+thead th .h2,.h6+thead th .h3,.h6+thead th .h4,.h6+thead th .h5,.h6+thead th .h6,.h6+thead th h2,.h6+thead th h3,.h6+thead th h4,.h6+thead th h5,.h6+thead th h6,blockquote+thead th .h2,blockquote+thead th .h3,blockquote+thead th .h4,blockquote+thead th .h5,blockquote+thead th .h6,blockquote+thead th h2,blockquote+thead th h3,blockquote+thead th h4,blockquote+thead th h5,blockquote+thead th h6,dl+thead th .h2,dl+thead th .h3,dl+thead th .h4,dl+thead th .h5,dl+thead th .h6,dl+thead th h2,dl+thead th h3,dl+thead th h4,dl+thead th h5,dl+thead th h6,figure+thead th .h2,figure+thead th .h3,figure+thead th .h4,figure+thead th .h5,figure+thead th .h6,figure+thead th h2,figure+thead th h3,figure+thead th h4,figure+thead th h5,figure+thead th h6,h1+thead th .h2,h1+thead th .h3,h1+thead th .h4,h1+thead th .h5,h1+thead th .h6,h1+thead th h2,h1+thead th h3,h1+thead th h4,h1+thead th h5,h1+thead th h6,h2+thead th .h2,h2+thead th .h3,h2+thead th .h4,h2+thead th .h5,h2+thead th .h6,h2+thead th h2,h2+thead th h3,h2+thead th h4,h2+thead th h5,h2+thead th h6,h3+thead th .h2,h3+thead th .h3,h3+thead th .h4,h3+thead th .h5,h3+thead th .h6,h3+thead th h2,h3+thead th h3,h3+thead th h4,h3+thead th h5,h3+thead th h6,h4+thead th .h2,h4+thead th .h3,h4+thead th .h4,h4+thead th .h5,h4+thead th .h6,h4+thead th h2,h4+thead th h3,h4+thead th h4,h4+thead th h5,h4+thead th h6,h6+thead th .h2,h6+thead th .h3,h6+thead th .h4,h6+thead th .h5,h6+thead th .h6,h6+thead th h2,h6+thead th h3,h6+thead th h4,h6+thead th h5,h6+thead th h6,img+thead th .h2,img+thead th .h3,img+thead th .h4,img+thead th .h5,img+thead th .h6,img+thead th h2,img+thead th h3,img+thead th h4,img+thead th h5,img+thead th h6,ol+thead th .h2,ol+thead th .h3,ol+thead th .h4,ol+thead th .h5,ol+thead th .h6,ol+thead th h2,ol+thead th h3,ol+thead th h4,ol+thead th h5,ol+thead th h6,p+thead th .h2,p+thead th .h3,p+thead th .h4,p+thead th .h5,p+thead th .h6,p+thead th h2,p+thead th h3,p+thead th h4,p+thead th h5,p+thead th h6,table+thead th .h2,table+thead th .h3,table+thead th .h4,table+thead th .h5,table+thead th .h6,table+thead th h2,table+thead th h3,table+thead th h4,table+thead th h5,table+thead th h6,ul+thead th .h2,ul+thead th .h3,ul+thead th .h4,ul+thead th .h5,ul+thead th .h6,ul+thead th h2,ul+thead th h3,ul+thead th h4,ul+thead th h5,ul+thead th h6{margin-top:2.14285714em}blockquote{margin-left:.9375em;margin-right:.9375em}@media only all and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:#f7f8f9;border-radius:4px;color:#101820;font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.23076923em .23076923em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:initial;padding:0}.u-no-animation{transition-duration:0s!important}.u-move-transition{transition:-webkit-transform .25s ease-out;transition:transform .25s ease-out;transition:transform .25s ease-out,-webkit-transform .25s ease-out}.u-move-to-origin{-webkit-transform:translateZ(0);transform:translateZ(0)}.u-move-left{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.u-move-left-2x{-webkit-transform:translate3d(-200%,0,0);transform:translate3d(-200%,0,0)}.u-move-left-3x{-webkit-transform:translate3d(-300%,0,0);transform:translate3d(-300%,0,0)}.u-move-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.u-move-up{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.u-alpha-transition{transition:opacity .25s linear}.u-alpha-100{opacity:1}.u-alpha-0{opacity:0}.u-max-height-transition{max-height:1000px;transition:max-height .25s ease-out}.u-max-height-default{max-height:1000px}.u-max-height-zero{max-height:0!important}.u-max-height-summary{max-height:88px!important}.cf-icon-svg{fill:currentColor;height:1.1875em;max-width:1em;vertical-align:text-top}.cf-icon-svg__updating{-webkit-animation:updating-animation 1.25s linear infinite;animation:updating-animation 1.25s linear infinite;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes updating-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes updating-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.a-btn{-webkit-appearance:none;appearance:none;border:0;border-radius:.28571429em;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:.875em;font-weight:500;line-height:normal;margin:0;padding:.57142857em 1em;text-align:center;text-decoration:none;transition:background-color .1s}.a-btn,.a-btn:link,.a-btn:visited{background-color:#0072ce;color:#fff}.a-btn.focus,.a-btn.hover,.a-btn:focus,.a-btn:hover{background-color:#4497dc}.a-btn.focus,.a-btn:focus{outline:1px dotted #0072ce;outline-offset:1px}.a-btn.active,.a-btn:active{background-color:#254b87}button.a-btn::-moz-focus-inner,input.a-btn::-moz-focus-inner{border:0}.a-btn__secondary,.a-btn__secondary:link,.a-btn__secondary:visited{background-color:#75787b;color:#fff}.a-btn__secondary.focus,.a-btn__secondary.hover,.a-btn__secondary:focus,.a-btn__secondary:hover{background-color:#919395}.a-btn__secondary.focus,.a-btn__secondary:focus{outline-color:#75787b}.a-btn__secondary.active,.a-btn__secondary:active{background-color:#43484e}.a-btn__warning,.a-btn__warning:link,.a-btn__warning:visited{background-color:#d14124;color:#fff}.a-btn__warning.focus,.a-btn__warning.hover,.a-btn__warning:focus,.a-btn__warning:hover{background-color:#dd735d}.a-btn__warning.focus,.a-btn__warning:focus{outline-color:#d14124}.a-btn__warning.active,.a-btn__warning:active{background-color:#b63014}.a-btn[disabled],.a-btn[disabled].active,.a-btn[disabled].focus,.a-btn[disabled].hover,.a-btn[disabled]:active,.a-btn[disabled]:focus,.a-btn[disabled]:hover,.a-btn[disabled]:link,.a-btn[disabled]:visited,.a-btn__disabled,.a-btn__disabled.active,.a-btn__disabled.focus,.a-btn__disabled.hover,.a-btn__disabled:active,.a-btn__disabled:focus,.a-btn__disabled:hover,.a-btn__disabled:link,.a-btn__disabled:visited{background-color:#e7e8e9;color:#75787b;cursor:default;cursor:not-allowed}.a-btn[disabled].focus,.a-btn[disabled]:focus,.a-btn__disabled.focus,.a-btn__disabled:focus{outline-color:#e7e8e9}.a-btn__super{font-size:1.125em;padding:.61111111em 1.61111111em}@media only all and (max-width:37.5em){.a-btn__full-on-xs{display:block;width:100%}}.a-btn__link{border-bottom:1px dotted #0072ce;border-radius:0;padding:0}.a-btn__link,.a-btn__link:link,.a-btn__link:visited{background-color:initial;border-bottom-color:#0072ce;color:#0072ce}.a-btn__link.hover,.a-btn__link:hover{background-color:initial;border-bottom:1px solid #7eb7e8;color:#7eb7e8}.a-btn__link.focus,.a-btn__link:focus{background-color:initial;border-bottom-style:solid;outline:1px dotted #0072ce}.a-btn__link.active,.a-btn__link:active{background-color:initial;border-bottom:1px solid #002d72;color:#002d72}.a-btn__link.a-btn__secondary,.a-btn__link.a-btn__secondary:link,.a-btn__link.a-btn__secondary:visited{background-color:initial;border-bottom-color:#75787b;color:#75787b}.a-btn__link.a-btn__secondary.hover,.a-btn__link.a-btn__secondary:hover{border-bottom-color:#919395;color:#919395}.a-btn__link.a-btn__secondary.focus,.a-btn__link.a-btn__secondary:focus{outline-color:#75787b}.a-btn__link.a-btn__secondary.active,.a-btn__link.a-btn__secondary:active{border-bottom-color:#43484e;color:#43484e}.a-btn__link.a-btn__warning,.a-btn__link.a-btn__warning:link,.a-btn__link.a-btn__warning:visited{background-color:initial;border-bottom-color:#d14124;color:#d14124}.a-btn__link.a-btn__warning.hover,.a-btn__link.a-btn__warning:hover{border-bottom-color:#dd735d;color:#dd735d}.a-btn__link.a-btn__warning.focus,.a-btn__link.a-btn__warning:focus{outline-color:#d14124}.a-btn__link.a-btn__warning.active,.a-btn__link.a-btn__warning:active{border-bottom-color:#b63014;color:#b63014}.a-btn_icon__on-left{border-right:1px solid #80b9e7;margin-right:.5em;padding-right:.78571429em}.a-btn_icon__on-right{border-left:1px solid #80b9e7;margin-left:.5em;padding-left:.78571429em}.a-btn__secondary .a-btn_icon{border-color:#babcbd}.a-btn__warning .a-btn_icon{border-color:#e8a092}.a-btn[disabled] .a-btn_icon,.a-btn__disabled .a-btn_icon{border-color:#aeb0b2}.m-btn-group .a-btn+.a-btn{margin-left:.42857143em}.m-btn-group .a-btn__super+.a-btn__super{margin-left:.33333333em}.m-btn-group__combined .a-btn{border-radius:0;margin-right:1px}.m-btn-group__combined .a-btn+.a-btn,.m-btn-group__combined .a-btn__super+.a-btn__super{margin-left:-4px}.m-btn-group__combined .a-btn:first-child{border-bottom-left-radius:.28571429em;border-top-left-radius:.28571429em}.m-btn-group__combined .a-btn:last-child{border-bottom-right-radius:.28571429em;border-top-right-radius:.28571429em}.a-form-alert .cf-icon-svg{color:#5a5d61;float:left}.a-form-alert_text{display:block;margin-left:1.25em}.a-form-alert__success .cf-icon-svg{color:#20aa3f}.a-form-alert__error .cf-icon-svg{color:#d14124}.a-form-alert__warning .cf-icon-svg{color:#ff9e1b}.a-error-message .cf-icon-svg{color:#5a5d61;float:left}.a-error-message_text{display:block;margin-left:1.25em}.a-error-message__success .cf-icon-svg{color:#20aa3f}.a-error-message__error .cf-icon-svg{color:#d14124}.a-error-message__warning .cf-icon-svg{color:#ff9e1b}.a-label{display:inline-block}.a-label_helper{color:#43484e;font-size:.875em}.a-label_helper__block{display:block;margin-top:.83333333em}.a-label__heading{display:block;font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.55555556em;text-transform:inherit}.h1+.a-label__heading,.h2+.a-label__heading,.h3+.a-label__heading,.h5+.a-label__heading,.h6+.a-label__heading,blockquote+.a-label__heading,dl+.a-label__heading,figure+.a-label__heading,h1+.a-label__heading,h2+.a-label__heading,h3+.a-label__heading,h5+.a-label__heading,h6+.a-label__heading,img+.a-label__heading,ol+.a-label__heading,p+.a-label__heading,table+.a-label__heading,ul+.a-label__heading{margin-top:1.66666667em}@media only all and (max-width:37.5em){.a-label__heading{font-size:1em;line-height:1.125;margin-bottom:.625em}}.a-label__heading .a-label_helper{font-size:.88888889em;font-weight:400}.a-label__heading .a-label_helper__block{margin-top:.625em}.a-legend{box-sizing:border-box;display:table;font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;max-width:100%;text-transform:inherit;white-space:normal}.h1+.a-legend,.h2+.a-legend,.h3+.a-legend,.h5+.a-legend,.h6+.a-legend,blockquote+.a-legend,dl+.a-legend,figure+.a-legend,h1+.a-legend,h2+.a-legend,h3+.a-legend,h5+.a-legend,h6+.a-legend,img+.a-legend,ol+.a-legend,p+.a-legend,table+.a-legend,ul+.a-legend{margin-top:1.66666667em}@media only all and (max-width:37.5em){.a-legend{font-size:1em;line-height:1.125;margin-bottom:.625em}}.a-select{border:1px solid #75787b;position:relative}.a-select select{-webkit-appearance:none;appearance:none;background-color:#fff;border:0;border-radius:0;color:#101820;line-height:1.375;padding:.4375em .375em .375em;width:100%}.a-select select.hover,.a-select select:hover{outline:2px solid #0072ce;outline-offset:0}.a-select select.focus,.a-select select:active,.a-select select:focus{box-shadow:0 0 0 2px #0072ce;outline:1px dotted #0072ce;outline-offset:3px}.a-select select[disabled]{background-color:#e7e8e9;color:#5a5d61;cursor:not-allowed}.a-select select[disabled].focus,.a-select select[disabled].hover,.a-select select[disabled]:focus,.a-select select[disabled]:hover{outline:none}.a-select select option:disabled,.a-select select[disabled] option,.a-select select[disabled] option:disabled{color:#5a5d61}.a-select:after{background-color:#e7e8e9;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 19' fill='%23101820'%3E%3Cpath d='M8.5 15.313a1.026 1.026 0 0 1-.728-.302l-6.8-6.8a1.03 1.03 0 0 1 1.455-1.456L8.5 12.828l6.073-6.073a1.03 1.03 0 0 1 1.455 1.456l-6.8 6.8a1.026 1.026 0 0 1-.728.302z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:auto 1.1875em;border-left:1px solid #75787b;bottom:0;box-sizing:border-box;content:"";pointer-events:none;position:absolute;right:0;top:0;width:2.1875em}.a-select__disabled:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 19' fill='%235A5D61'%3E%3Cpath d='M8.5 15.313a1.026 1.026 0 0 1-.728-.302l-6.8-6.8a1.03 1.03 0 0 1 1.455-1.456L8.5 12.828l6.073-6.073a1.03 1.03 0 0 1 1.455 1.456l-6.8 6.8a1.026 1.026 0 0 1-.728.302z'/%3E%3C/svg%3E")}.a-text-input{-webkit-appearance:none;appearance:none;background:#fff;border:1px solid #75787b;color:#101820;display:inline-block;padding:.4375em}.a-text-input.hover,.a-text-input:hover{border-color:#0072ce;outline:1px solid #0072ce}.a-text-input.focus,.a-text-input:focus{border-color:#0072ce;box-shadow:0 0 0 1px #0072ce;outline:1px dotted #0072ce;outline-offset:2px}.a-text-input:disabled,.a-text-input:disabled.focus,.a-text-input:disabled.hover,.a-text-input:disabled:focus,.a-text-input:disabled:hover{background-color:#e7e8e9;border-color:#75787b;color:#5a5d61;cursor:not-allowed;outline:none}.a-text-input__error{border-color:#d14124;outline:1px solid #d14124}.a-text-input__error.focus,.a-text-input__error:focus{border-color:#d14124;box-shadow:0 0 0 1px #d14124;outline:1px dotted #d14124}.a-text-input__warning{border-color:#ff9e1b;outline:1px solid #ff9e1b}.a-text-input__warning.focus,.a-text-input__warning:focus{border-color:#ff9e1b;box-shadow:0 0 0 1px #ff9e1b;outline:1px dotted #ff9e1b}.a-text-input__success{border-color:#20aa3f;outline:1px solid #20aa3f}.a-text-input__success.focus,.a-text-input__success:focus{border-color:#20aa3f;box-shadow:0 0 0 1px #20aa3f;outline:1px dotted #20aa3f}::-webkit-search-decoration{-webkit-appearance:none;appearance:none}::-webkit-input-placeholder{color:#5a5d61}::placeholder{color:#5a5d61}.m-btn-inside-input{position:relative}.m-btn-inside-input .a-text-input{box-sizing:border-box;padding-right:2.78571429em;width:100%}.m-btn-inside-input .a-btn{border-bottom-width:0!important;color:#75787b;position:absolute;right:1em;top:.57142857em}.m-btn-inside-input .a-btn:hover{color:#101820}.no-js .m-btn-inside-input .a-btn{display:none}.m-form-field .a-text-input__full{box-sizing:border-box;width:100%}.m-form-field .a-label+.a-text-input{margin-top:.3125em}.m-form-field__checkbox .a-label,.m-form-field__radio .a-label{cursor:pointer;
|
|
2
|
+
/*! autoprefixer: ignore next */display:inline-grid;grid-template-columns:1.875em auto;overflow-wrap:anywhere;vertical-align:top}.m-form-field__checkbox .a-label:before,.m-form-field__radio .a-label:before{background-color:#fff;border:1px solid #75787b;content:"";display:inline-block;grid-row-end:3;grid-row-start:1;height:1.125em;left:1px;margin-right:10px;position:relative;top:1px;vertical-align:top;width:1.125em}.m-form-field__checkbox .a-label.hover:before,.m-form-field__checkbox .a-label:hover:before,.m-form-field__radio .a-label.hover:before,.m-form-field__radio .a-label:hover:before{border-color:#0072ce}.m-form-field__checkbox .a-label_helper,.m-form-field__radio .a-label_helper{display:block}.m-form-field__checkbox .a-checkbox,.m-form-field__checkbox .a-radio,.m-form-field__radio .a-checkbox,.m-form-field__radio .a-radio{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.m-form-field__checkbox .a-checkbox.focus+.a-label,.m-form-field__checkbox .a-checkbox:focus+.a-label,.m-form-field__checkbox .a-radio.focus+.a-label,.m-form-field__checkbox .a-radio:focus+.a-label,.m-form-field__radio .a-checkbox.focus+.a-label,.m-form-field__radio .a-checkbox:focus+.a-label,.m-form-field__radio .a-radio.focus+.a-label,.m-form-field__radio .a-radio:focus+.a-label{outline:1px dotted #0072ce;outline-offset:1px}.m-form-field__checkbox .a-checkbox:disabled.focus+.a-label:before,.m-form-field__checkbox .a-checkbox:disabled.hover+.a-label:before,.m-form-field__checkbox .a-checkbox:disabled:checked+.a-label:before,.m-form-field__checkbox .a-checkbox:disabled:focus+.a-label:before,.m-form-field__checkbox .a-checkbox:disabled:hover+.a-label:before,.m-form-field__checkbox .a-radio:disabled.focus+.a-label:before,.m-form-field__checkbox .a-radio:disabled.hover+.a-label:before,.m-form-field__checkbox .a-radio:disabled:checked+.a-label:before,.m-form-field__checkbox .a-radio:disabled:focus+.a-label:before,.m-form-field__checkbox .a-radio:disabled:hover+.a-label:before,.m-form-field__radio .a-checkbox:disabled.focus+.a-label:before,.m-form-field__radio .a-checkbox:disabled.hover+.a-label:before,.m-form-field__radio .a-checkbox:disabled:checked+.a-label:before,.m-form-field__radio .a-checkbox:disabled:focus+.a-label:before,.m-form-field__radio .a-checkbox:disabled:hover+.a-label:before,.m-form-field__radio .a-radio:disabled.focus+.a-label:before,.m-form-field__radio .a-radio:disabled.hover+.a-label:before,.m-form-field__radio .a-radio:disabled:checked+.a-label:before,.m-form-field__radio .a-radio:disabled:focus+.a-label:before,.m-form-field__radio .a-radio:disabled:hover+.a-label:before{border-color:#75787b;box-shadow:none;outline:none}.m-form-field__checkbox .a-checkbox:disabled+.a-label,.m-form-field__checkbox .a-radio:disabled+.a-label,.m-form-field__radio .a-checkbox:disabled+.a-label,.m-form-field__radio .a-radio:disabled+.a-label{color:#5a5d61;cursor:not-allowed}.m-form-field__checkbox .a-checkbox:disabled+.a-label:before,.m-form-field__checkbox .a-radio:disabled+.a-label:before,.m-form-field__radio .a-checkbox:disabled+.a-label:before,.m-form-field__radio .a-radio:disabled+.a-label:before{background:#e7e8e9;border-color:#919395}.m-form-field__checkbox .a-checkbox.focus+.a-label:before,.m-form-field__checkbox .a-checkbox.hover+.a-label:before,.m-form-field__checkbox .a-checkbox:focus+.a-label:before,.m-form-field__checkbox .a-checkbox:hover+.a-label:before{border-color:#0072ce;box-shadow:0 0 0 1px #0072ce}.m-form-field__checkbox .a-checkbox:checked+.a-label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 19' fill='%23101820'%3E%3Cpath d='M4.63 15.638a1.028 1.028 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511.89.89 0 0 1-.088.004z'/%3E%3C/svg%3E");background-position:center 0;background-repeat:no-repeat;background-size:auto 1.1875em}.m-form-field__checkbox .a-checkbox:disabled:checked+.a-label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 19' fill='%235A5D61'%3E%3Cpath d='M4.63 15.638a1.028 1.028 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511.89.89 0 0 1-.088.004z'/%3E%3C/svg%3E")}.m-form-field__radio .a-label:before{border-radius:50%;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.m-form-field__radio .a-radio.focus+.a-label:before,.m-form-field__radio .a-radio.hover+.a-label:before,.m-form-field__radio .a-radio:focus+.a-label:before,.m-form-field__radio .a-radio:hover+.a-label:before{border-color:#0072ce;box-shadow:0 0 0 1px #0072ce;outline:none}.m-form-field__radio .a-radio:checked+.a-label:before{background-color:#0072ce;box-shadow:inset 0 0 0 2px #fff}.m-form-field__radio .a-radio:checked:disabled+.a-label:before{background-color:#b4b5b6;box-shadow:inset 0 0 0 2px #e7e8e9}.m-form-field__radio .a-radio.focus:checked+.a-label:before,.m-form-field__radio .a-radio.hover:checked+.a-label:before,.m-form-field__radio .a-radio:focus:checked+.a-label:before,.m-form-field__radio .a-radio:hover:checked+.a-label:before{border-color:#0072ce;box-shadow:0 0 0 1px #0072ce,inset 0 0 0 2px #fff}.m-form-field__lg-target{display:block}.m-form-field__lg-target .a-label{background-color:#e7e8e9;box-sizing:border-box;padding:15px;width:100%}.m-form-field__lg-target .a-checkbox:checked+.a-label,.m-form-field__lg-target .a-radio:checked+.a-label{background-color:#d6e8fa;box-shadow:inset 0 0 0 1px #0072ce}.m-form-field__lg-target .a-checkbox.focus+.a-label,.m-form-field__lg-target .a-checkbox.hover+.a-label,.m-form-field__lg-target .a-checkbox:focus+.a-label,.m-form-field__lg-target .a-checkbox:hover+.a-label,.m-form-field__lg-target .a-radio.focus+.a-label,.m-form-field__lg-target .a-radio.hover+.a-label,.m-form-field__lg-target .a-radio:focus+.a-label,.m-form-field__lg-target .a-radio:hover+.a-label{box-shadow:inset 0 0 0 2px #0072ce}.m-form-field__lg-target .a-checkbox.focus+.a-label,.m-form-field__lg-target .a-checkbox:checked+.a-label,.m-form-field__lg-target .a-checkbox:focus+.a-label,.m-form-field__lg-target .a-radio.focus+.a-label,.m-form-field__lg-target .a-radio:checked+.a-label,.m-form-field__lg-target .a-radio:focus+.a-label{outline-offset:1px}.m-form-field__lg-target .a-checkbox:checked:disabled+.a-label,.m-form-field__lg-target .a-checkbox:disabled+.a-label,.m-form-field__lg-target .a-checkbox:hover:disabled+.a-label,.m-form-field__lg-target .a-radio:checked:disabled+.a-label,.m-form-field__lg-target .a-radio:disabled+.a-label,.m-form-field__lg-target .a-radio:hover:disabled+.a-label{background-color:#d2d3d5;box-shadow:none;color:#5a5d61}.m-form-field__lg-target .a-checkbox:checked:disabled+.a-label,.m-form-field__lg-target .a-checkbox:checked:disabled+.a-label:before,.m-form-field__lg-target .a-radio:checked:disabled+.a-label,.m-form-field__lg-target .a-radio:checked:disabled+.a-label:before{border:1px solid #919395}.m-form-field .a-error-message,.m-form-field .a-form-alert{margin-top:.9375em}.o-form_group{margin-bottom:1.875em}.o-form_fieldset{border:none;margin:0;padding:0}.o-form_fieldset .m-form-field+.m-form-field{margin-top:.625em}@media only all and (min-width:30em){.o-form__input-w-btn{display:block;margin-left:-15px;margin-right:-15px;position:relative}}.o-form__input-w-btn_input-container{margin-bottom:.9375em}@media only all and (min-width:30em){.o-form__input-w-btn_input-container{border:solid transparent;border-width:0 0 0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top;width:75%}}.o-form__input-w-btn_input-container .a-text-input{box-sizing:border-box;width:100%}.o-form__input-w-btn_input-container .a-error-message,.o-form__input-w-btn_input-container .a-form-alert{margin-top:.9375em}.o-form__input-w-btn_btn-container{margin-bottom:.9375em}.o-form__input-w-btn_btn-container .a-btn{width:100%}@media only all and (min-width:30em){.o-form__input-w-btn_btn-container{border:solid transparent;border-width:0 15px;border-left:0;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top;width:25%}.o-form__input-w-btn_btn-container .a-btn{border-bottom-left-radius:0;border-top-left-radius:0}}select.o-multiselect{border:1px solid #75787b;box-sizing:border-box;display:block;height:5.5em;padding:.25em .4375em;width:100%}select.o-multiselect option{padding:.125em .375em}.o-multiselect,.o-multiselect_header{position:relative}.o-multiselect_header:after{background-color:#e7e8e9;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 19' fill='%23101820'%3E%3Cpath d='M8.5 15.313a1.026 1.026 0 0 1-.728-.302l-6.8-6.8a1.03 1.03 0 0 1 1.455-1.456L8.5 12.828l6.073-6.073a1.03 1.03 0 0 1 1.455 1.456l-6.8 6.8a1.026 1.026 0 0 1-.728.302z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:auto 1.1875em;border:1px solid #75787b;bottom:0;box-sizing:border-box;content:"";pointer-events:none;position:absolute;right:0;top:0;width:2.1875em}.o-multiselect.u-active .o-multiselect_header:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 19' fill='%23101820'%3E%3Cpath d='M15.3 15.32a1.026 1.026 0 0 1-.727-.302L8.5 8.946l-6.073 6.072a1.03 1.03 0 0 1-1.456-1.455l6.801-6.8a1.03 1.03 0 0 1 1.456 0l6.8 6.8a1.03 1.03 0 0 1-.727 1.757z'/%3E%3C/svg%3E")}.o-multiselect_search[type=text]{box-sizing:border-box;display:block;width:100%}.o-multiselect_fieldset{border-color:#75787b;border-top:none;box-sizing:border-box;display:-webkit-box;margin:-1px 0 0;max-height:0;overflow-x:hidden;overflow-y:scroll;padding:0;position:absolute;transition:max-height .25s ease-out;width:100%;z-index:10}.o-multiselect.u-active .o-multiselect_fieldset{border-color:#0072ce;border-width:2px;border-top:0;margin-top:0;max-height:140px}.o-multiselect_options{background-color:#fff;padding:0}.o-multiselect_options li{margin:0}.o-multiselect_options li:first-child .a-label{padding-top:.625em}.o-multiselect_options.u-filtered li:not(.u-filter-match),.o-multiselect_options.u-max-selections li,.o-multiselect_options.u-no-results li{display:none}.o-multiselect_options.u-max-selections:after,.o-multiselect_options.u-no-results:after{display:list-item}.o-multiselect_options.u-no-results:after{content:"No results found"}.o-multiselect_options.u-max-selections{padding:.625em;pointer-events:none}.o-multiselect_options.u-max-selections:after{content:"Reached maximum of five selections"}.o-multiselect_options .a-label{box-sizing:border-box;padding:.3125em 0 .3125em .625em;width:100%}.o-multiselect_choices{margin-bottom:0;margin-right:-.625em;padding-left:0}.o-multiselect_choices li{display:inline-block;margin-right:.625em}.o-multiselect_choices li:last-child{margin-bottom:.625em}.o-multiselect_choices button{background:none;border:none;padding:0}.o-multiselect_choices button:focus{outline:1px dotted #0072ce;outline-offset:1px}.o-multiselect_choices label{background-color:#5674a3;border-radius:.28571429em;color:#fff;cursor:pointer;display:inline-block;font-size:.875em;padding:2px 1.78571429em 2px 5px;position:relative}.o-multiselect_choices label:hover{background-color:#254b87}.o-multiselect_choices label:hover:after{color:#fff}.o-multiselect_choices label .cf-icon-svg{fill:#d3daeb;position:absolute;right:5px;top:2px}.m-card{position:relative}.m-card:not(.m-card__breakout)>a{padding:1.875em}.m-card:not(.m-card__breakout):not(.m-card__highlight):not(.m-card__topic){background:#fff;border:solid #d2d3d5;border-width:1px 1px 3px}.m-card:not(.m-card__featured):not(.m-card__breakout):not(.m-card__topic):not(.m-card__highlight){padding:1.875em}.m-card:not(.m-card__featured):not(.m-card__breakout):not(.m-card__topic):not(.m-card__highlight),.m-card>a{box-sizing:border-box;display:flex;flex-basis:0;flex-direction:column;flex-grow:1;height:100%}.m-card a:focus{outline-offset:2px}.m-card:not(.m-card__highlight)_footer{margin-top:auto}.m-card_footer>a{border-bottom-width:1px;font-weight:500}@media only all and (max-width:56.3125em){.m-card_heading{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}.h1+.m-card_heading,.h2+.m-card_heading,.h4+.m-card_heading,.h5+.m-card_heading,.h6+.m-card_heading,blockquote+.m-card_heading,dl+.m-card_heading,figure+.m-card_heading,h1+.m-card_heading,h2+.m-card_heading,h4+.m-card_heading,h5+.m-card_heading,h6+.m-card_heading,img+.m-card_heading,ol+.m-card_heading,p+.m-card_heading,table+.m-card_heading,ul+.m-card_heading{margin-top:1.36363636em}}@media only all and (max-width:56.3125em) and only all and (max-width:37.5em){.m-card_heading{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;text-transform:inherit}}.m-card_heading>a{color:#101820}.m-card_heading>a:hover{color:#0072ce}.m-card_heading>a .m-card_icon{font-size:1em;margin-bottom:0;padding-right:.46875em}.m-card_heading>a .m-card_icon,.m-card_heading>a span{display:table-cell}.m-card>.m-list{margin-bottom:30px;margin-top:10px}.m-card__featured .m-card_heading{margin:0}.m-card__featured .m-card_icon{font-size:1.875em;margin-bottom:.3125em}.m-card__featured .m-card_icon,.m-card__featured p{color:#101820}.m-card__featured:hover{box-shadow:inset 0 8px 0 0 #20aa3f,inset 2px 0 0 0 #d2d3d5,inset -2px 0 0 0 #d2d3d5}.m-card__featured:hover .m-card_footer>span{border-style:solid;color:#0050b4}.m-card__featured .m-card_footer>span{border:dotted #0072ce;border-width:0 0 1px;color:#0072ce;display:inline;font-weight:500;text-decoration:none}.m-card__featured>a:visited .m-card_footer>span{border-color:#257675!important;color:#257675}.m-card__featured>a:link,.m-card__featured>a:visited{border:solid #d2d3d5;border-width:1px 1px 3px}.m-card__topic{background:#fff;text-align:center;width:170px}.m-card__topic>a{border:solid #d2d3d5;border-width:1px 1px 3px}.m-card__topic .m-card_icon{color:#20aa3f;font-size:1.875em;margin-bottom:.3125em}.m-card__topic:hover>a{box-shadow:inset 0 2px 0 0 #d2d3d5,inset 2px 0 0 0 #d2d3d5,inset -2px 0 0 0 #d2d3d5}.m-card__topic:hover:after{background:#20aa3f;bottom:1px;content:"";height:5px;left:0;position:absolute;width:100%}.m-card__topic .m-card_footer>span{border:dotted #0072ce;border-width:0 0 1px;color:#0072ce;display:inline;font-weight:500;text-decoration:none}.m-card__topic>a:visited .m-card_footer>span{border-color:#257675;color:#257675}.m-card__topic:hover .m-card_footer>span{border-color:#0050b4;border-style:solid;color:#0050b4}.m-card__topic>a:focus .m-card_footer>span{border-color:#0050b4;color:#0050b4}.m-card__topic>a:active .m-card_footer>span{border-color:#0050b4;border-style:solid;color:#0050b4}.m-card__topic-action .m-card_icon{color:#0072ce}.m-card__breakout{min-width:210px;text-align:center}.m-card__breakout>a{padding-top:60px}.m-card__breakout .m-card_inner-wrapper{background:#f7f8f9;border:solid #d2d3d5;border-width:1px 1px 3px;min-height:135px;position:relative;z-index:0}.m-card__breakout .m-card_img{height:120px;left:50%;margin-left:-105px;position:absolute;top:0;width:210px;z-index:1}.m-card__breakout .m-card_footer{margin-top:84px}.m-card__breakout:hover .m-card_inner-wrapper{box-shadow:inset 0 2px 0 0 #d2d3d5,inset 2px 0 0 0 #d2d3d5,inset -2px 0 0 0 #d2d3d5}.m-card__breakout:hover:after{background:#20aa3f;bottom:1px;content:"";height:5px;left:0;position:absolute;width:100%}.m-card__breakout .m-card_footer>span{border:dotted #0072ce;border-width:0 0 1px;color:#0072ce;display:inline;font-weight:500;text-decoration:none}.m-card__breakout>a:visited .m-card_footer>span{border-color:#257675;color:#257675}.m-card__breakout:hover .m-card_footer>span{border-color:#0050b4;border-style:solid;color:#0050b4}.m-card__breakout>a:focus .m-card_footer>span{border-color:#0072ce;color:#0072ce}.m-card__breakout>a:active .m-card_footer>span{border-color:#254b87;border-style:solid;color:#254b87}.m-card__breakout .m-card_footer>span{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}.m-card__highlight{background:#e2efd8}.m-card__highlight>a{border:solid #c7e5b3;border-width:1px 1px 3px}.m-card__highlight h3,.m-card__highlight p{color:#101820}.m-card__highlight:hover>a{box-shadow:inset 0 2px 0 0 #c7e5b3,inset 2px 0 0 0 #c7e5b3,inset -2px 0 0 0 #c7e5b3}.m-card__highlight:hover:after{background:#20aa3f;bottom:1px;content:"";height:5px;left:0;position:absolute;width:100%}.m-card__highlight .m-card_footer>span{border:dotted #0061c1;border-width:0 0 1px;color:#0061c1;display:inline;font-weight:500;text-decoration:none}.m-card__highlight>a:visited .m-card_footer>span{border-color:#126b69;color:#126b69}.m-card__highlight:hover .m-card_footer>span{border-color:#0050b4;border-style:solid;color:#0050b4}.m-card__highlight>a:focus .m-card_footer>span{border-color:#0061c1;color:#0061c1}.m-card__highlight>a:active .m-card_footer>span{border-color:#254b87;border-style:solid;color:#254b87}.m-hero{background-color:#f7f8f9}.m-hero_wrapper{display:grid;margin:0 auto;max-width:1200px;padding-bottom:30px;padding-top:30px}@media only all and (min-width:37.5625em){.m-hero_wrapper{grid-template-columns:7fr 5fr;min-height:225px;padding-left:15px;padding-right:15px}}@media only all and (min-width:63.8125em){.m-hero_wrapper{min-height:195px;padding-bottom:2.8125em;padding-top:2.8125em}}.m-hero_text{padding-left:15px;padding-right:15px}@media only all and (min-width:37.5625em){.m-hero_text{margin:auto}}.m-hero_heading{font-size:2.125em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.44117647em;text-transform:inherit}@media only all and (max-width:56.25em){.m-hero_heading{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}}.m-hero_subhead{font-size:22px;line-height:1.25}@media only all and (max-width:56.25em){.m-hero_subhead{font-size:18px}}.m-hero_image-wrapper{box-sizing:border-box;overflow:hidden}@media only all and (min-width:37.5625em){.m-hero_image-wrapper{align-items:center;display:flex;padding-left:15px;padding-right:15px}}@media only all and (max-width:37.5em){.m-hero_image-wrapper{margin-top:1.875em}}.m-hero_image{background-position:50%;background-repeat:no-repeat;background-size:contain;display:none;width:100%}@supports (display:grid){.m-hero_image{display:block}}.m-hero__knockout{background-color:#5a5d61;color:#fff}@media only all and (min-width:37.5625em){.m-hero__bleeding .m-hero_image-wrapper{margin-bottom:-1.875em;margin-top:-1.875em;width:100%}.m-hero__bleeding .m-hero_image{background-size:cover;height:100%;padding-bottom:0!important;width:100%}}@media only all and (min-width:63.8125em){.m-hero__bleeding .m-hero_image-wrapper{margin-bottom:-2.8125em;margin-top:-2.8125em}}.m-hero__overlay .m-hero_wrapper{background-position:50%;background-repeat:no-repeat;background-size:cover}@media only all and (max-width:37.5em){.m-hero__overlay .m-hero_wrapper{background-image:none!important}}@media only all and (min-width:37.5625em){.m-hero__overlay .m-hero_image{display:none}}.m-hero__jumbo{background-color:#fff}.m-hero__jumbo .m-hero_subhead{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;margin-top:1.36363636em;text-transform:inherit}@media only all and (max-width:37.5em){.m-hero__jumbo .m-hero_subhead{font-size:1.125em;margin-top:1.66666667em}}@media only all and (min-width:37.5625em){.m-hero__jumbo .m-hero_subhead{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}}@media only all and (min-width:63.8125em){.m-hero__jumbo .m-hero_wrapper{min-height:285px}.m-hero__jumbo .m-hero_heading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.41666667em}.m-hero__jumbo .m-hero_subhead{font-size:1.625em;font-weight:600;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}}@media only all and (min-width:37.5625em){.m-hero__jumbo .m-hero_wrapper{background-position:50%;background-repeat:no-repeat;background-size:cover}.m-hero__jumbo .m-hero_image{display:none}}@media only all and (max-width:37.5em){.m-hero__jumbo .m-hero_wrapper{padding-bottom:0}}.m-hero__50-50{background-color:#fff}.m-hero__50-50 .m-hero_subhead{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;margin-top:1.36363636em;text-transform:inherit}@media only all and (max-width:37.5em){.m-hero__50-50 .m-hero_subhead{font-size:1.125em;margin-top:1.66666667em}}@media only all and (min-width:37.5625em){.m-hero__50-50 .m-hero_subhead{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}}@media only all and (min-width:63.8125em){.m-hero__50-50 .m-hero_wrapper{min-height:285px}.m-hero__50-50 .m-hero_heading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.41666667em}.m-hero__50-50 .m-hero_subhead{font-size:1.625em;font-weight:600;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}}@media only all and (min-width:37.5625em){.m-hero__50-50 .m-hero_wrapper{background-position:100%;background-repeat:no-repeat;background-size:50%;border:1px solid #b4b5b6;border-top:none;grid-template-columns:1fr 1fr}.m-hero__50-50 .m-hero_image{display:none}}@media only all and (min-width:63.8125em){.m-hero__50-50 .m-hero_wrapper{min-height:345px}}.o-card-group>h2{margin-bottom:1.875rem}.o-card-group__column-2 .o-card-group_cards{grid-template-columns:1fr 1fr}.o-card-group__column-3 .o-card-group_cards{grid-template-columns:repeat(3,minmax(0,1fr))}@media only all and (max-width:63.8125em){.o-card-group__column-3 .o-card-group_cards{grid-template-columns:1fr 1fr}}.o-card-group_cards{grid-column-gap:1.25em;grid-row-gap:1.25em;display:grid}@media only all and (max-width:37.5em){.o-card-group_cards{grid-template-columns:100%!important}}.o-card-group__bg-green{background:#e2efd8;padding:1.875em}.o-card-group_cards,_:-ms-lang(x){display:block}.o-card-group_cards .m-card,_:-ms-lang(x) .m-card{display:block;float:left;margin-bottom:10px}.o-card-group__column-2 .o-card-group_cards .m-card,_:-ms-lang(x) .o-card-group_cards .m-card{margin-right:2%;width:48%}.o-card-group__column-2 .o-card-group_cards .m-card:last-child,_:-ms-lang(x) .o-card-group_cards .m-card:last-child{margin-right:0}.o-card-group__column-3 .o-card-group_cards .m-card,_:-ms-lang(x) .o-card-group_cards .m-card{margin-right:1%;width:32%}.o-card-group__column-3 .o-card-group_cards .m-card:last-child,_:-ms-lang(x) .o-card-group_cards .m-card:last-child{margin-right:0}.o-card-group:after,_:-ms-lang(x){clear:both;content:"";display:table}.o-card-group__count-2 .m-card:first-of-type,.o-card-group__count-3 .m-card:first-of-type,.o-card-group__count-4 .m-card:first-of-type{grid-area:card1}.o-card-group__count-2 .m-card:nth-of-type(2),.o-card-group__count-3 .m-card:nth-of-type(2),.o-card-group__count-4 .m-card:nth-of-type(2){grid-area:card2}.o-card-group__count-2 .m-card:nth-of-type(3),.o-card-group__count-3 .m-card:nth-of-type(3),.o-card-group__count-4 .m-card:nth-of-type(3){grid-area:card3}.o-card-group__count-2 .m-card:nth-of-type(4),.o-card-group__count-3 .m-card:nth-of-type(4),.o-card-group__count-4 .m-card:nth-of-type(4){grid-area:card4}.o-card-group__count-2 .o-card-group_cards{grid-template-areas:"card1 card2";grid-template-columns:1fr 1fr}.o-card-group__count-3 .o-card-group_cards{grid-template-areas:"card1 card2" "card1 card3";grid-template-columns:1fr 1fr}.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}blockquote+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,dl+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,figure+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,img+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,ol+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,p+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,table+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,ul+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3{margin-top:1.73076923em}.h1+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,.h3+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,.h4+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,.h5+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,.h6+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,h1+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,h3+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,h4+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,h5+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,h6+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3{margin-top:1.15384615em}@media only all and (max-width:37.5em){.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}blockquote+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,dl+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,figure+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,img+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,ol+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,p+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,table+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3,ul+.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type h3{margin-top:1.36363636em}}.o-card-group__count-3 .o-card-group_cards .m-card:first-of-type>a{justify-content:center}.o-card-group__count-4 .o-card-group_cards{grid-template-areas:"card1 card2" "card3 card4";grid-template-columns:1fr 1fr}.o-card-group__flow .o-card-group_cards{display:flex;flex-wrap:wrap}@media only all and (min-width:37.5625em) and (max-width:56.25em){.o-card-group__count-3 .o-card-group_cards{grid-template-areas:"card1 card1" "card2 card3";grid-template-columns:1fr 1fr}}@media only all and (max-width:37.5em){.o-card-group__count-2 .o-card-group_cards{grid-template-areas:"card1" "card2";grid-template-columns:1fr}.o-card-group__count-3 .o-card-group_cards{grid-template-areas:"card1" "card2" "card3";grid-template-columns:1fr}.o-card-group__count-4 .o-card-group_cards{grid-template-areas:"card1" "card2" "card3" "card4";grid-template-columns:1fr}.o-card-group__flow .o-card-group_cards{display:block}.o-card-group__flow .o-card-group_cards .m-card{margin-bottom:1.875em;width:100%}}.o-featured-content-module{background-color:#f7f8f9;border:1px solid #b4b5b6;min-height:220px;position:relative}.o-featured-content-module_text{padding-bottom:1.875em;padding-top:1.875em}.o-featured-content-module_img{display:block}@media only all and (max-width:37.5em){.o-featured-content-module_text,.o-featured-content-module_visual{padding-left:.9375em;padding-right:.9375em}.o-featured-content-module_visual{padding-bottom:.9375em}.o-featured-content-module_img{margin-left:auto;margin-right:auto}}@media only all and (min-width:37.5625em){.o-featured-content-module_text{padding-left:1.875em;padding-right:300px}.o-featured-content-module_visual{height:100%;overflow:hidden;position:absolute;right:0;top:0;width:270px}.o-featured-content-module_img{height:100%;left:50%;max-width:none;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}.o-featured-content-module__left{background-color:initial;border:initial}.o-featured-content-module__left .o-featured-content-module_visual{left:0;right:auto}@media only all and (min-width:37.5625em){.o-featured-content-module__left .o-featured-content-module_text{padding-left:300px;padding-right:1.875em}}.o-well{background-color:#f7f8f9;border:1px solid #b4b5b6;box-sizing:border-box;padding:1.875em .9375em}@media only all and (min-width:37.5625em){.o-well{padding-left:1.875em;padding-right:1.875em}}.o-well__inkwell{background-color:#43484e;border:none;color:#fff}.o-well__inkwell a{border-color:#afd2f2;color:#afd2f2}.o-well__inkwell a.visited,.o-well__inkwell a:visited{border-color:#b4d2d1;color:#b4d2d1}.o-well__inkwell a.hover,.o-well__inkwell a:hover{border-color:#96c4ed;color:#96c4ed}.o-well__inkwell a.focus,.o-well__inkwell a:focus{border-color:#afd2f2;color:#afd2f2}.o-well__inkwell a.active,.o-well__inkwell a:active{border-color:#b3c0d9;color:#b3c0d9}.o-well__inkwell .a-tagline{margin-bottom:.9375em;max-width:41.875rem}.o-email-signup .m-notification{margin-bottom:.9375em}.o-email-signup .a-text-input{max-width:23.125rem}.o-email-signup .m-btn-group{align-items:flex-start;display:flex;flex-wrap:wrap-reverse;margin-top:.9375em}.o-email-signup button{margin-right:.625em}.o-email-signup .a-btn.a-btn__secondary{margin-bottom:.5em;margin-left:0;order:1}@media only all and (max-width:37.5em){.o-email-signup .a-label__heading{font-size:1em}}.content-l{position:relative}@media only all and (min-width:37.5625em){.content-l{display:block;margin-left:-15px;margin-right:-15px;position:relative}}@media only all and (min-width:37.5625em) and (max-width:47.9375em){.content-l__full .content-l_col.content-l_col-1-3{display:block;width:100%}.content-l__full .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-1-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-1-3{margin-top:1.875em}.content-l__full .content-l_col.content-l_col-2-3{display:block;width:100%}.content-l__full .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-2-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-2-3{margin-top:1.875em}.content-l__full .content-l_col.content-l_col-3-8{display:block;width:100%}.content-l__full .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-3-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-3-8{margin-top:1.875em}.content-l__full .content-l_col.content-l_col-5-8{display:block;width:100%}.content-l__full .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-5-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-5-8{margin-top:1.875em}.content-l__full .content-l_col.content-l_col-1-4{display:block;width:100%}.content-l__full .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-1-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-1-4{margin-top:1.875em}.content-l__full .content-l_col.content-l_col-3-4{display:block;width:100%}.content-l__full .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__full .content-l_col.content-l_col-3-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__full.content-l__large-gutters .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:30px}.content-l__full .content-l_col+.content-l_col-3-4{margin-top:1.875em}}@media only all and (min-width:56.3125em) and (max-width:63.75em){.content-l__main .content-l_col.content-l_col-1-2{display:block;width:100%}.content-l__main .content-l_col.content-l_col-1-2.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-1-2.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-1-2.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-1-2{margin-top:1.875em}}@media only all and (min-width:37.5625em) and (max-width:56.25em){.content-l__main .content-l_col.content-l_col-1-3{display:block;width:100%}.content-l__main .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-1-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-1-3{margin-top:1.875em}.content-l__main .content-l_col.content-l_col-2-3{display:block;width:100%}.content-l__main .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-2-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-2-3{margin-top:1.875em}.content-l__main .content-l_col.content-l_col-3-8{display:block;width:100%}.content-l__main .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-3-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-3-8{margin-top:1.875em}.content-l__main .content-l_col.content-l_col-5-8{display:block;width:100%}.content-l__main .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-5-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-5-8{margin-top:1.875em}.content-l__main .content-l_col.content-l_col-1-4{display:block;width:100%}.content-l__main .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-1-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-1-4{margin-top:1.875em}.content-l__main .content-l_col.content-l_col-3-4{display:block;width:100%}.content-l__main .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__main .content-l_col.content-l_col-3-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__main.content-l__large-gutters .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:30px}.content-l__main .content-l_col+.content-l_col-3-4{margin-top:1.875em}}.content-l__sidebar .content-l_col.content-l_col-1-3{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-1-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-1-3.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-1-3{margin-top:1.875em}.content-l__sidebar .content-l_col.content-l_col-2-3{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-2-3.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-2-3.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-2-3{margin-top:1.875em}.content-l__sidebar .content-l_col.content-l_col-3-8{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-3-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-3-8.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-3-8{margin-top:1.875em}.content-l__sidebar .content-l_col.content-l_col-5-8{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-5-8.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-5-8.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-5-8{margin-top:1.875em}.content-l__sidebar .content-l_col.content-l_col-1-4{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-1-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-1-4.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-1-4{margin-top:1.875em}.content-l__sidebar .content-l_col.content-l_col-3-4{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-3-4.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-3-4.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-3-4{margin-top:1.875em}@media only all and (min-width:56.3125em){.content-l__sidebar .content-l_col.content-l_col-1-2{display:block;width:100%}.content-l__sidebar .content-l_col.content-l_col-1-2.content-l_col__before-divider{border-left-width:15px;margin-top:3.75em}.content-l__sidebar .content-l_col.content-l_col-1-2.content-l_col__before-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.content-l__sidebar.content-l__large-gutters .content-l_col.content-l_col-1-2.content-l_col__before-divider{border-left-width:30px}.content-l__sidebar .content-l_col+.content-l_col-1-2{margin-top:1.875em}}@media only all and (min-width:37.5625em){.content-l__large-gutters{margin-left:-30px;margin-right:-30px}.content-l__large-gutters>.content-l_col{border-left-width:30px;border-right-width:30px}}@media only all and (max-width:37.5em){.content-l_col+.content-l_col{margin-top:1.875em}}@media only all and (min-width:37.5625em){.content-l_col-1{width:100%}.content-l_col-1,.content-l_col-1-2{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.content-l_col-1-2{width:50%}.content-l_col-1-3{width:33.33333333%}.content-l_col-1-3,.content-l_col-2-3{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.content-l_col-2-3{width:66.66666667%}.content-l_col-3-8{width:37.5%}.content-l_col-3-8,.content-l_col-5-8{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.content-l_col-5-8{width:62.5%}.content-l_col-1-4{width:25%}.content-l_col-1-4,.content-l_col-3-4{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.content-l_col-3-4{width:75%}}@media only all and (max-width:37.5em){.content-l_col__before-divider.content-l_col-1-2{border-left-width:15px;margin-top:3.75em}.content-l_col__before-divider.content-l_col-1-2:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}}@media only all and (min-width:37.5625em){.content-l_col__before-divider.content-l_col-1-2{border-left-width:30px}.content-l_col__before-divider.content-l_col-1-2:before{background-color:#b4b5b6;bottom:0;content:"";display:block;margin-left:-30px;position:absolute;top:0;width:1px}}@media only all and (max-width:37.5em){.content-l_col__before-divider.content-l_col-1-3{border-left-width:15px;margin-top:3.75em}.content-l_col__before-divider.content-l_col-1-3:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}}@media only all and (min-width:37.5625em){.content-l_col__before-divider.content-l_col-1-3{border-left-width:30px}.content-l_col__before-divider.content-l_col-1-3:before{background-color:#b4b5b6;bottom:0;content:"";display:block;margin-left:-30px;position:absolute;top:0;width:1px}}.content_line{background:#b4b5b6;height:1px}.content_intro dd,.content_intro dt,.content_intro h3,.content_intro h4,.content_intro h5,.content_intro h6,.content_intro label,.content_intro li,.content_intro p,.content_main dd,.content_main dt,.content_main h3,.content_main h4,.content_main h5,.content_main h6,.content_main label,.content_main li,.content_main p{max-width:41.875rem}.content_intro,.content_main,.content_sidebar{padding:1.875em .9375em}@media only all and (min-width:37.5625em){.content_intro,.content_main,.content_sidebar{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;padding:2.8125em .9375em;vertical-align:top;width:100%}}@media only all and (min-width:56.3125em){.content_intro,.content_main,.content_sidebar{padding:2.8125em 0}.content_intro{width:100%}.content__1-3 .content_sidebar,.content_intro{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.content__1-3 .content_sidebar{padding-right:1.875em;width:25%}.content__1-3 .content_main{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;position:relative;vertical-align:top;width:75%}.content__1-3 .content_main:after{border-left:1px solid #b4b5b6;bottom:0;content:"";left:-1.875em;position:absolute;top:2.8125em}.content__2-1 .content_main{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top;width:66.66666667%}.content__2-1 .content_main:after{right:-1.875em}.content__2-1 .content_sidebar{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;padding-left:1.875em;vertical-align:top;width:33.33333333%}}@media only all and (min-width:63.8125em){.content__2-1 .content_main__narrow{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;padding-right:8.33333333%;vertical-align:top;width:66.66666667%}}.content__flush-bottom{padding-bottom:0}@media only all and (max-width:56.25em){.content__flush-top-on-small{padding-top:0}.content__flush-all-on-small{border:none;padding:0}}.block{margin-bottom:3.75em;margin-top:3.75em}.block__border-top{border-top:1px solid #b4b5b6}.block__border-right{border-right:1px solid #b4b5b6}.block__border-bottom{border-bottom:1px solid #b4b5b6}.block__border-left{border-left:1px solid #b4b5b6}.block__border{border:1px solid #b4b5b6}.block__flush-top{margin-top:0!important}.block__flush-top.block__border,.block__flush-top.block__border-top{border-top:none}.block__flush-bottom{margin-bottom:0!important}.block__flush-bottom.block__border,.block__flush-bottom.block__border-bottom{border-bottom:none}.block__flush-sides{margin-left:-15px;margin-right:-15px}@media only all and (max-width:37.5em){.block__flush-sides.block__border,.block__flush-sides.block__border-left,.block__flush-sides.block__border-right{border-left:none;border-right:none}}@media only all and (min-width:37.5625em){.block__flush-sides{margin-left:-30px;margin-right:-30px}}.block__flush{margin-bottom:0!important;margin-left:-15px;margin-right:-15px;margin-top:0!important}.block__flush.block__border,.block__flush.block__border-bottom,.block__flush.block__border-top{border-bottom:none;border-top:none}@media only all and (max-width:37.5em){.block__flush.block__border,.block__flush.block__border-left,.block__flush.block__border-right{border-left:none;border-right:none}}@media only all and (min-width:37.5625em){.block__flush{margin-left:-30px;margin-right:-30px}}.block__bg{background:#e7e8e9;padding:1.875em .9375em 3.75em}@media only all and (min-width:37.5625em){.block__bg{padding:2.8125em 1.875em}}.block__padded-top{margin-top:1.875em;padding-top:1.875em}.block__padded-bottom{margin-bottom:1.875em;padding-bottom:1.875em}.block__sub{margin-bottom:1.875em;margin-top:1.875em}@media only all and (min-width:37.5625em){.content-l_col.block,.content-l_col.block__sub{margin-top:0}}.content__bleedbar .content_main:after{content:none}.content__bleedbar .content_sidebar{background:#e7e8e9;padding:1.875em .9375em}@media only all and (min-width:56.3125em){.content__bleedbar{overflow:hidden}.content__bleedbar .content_sidebar{background:transparent;margin-left:0;padding:2.8125em 0 .9375em 1.875em;position:relative;z-index:1}.content__bleedbar .content_wrapper{position:relative}.content__bleedbar .content_wrapper:after{background:#e7e8e9;border-left:1px solid #b4b5b6;content:"";display:block;height:100%;margin-left:10px;position:absolute;top:0;width:9999px;z-index:0}.content__bleedbar.content__2-1 .content_wrapper:after{left:66.66666667%}.content__bleedbar.content__3-1 .content_wrapper:after{left:75%}.content_wrapper,.wrapper{clear:both;margin:0 auto;max-width:1200px;padding-left:15px;padding-right:15px}}.content_wrapper__match-content,.wrapper__match-content{padding-left:15px;padding-right:15px}@media only all and (min-width:37.5625em){.content_wrapper__match-content,.wrapper__match-content{max-width:1200px;padding-left:30px;padding-right:30px}}.grid_column__top-divider{border-left-width:15px;margin-top:3.75em}.grid_column__top-divider:before{background-color:#b4b5b6;content:"";display:block;height:1px;margin-bottom:1.875em;margin-left:auto!important;position:static;width:100%}.grid_column__left-divider{border-left-width:30px}.grid_column__left-divider:before{background-color:#b4b5b6;bottom:0;content:"";display:block;margin-left:-30px;position:absolute;top:0;width:1px}.a-date{color:#5a5d61;font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.07142857em;text-transform:uppercase;white-space:nowrap}.a-heading__icon{color:#101820;font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;text-transform:inherit}a.a-heading__icon{border-width:0}a.a-heading__icon,a.a-heading__icon.visited,a.a-heading__icon:visited{border-color:#101820;color:#101820}a.a-heading__icon.focus,a.a-heading__icon.hover,a.a-heading__icon:focus,a.a-heading__icon:hover{border-color:#7eb7e8;color:#7eb7e8}a.a-heading__icon.active,a.a-heading__icon:active{border-color:#101820;color:#101820}.a-heading__icon .cf-icon{margin-right:.11111111em}.a-link__icon,.a-link__jump{border-bottom-width:0}.a-link__icon .a-link_text,.a-link__jump .a-link_text{border-bottom-style:inherit;border-bottom-width:1px}.a-link__icon.a-link__no-wrap,.a-link__jump.a-link__no-wrap{white-space:nowrap}.a-link__jump{font-weight:500}.a-link__jump.a-link__large{font-size:1.125em}@media only all and (max-width:37.5em){.a-link__jump{border-bottom-width:1px;border-top-width:1px;box-sizing:border-box;display:block;padding-bottom:.625em;padding-top:.625em;position:relative;text-align:left;width:100%}.a-link__jump .a-link_text{border-bottom-width:0}.a-link__jump .cf-icon-svg{bottom:50%;margin-bottom:-.6em;position:absolute}.a-link__jump.a-link__icon-after-text{padding-right:1.25em}.a-link__jump.a-link__icon-after-text .cf-icon-svg{right:0}.a-link__jump.a-link__icon-before-text{padding-left:1.25em}.a-link__jump.a-link__icon-before-text .cf-icon-svg{left:0}.a-link__jump.a-link__bg{background:#f7f8f9;border:solid #b4b5b6;border-width:1px 0}.a-link__jump.a-link__bg.a-link__icon-after-text .cf-icon-svg{right:1em}.a-link__jump.a-link__bg.a-link__icon-before-text .cf-icon-svg{left:1em}.a-link__jump.a-link__bg.a-link__icon-after-text{padding-left:1em;padding-right:2.25em}.a-link__jump.a-link__bg.a-link__icon-before-text{padding-left:2.25em;padding-right:1em}}.u-block-link{border-bottom-width:1px;border-top-width:1px;box-sizing:border-box;display:block;padding-bottom:.625em;padding-top:.625em;text-align:left;width:100%}.u-block-link .a-link_text{border-bottom-width:0}.a-micro-copy{color:#101820;font-size:.875em}.a-tagline{grid-column-gap:10px;display:grid;font-size:.75rem;grid-template-columns:22px 1fr}.a-tagline_text{display:inline-block}.a-tagline .u-usa-flag{margin-top:1px}.a-tagline__large{font-size:1rem}.a-tagline__large .u-usa-flag{margin-top:4px}.a-tagline__xlarge{grid-column-gap:30px;font-size:1.625rem;grid-template-columns:40px 1fr}.a-tagline__xlarge .u-usa-flag{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAqCAMAAAATdiw4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADlQTFRF////sxlC2YyhCjFhKUt1R2WJGT5rhZiwOFh/Zn6co7LEdYum0djhV3GS8PL1wszYsr/O4OXrlKW6gKQKnwAAAUhJREFUeNrslM2OwzAIhN2OHf/HSd//YXfYqGroZWWUS9XlgPgOGRmY4IAFjOXIr/Qsb5PhkEbglzHy4zAS3tkg6CIFWqNAdCKoeV7Qp4SIEJhS8iFohpsNGVVxGciuAH7f/ZlhEUzo0TNiZ1mrZoNgXuVlrcnLVnmZ5vtkcIYj0x6lMOXhl0WzYSmM2DrQG7frS/Fnhk2wrlTxa2U5hmZDy6kE9lkruw0lea/ZsJTkHjTyvtPIj8PYiucF6WVk9M7062rNNmNvjuOqbpPByfhebFpKQj6MnFnGqNkgWNftaeRNFvvGhuMwKj28bUz1MPaZbTOMTX65s7GfDKOgEyPLHURrmi2CD7DR3tmslF6z4U8JcvcOIxfH6//GhqV0qiBzaghdWtU8LRj+iOmWvzBuF8cHCH5h3C+OD9jy5S3/H4cvOA4/AgwAabgYexE/bU4AAAAASUVORK5CYII=);height:21px;margin-top:6px;width:40px}@media only all and (max-width:37.5em){.a-tagline__xlarge{grid-row-gap:30px;font-size:1.375rem;grid-template-columns:none;grid-template-rows:22px 1fr}}.u-usa-flag{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAZCAMAAABAf11LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5QTFRF////sxlC7MbQ2YyhxlNxCjFhR2WJV3GSKUt1dYumOFh/GT5rhZiwwszYsr/OlKW6Zn6c0djh8PL1iR9Ko7LE4OXrl0pttKC0pXWRtYKbSuJhRQAAANFJREFUeNrkkctuwyAUREnSuW/ApHYf//+jBVdZVcJi3aORgAXcMyLBAAJEzsVG3m8TkifyI3zfPQ6nJJLo421CArSBmkgjNEWtQE4zXJmClXuCWIlU5hdQxCqbqnE1KdIz79CVDvBwZxyKfQfmHTyzl01UZSvOWSTbhZLSWeDMufWLC/1ls3amT4qQq394EjIjApxBT+/nr8eEBNuKcB9SWMpmEXalNOylmlUZNTr4vE/4VdKhpC+leQf6y/e0wzL3RdJtkfUJyzwW+ZcdfgQYAJmJD3zerW6OAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:contain;display:inline-block;height:13px;width:24px}.m-list__horizontal,.m-list__links,.m-list__unstyled{list-style-type:none;padding-left:0}.m-list__horizontal .m-list_item,.m-list__links .m-list_item,.m-list__unstyled .m-list_item{margin-left:0}.m-list__spaced .m-list__spaced,.m-list__spaced .m-list_item+.m-list_item{margin-top:1.5em}.m-list__horizontal .m-list_item{display:inline-block;margin-bottom:0;margin-right:.25em}@media only all and (max-width:37.5em){.m-list__links .m-list_item{margin-bottom:0}.m-list__links .m-list_item:nth-child(n+2) .m-list_link{border-top-width:0}}.m-list__links .m-list_link{font-weight:500}@media only all and (max-width:37.5em){.m-list__links .m-list_link{border-bottom-width:1px;border-top-width:1px;box-sizing:border-box;display:block;padding-bottom:.625em;padding-top:.625em;text-align:left;width:100%}.m-list__links .m-list_link .a-link_text{border-bottom-width:0}}.m-meta-header{border-bottom:1px solid #b4b5b6;overflow:auto;padding-bottom:.625em}@media only all and (min-width:37.5625em){.m-meta-header:after{clear:both;content:"";display:table}.m-meta-header_left{float:left}.m-meta-header_right{float:right}}.m-meta-header .a-heading{margin-bottom:0}.m-pull-quote_body{color:#101820;font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}@media only all and (max-width:37.5em){.m-pull-quote_body{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.83333333em;text-transform:inherit}}.m-pull-quote_citation{color:#75787b;font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.07142857em;text-transform:uppercase}.m-pull-quote_citation:before{content:"\2014 "}.m-pull-quote__large .m-pull-quote_body{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.57692308em;text-transform:inherit}@media only all and (max-width:37.5em){.m-pull-quote__large .m-pull-quote_body{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.68181818em;text-transform:inherit}}.m-slug-header{border-top:1px solid #b4b5b6}.m-slug-header .a-heading{border-top:5px solid #20aa3f;display:inline-block;font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.07142857em;margin-top:-3px;padding-top:.28571429em;text-transform:uppercase}@font-face{font-display:fallback;font-family:AvenirNextLTW01-Regular;font-style:normal;font-weight:400;src:url(/static/fonts/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2) format("woff2"),url(/static/fonts/1e9892c0-6927-4412-9874-1b82801ba47a.woff) format("woff")}@font-face{font-display:fallback;font-family:AvenirNextLTW01-Medium;font-style:normal;font-weight:500;src:url(/static/fonts/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2) format("woff2"),url(/static/fonts/f26faddb-86cc-4477-a253-1e1287684336.woff) format("woff")}@font-face{font-display:fallback;font-family:Avenir Next;font-style:normal;font-weight:400;src:url(/static/fonts/2cd55546-ec00-4af9-aeca-4a3cd186da53.woff2) format("woff2"),url(/static/fonts/1e9892c0-6927-4412-9874-1b82801ba47a.woff) format("woff")}@font-face{font-display:fallback;font-family:Avenir Next;font-style:normal;font-weight:500;src:url(/static/fonts/627fbb5a-3bae-4cd9-b617-2f923e29d55e.woff2) format("woff2"),url(/static/fonts/f26faddb-86cc-4477-a253-1e1287684336.woff) format("woff")}.m-notification{background:#f7f8f9;border:1px solid #b4b5b6;display:none;padding:15px;position:relative}.m-notification>.cf-icon-svg{fill:#5a5d61;position:absolute}.m-notification__success{background:#f0f8eb;border-color:#20aa3f}.m-notification__success .cf-icon-svg{fill:#20aa3f}.m-notification__warning{background:#fff6ec;border-color:#ff9e1b}.m-notification__warning .cf-icon-svg{fill:#ff9e1b}.m-notification__error{background:#fbefec;border-color:#d14124}.m-notification__error .cf-icon-svg{fill:#d14124}.m-notification__visible{display:block}.cf-icon-svg+.m-notification_content{padding-left:1.5625em}.m-notification_message{margin-bottom:0}.m-notification_explanation{margin-bottom:.9375em;margin-top:.3125em}.m-notification_message+.m-list{margin-top:.9375em}@media only all and (min-width:37.5625em){.m-notification .cf-icon-svg{font-size:1.125em}.m-notification_explanation{margin-bottom:0}.m-notification .m-list{margin-top:.3125em}.m-notification .m-list_item{margin-bottom:.3125em}}.o-banner{background:#fff6ec;border-bottom:1px solid #b4b5b6;font-size:.875em;padding:.9375em 0}.o-banner .m-notification{border:none;padding:0}.o-banner .m-notification_icon{left:0;top:0}.o-banner__dark{background:#126b69;border-color:#126b69;color:#fff}.o-banner__dark a{border-color:#fff;color:#fff}.o-banner__dark a:hover{border-color:#dcdddf;color:#dcdddf}.o-banner__dark .m-notification{background:#126b69}.o-banner__dark .m-notification .cf-icon-svg{fill:#fff}@media only all and (min-width:37.5625em){.o-banner{font-size:1em}}.m-pagination{position:relative}.m-pagination_form{background:#e7e8e9;border-radius:.25em;color:#75787b;padding:.3125em;text-align:center}.m-pagination_current-page{font-weight:500;margin-left:.625em;margin-right:.625em;text-align:right;width:2.8125em}.m-pagination_label{display:inline-block;margin-right:.625em;vertical-align:middle}.m-pagination_btn-submit{margin:0;vertical-align:middle}.m-pagination_btn-next,.m-pagination_btn-prev{line-height:22px;min-width:130px;text-align:center}.m-pagination_btn-next.a-btn__disabled,.m-pagination_btn-prev.a-btn__disabled{background-color:#e7e8e9;border-color:transparent}.m-pagination_btn-next{position:absolute;right:0}@media only all and (max-width:37.5em){.m-pagination_btn-next,.m-pagination_btn-prev{margin-bottom:.9375em}}@media only all and (min-width:37.5625em){.m-pagination_btn-next,.m-pagination_btn-prev{height:100%}.m-pagination_btn-prev{border-bottom-right-radius:0;border-top-right-radius:0;position:absolute}.m-pagination_btn-next{border-bottom-left-radius:0;border-top-left-radius:0}}.o-expandable{position:relative}.o-expandable_target{background-color:initial;border:0;cursor:pointer;padding:0}.o-expandable_target:focus{outline:1px dotted #101820;outline-offset:1px}.o-expandable_target .o-expandable_cue-close,.o-expandable_target .o-expandable_cue-open{display:none}.o-expandable_target__collapsed .o-expandable_cue-open,.o-expandable_target__expanded .o-expandable_cue-close{display:block}.o-expandable_content:after{clear:both;content:"";display:table}.o-expandable_content__transition{transition:max-height .25s ease-in-out}.o-expandable_content__collapsed{max-height:0}.o-expandable_content__expanded{max-height:1000px}.o-expandable_content.u-is-animating{overflow:hidden}.o-expandable_label{color:#101820;font-weight:500;margin-bottom:0}.o-expandable_link{color:#0072ce;font-size:.875em;line-height:1.57142857}.o-expandable_header{display:flex;justify-content:space-between}button.o-expandable_header{text-align:left;width:100%}.o-expandable_header__spaced{padding-bottom:.9375em}.o-expandable_header .o-expandable_label{flex-grow:1}.o-expandable__padded .o-expandable_header{padding:.625em .9375em}.o-expandable__padded .o-expandable_content{padding:0 .9375em}.o-expandable__padded .o-expandable_content:before{border-top:1px solid #b4b5b6;content:"";display:block;padding-top:.9375em}.o-expandable__padded .o-expandable_content:after{padding-bottom:.9375em;width:100%}.o-expandable__background{background:#f7f8f9}.o-expandable__border{border:1px solid #b4b5b6}.o-expandable-group .o-expandable__padded{border-bottom:1px solid #b4b5b6}.o-expandable-group .o-expandable__padded:first-child{border-top:1px solid #b4b5b6}@media print{.o-expandable_target__collapsed .o-expandable_cue-open,.o-expandable_target__expanded .o-expandable_cue-close{display:none}.o-expandable_content__collapsed{display:block;max-height:99999px!important}}.print .o-expandable_target__collapsed .print .o-expandable_cue-open,.print .o-expandable_target__expanded .print .o-expandable_cue-close{display:none}.print .o-expandable_content__collapsed{display:block;max-height:99999px!important}.o-table_cell__right-align{text-align:right}@media only all and (min-width:56.3125em){.o-table__row-links tr:hover td{background:#4497dc;color:#fff;cursor:pointer}.o-table__row-links tr:hover a{color:#fff}}.o-table-wrapper__scrolling{box-sizing:border-box;overflow-y:hidden}.o-table-wrapper__scrolling table{border:1px solid #b4b5b6}.o-table-wrapper__scrolling table>tbody>tr:nth-child(2n)>td,.o-table-wrapper__scrolling table>tbody>tr:nth-child(2n)>th{background:#f7f8f9}.o-table__sortable button.sortable{background:none;border:none;font-family:inherit;font-weight:inherit;height:100%;line-height:inherit;margin:0;outline:none;padding:0;text-align:left;text-transform:inherit;width:100%}.o-table__sortable button.sortable:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 19' fill='%23101820'%3E%3Cpath d='M8.5 15.313a1.026 1.026 0 0 1-.728-.302l-6.8-6.8a1.03 1.03 0 0 1 1.455-1.456L8.5 12.828l6.073-6.073a1.03 1.03 0 0 1 1.455 1.456l-6.8 6.8a1.026 1.026 0 0 1-.728.302z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:auto 1.1875em;content:"";display:inline-block;height:1.1875em;position:relative;vertical-align:bottom;visibility:hidden;width:1em}.o-table__sortable .sortable.sorted-down:after,.o-table__sortable .sortable.sorted-up:after,.o-table__sortable .sortable:hover:after{visibility:visible}.o-table__sortable .sortable.sorted-down:after,.o-table__sortable .sortable.sorted-up:hover:after{top:1px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.o-table__sortable .sortable.sorted-down:hover:after,.o-table__sortable .sortable.sorted-up:after{top:-1px;-webkit-transform:rotate(0deg);transform:rotate(0deg)}@media only all and (min-width:37.5625em){.o-table__striped>tbody>tr:nth-child(2n)>td,.o-table__striped>tbody>tr:nth-child(2n)>th{background:#f7f8f9}}@media only all and (max-width:37.5em){.o-table{width:100%}.o-table__striped tr:nth-child(2n)>td,.o-table__striped tr:nth-child(2n)>th{background:#fff}.o-table__stack-on-small td,.o-table__stack-on-small tr{display:block}.o-table__stack-on-small td,.o-table__stack-on-small th{width:100%}.o-table__stack-on-small>thead{display:none}.o-table__stack-on-small td[data-label]:before{content:attr(data-label);display:block;font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;line-height:1.83333333;margin-bottom:.41666667em;margin-top:0;text-transform:uppercase}.o-table__stack-on-small td:last-child{margin-bottom:1.875em}.o-table__entry-header-on-small>tbody td:first-child{background-color:#f7f8f9;border-bottom:1px solid #5a5d61;font-size:1.125em;font-weight:400;line-height:1.22222222;margin-bottom:.625em;margin-top:0;padding-bottom:.75em}.o-table__entry-header-on-small>tbody td:first-child:before{display:none}.o-table__entry-header-on-small>tbody>tr{border-bottom:none;margin-bottom:1.875em}}.print .content_main{display:block;width:100%!important}.print .o-header{min-height:0;min-height:auto}.print .content_wrapper,.print .m-global-header-cta{border:none!important}.print .pill-panel li{margin:3px}.print #clear-focus,.print .action-bar,.print .clear-all,.print .content_hero,.print .content_sidebar,.print .filter-panel hr,.print .m-global-eyebrow,.print .m-global-header-cta,.print .m-pagination,.print .pill svg,.print .refine-bar,.print .search-bar,.print .search-panel h2,.print .single-checkbox,.print .state-heading .clear,.print .state-navigation,.print .tabbed-navigation,.print .total,.print .trend-depth-toggle,.print .u-right{display:none!important}.print .advanced-container,.print .search-panel{width:100%}.print #tile-chart-map{height:700px;width:700px}.print #line-chart,.print #stacked-area-chart{width:600px}.print .tooltip-container{margin-top:50px;width:100px}.print .tooltip-container .tooltip-ul span.u-left{text-decoration:none!important;width:100%!important}.print .map-toolbar,.print .row-chart-section{page-break-before:always}@media print{#clear-focus,.a-micro-copy,.action-bar,.circle-container,.clear-all,.content_hero,.content_sidebar,.filter-panel hr,.m-global-eyebrow,.m-global-header-cta,.m-pagination,.pill svg,.refine-bar,.search-bar,.search-panel h2,.single-checkbox,.state-heading .clear,.state-navigation,.tabbed-navigation,.total,.trend-depth-toggle,.u-right,.vertical-marker,.warning,footer{display:none!important}}.o-mega-menu_content-2-list__featured ul,.o-mega-menu_group-heading{margin-bottom:1.875em}.o-mega-menu_content-link .a-link_text{border-bottom-width:0}.o-footer .content_wrapper,.o-footer .wrapper,.o-header .content_wrapper,.o-header .wrapper{max-width:1170px!important}.layout-row{display:flex;flex-direction:row;flex-wrap:wrap}.layout-column{display:flex;flex-direction:column}.flex-fixed{flex:none}.flex-all{flex:1 0 auto}.body-copy{font-size:16px}.cols{display:block;margin-left:-15px;margin-right:-15px;position:relative}.col:before{content:"";display:block;width:100%}.col-1{width:8.33333333%}.col-1,.col-2{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.col-2{width:16.66666667%}.col-3{width:25%}.col-3,.col-4{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.col-4{width:33.33333333%}.col-6{width:50%}.col-6,.col-8{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.col-8{width:66.66666667%}.col-9{width:75%}.col-10,.col-9{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top}.col-10{width:83.33333333%}.col-12{border:solid transparent;border-width:0 15px;box-sizing:border-box;display:inline-block;margin-right:-.25em;vertical-align:top;width:100%}.content__1-3{margin-bottom:60px}.content__1-3 .content_wrapper{border:1px solid #b4b5b6;border-right:none;max-width:none;padding-left:0;padding-right:0}@media only screen and (max-width:599px){.content__1-3 .content_wrapper{border:none}}.content__1-3 .content_sidebar{border:0;margin:0;padding:0;width:420px}.content__1-3 .content_main{border:0;padding:0;width:calc(100% - 420px)}.content__1-3 .content_main:after{border-left:0}@media only screen and (min-width:600px) and (max-width:900px){.wrapper__match-content{padding-left:20px;padding-right:20px}}@media only screen and (min-width:901px){.wrapper__match-content{padding-left:30px;padding-right:30px}}@media only screen and (min-width:1800px){.wrapper__match-content{padding-left:80px;padding-right:80px}}@media only screen and (min-width:750px) and (max-width:900px){.content__1-3 .content_sidebar{width:305px}.content__1-3 .content_main{width:calc(100% - 305px)}}@media only screen and (min-width:600px) and (max-width:749px){.content__1-3 .content_main,.content__1-3 .content_sidebar.list,.content__1-3 .content_sidebar.map{width:100%}.filter-button{display:block;margin:20px 10px}.filter-button button{width:100%}}@media only screen and (max-width:599px){.filter-button{display:block;margin:20px 0}.filter-button button{width:100%}.content__1-3{margin-bottom:0}.content__1-3 .content_main,.content__1-3 .content_sidebar{width:100%}}body .a-btn__link,body a{color:#0072ce}body .a-btn__link:hover,body a:hover{color:#7eb7e8}::-ms-clear{display:none}.a-error-message .cf-icon-delete-round{color:#d14124}.card-container{margin-bottom:30px;max-width:100%;padding:15px}.card-container nav{justify-content:space-between;width:100%}.card-container nav a,.card-container nav button{color:#0072ce;font-size:16px}.card-container nav a:hover,.card-container nav button:hover{color:#4497dc}.card-container nav .a-btn__link{border:0}.card-container nav .a-btn__link span{margin-right:15px}.card-container h1{margin:30px 0 15px}.card-container h2.company-information{margin-top:45px}.card-container .card{display:flex;flex-direction:row;flex-wrap:nowrap}@media only screen and (max-width:599px){.card-container .card{flex-wrap:wrap}}.card-container .card .card-left{box-sizing:border-box;min-width:260px;padding-right:30px;width:33%}@media only screen and (min-width:600px) and (max-width:900px){.card-container .card .card-left{padding-right:15px}}@media only screen and (max-width:599px){.card-container .card .card-left{padding-right:10px;width:100%}}.card-container .card .card-right{width:67%}@media only screen and (max-width:599px){.card-container .card .card-right{padding-top:15px;width:100%}}.card-container .card .cf-icon__before{font-size:16px;padding-right:10px}.card-container .card .cf-icon__before.cf-icon-approved-round{color:#20aa3f}.card-container .card .cf-icon__before.cf-icon-delete-round{color:#d14124}.card-container .card .cf-icon__before.cf-icon-minus-round{color:#ff9e1b}.card-container .card .cf-icon__before.cf-icon-help-round{color:#254b87}.card-container .card .cf-icon__before.cf-icon-error-round{color:#75787b}.card-container .card .cf-icon__before.cf-icon-clock-round{color:#20aa3f}.card-container .card .cf-icon__before.cf-icon-clock-round.not-timely{color:#ff9e1b}.card-container .card .layout-column h3,.card-container .card .layout-column h4{margin-bottom:5px;margin-top:0}.card-container .card .subitem{font-family:AvenirNextLTW01-Medium;margin-right:5px}.light-box{align-items:center;background-color:rgba(67,72,78,.75);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0}.loading-box{background:#f7f8f9;border:1px solid #43484e;border-radius:4px;max-width:480px;outline:none;overflow:auto;padding:30px}.loading-box span.cf-icon-svg{padding-right:10px}.content_hero{margin-top:30px;padding:15px}@media only screen and (min-width:901px){.content_hero{padding:15px 30px 30px}}@media only screen and (max-width:599px){.content_hero{padding:10px}}.content_hero p{max-width:670px}.content_hero ul{padding-top:5px}.content_hero li{border-bottom:0;padding-bottom:0}.content_hero li a,.content_hero li button{font-size:16px}.content_hero li.m-list_item{margin-right:0}.content_hero li:after{content:"|";margin-left:10px;margin-right:10px}.content_hero li:last-of-type:after{content:"";margin:0}.content_hero .content-header{display:inline-flex}.content_hero h4.content-header{box-sizing:border-box;color:#43484e;margin-left:10px;margin-top:0;text-transform:uppercase;vertical-align:text-bottom}.filter-panel{background:#f7f8f9;border-right:1px solid #b4b5b6;border-top:1px solid #b4b5b6;padding:15px}@media only screen and (min-width:901px){.filter-panel{padding:30px}}@media only screen and (max-width:599px){.filter-panel{border-right:none}}.filter-panel hr{color:#b4b5b6;margin-bottom:15px;margin-top:15px}.o-expandable{margin-bottom:0}.o-expandable h4{box-sizing:border-box;max-width:calc(100% - 55px);padding-right:5px}.o-expandable .o-expandable_cue.a-btn__link{border:0;font-size:14px}.o-expandable .o-expandable_cue .cf-icon-svg{padding-left:5px}.o-expandable p{color:#5a5d61;font-size:16px}.typeahead input{box-sizing:border-box;width:100%}.typeahead input:focus{border:2px solid #0072ce}.typeahead .m-btn-inside-input .a-btn{position:absolute;right:1em;top:calc(50% - 8px)}.typeahead .m-btn-inside-input .cf-icon-svg{padding-right:4px}.typeahead-selector{position:relative;z-index:99}.typeahead-selector ul{border:2px solid #0072ce;border-top:0;left:0;padding-left:0;position:absolute;right:0;top:0}.typeahead-selector ul li.footer{background-color:#d6e8fa;font-size:12px;font-style:italic;text-align:center}.typeahead li.typeahead-option,.typeahead-selector ul li.footer{border-top:1px solid #b4b5b6;cursor:default;list-style-type:none;margin:0;padding:15px}.typeahead li.typeahead-option{background-color:#fff}.typeahead li.typeahead-option.selected,.typeahead li.typeahead-option:hover{background-color:#e7e8e9;border-bottom:2px solid #0072ce;border-top:2px solid #0072ce}.input-contains-label_before{cursor:pointer;font-size:.875em;left:.85714286em;position:absolute;top:.5em}.input-contains-label_before~input[type=text]{padding-bottom:.28em;padding-left:1.78571429em}.input-contains-label_before__search .cf-icon-svg{position:relative;top:2px}.date-filter h4{margin-bottom:0}.date-filter ul.date-inputs{margin:0}.date-filter ul.date-inputs li{display:inline-block;list-style:none;width:calc(50% - 8px)}.date-filter ul.date-inputs li:first-of-type{margin-right:15px}.date-filter ul.date-inputs li .m-btn-inside-input .a-text-input{padding-right:30px}.date-filter ul.date-inputs li .m-btn-inside-input .a-btn{color:#5a5d61}.date-filter ul.messages{padding-top:10px}.date-filter ul.messages li{list-style:none;margin:0}.date-filter ul.messages .a-error-message .cf-icon-svg{padding-right:5px}.date-ranges .date-selector{background-color:#afd2f2;color:#101820}.date-ranges .date-selector.selected{background-color:#4497dc;color:#fff;font-weight:600}.aggregation-branch li.parent{align-items:baseline;list-style-type:none;position:relative}.aggregation-branch li.parent .toggle.a-label:before{box-sizing:border-box;height:20px;text-indent:0;width:20px}.aggregation-branch li.parent .toggle.indeterminate:before{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAAA6klEQVQoFVWS3RbDIAiDFenj7mI3e/n6s3xQ240zPaJJCHT1836tOWdhEa017fU+11oLy6yWtUqx8zx1WAJaPATyZ9uEOWbgrPce6sE2iwqQraYAYgQ7Zz+OIy+UoLYBSmTDlKdVd493x/MG8tj7UK4K5ldltEeIIuAoQkiii9Ajp8k9iEdQloKq7Z+Yk8E+JAj6xTkqcEm5MUdZk4kx2kcEsTGwpb4AkwBkFH30wqi3HYSIXckpRwC0pUdsMBl6EziIV59A1UN+RUDpNQVypOvuTV1IthZV0OeWUlxInftmGrWW/jN3P7ggvpSOn4eXbS7WAAAAAElFTkSuQmCC) no-repeat scroll 50% transparent;border:2px solid #43484e}.a-checkbox:checked+.aggregation-branch li.parent .toggle.a-label:before{border:2px solid #43484e}.aggregation-branch li.parent button{font-size:16px;font-weight:400;max-width:calc(100% - 95px);text-align:left;vertical-align:top}.aggregation-branch li.parent button .cf-icon-svg{padding-left:5px}.aggregation-branch li.parent .a-btn__link{border:0}.aggregation-branch li.parent .parent-count{color:#43484e;font-size:14px;position:absolute;right:0;top:0}.aggregation-branch ul.children{padding-left:22.5px}.aggregation ul{margin-top:20px;padding-left:0}.aggregation ul li{align-items:baseline;border:0;margin-bottom:15px;padding:0;position:relative}.aggregation ul li .a-label:before{box-sizing:border-box;height:20px;text-indent:0;width:20px}.aggregation ul li .a-checkbox:checked+.a-label:before{border:2px solid #43484e}.aggregation ul li .bucket-key{max-width:calc(100% - 65px);vertical-align:top}.aggregation ul li .bucket-count{color:#43484e;font-size:14px;position:absolute;right:0;top:0}.list-panel h2{margin:15px}.list-panel .cards-panel{margin:0;padding:30px}@media only screen and (max-width:599px){.list-panel .cards-panel{padding:15px}}.list-panel .m-pagination .a-btn[disabled],.list-panel .m-pagination .m-pagination_btn-submit,.list-panel .m-pagination .m-pagination_label{color:#5a5d61}.refine-bar section{margin:10px 0 10px 15px}.refine-bar section p{color:#5a5d61;font-size:12px;font-weight:600}.refine-bar section button.selected{font-weight:600}.refine-bar section:not(.filter-panel-toggle) button{color:#101820}.refine-bar section.cf-select{border:none}.refine-bar section.cf-select select{background-color:#fff;border:1px solid #b4b5b6;color:#101820}.refine-bar section.cf-select:after{background-color:#fff;-webkit-transform:translate(-5px);transform:translate(-5px)}@media only screen and (max-width:599px),only screen and (min-width:750px) and (max-width:900px),only screen and (min-width:901px){.refine-bar .separator{display:none}}@media only screen and (max-width:599px),only screen and (min-width:600px) and (max-width:749px){.refine-bar .toggle-button>span{display:none}}.refine-bar .toggle-button.selected{pointer-events:none}.refine-bar .toggle-button:not(.a-btn__disabled){background-color:#4497dc}.refine-bar .toggle-button.deselected{background-color:#afd2f2}.cf-select{border:1px solid #75787b;position:relative}.cf-select select{-webkit-appearance:none;appearance:none;background-color:#fff;border:0;border-radius:0;color:#101820;margin-right:30px;padding:.25em 0 .375em 1rem;width:100%}.cf-select select.hover,.cf-select select:active,.cf-select select:focus,.cf-select select:hover{outline:2px solid #0072ce;outline-offset:0}.cf-select select[disabled]{background-color:#e7e8e9;color:#5a5d61;cursor:not-allowed}.cf-select select[disabled]:hover{outline:none}.cf-select select option:disabled,.cf-select select[disabled] option,.cf-select select[disabled] option:disabled{color:#e7e8e9}.cf-select select::-ms-expand{display:none}.cf-select:after{background-color:#e7e8e9;color:#75787b;content:"\25BE";pointer-events:none;position:absolute;right:0;text-align:center;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.no-csspointerevents .cf-select:after{border:0;content:"";height:0;width:0}.action-bar{background-color:#e2efd8;border:1px solid #b4b5b6;border-left:0;padding:15px 30px}.action-bar h2{margin:0}@media only screen and (max-width:599px){.action-bar h2{padding:15px}}.action-bar .export-results{margin:0 0 5px;padding-top:5px}.action-bar .export-results .a-btn{border-bottom:1px dotted #0050b4;color:#0050b4;font-size:14px;margin-right:15px}.action-bar .export-results .a-btn:hover{color:#7eb7e8}.action-bar .export-results .a-btn svg{margin-right:5px}@media only screen and (max-width:599px){.action-bar{border:1px solid #b4b5b6;padding-left:0}.action-bar .export-results{margin-left:15px}}@media only screen and (min-width:1800px){.action-bar{padding-left:40px}}.warning .close{margin:5px 10px;position:absolute;right:0;top:0}.warning .close svg{fill:#0072ce}.card-container .card .card-left{min-width:0;min-width:auto}li.card-container{border-bottom:1px solid #b4b5b6;list-style-type:none;margin:0;padding:30px 0}li.card-container:first-of-type{padding-top:0}li.card-container:last-of-type{border:0;padding-bottom:0}li.card-container .card{display:flex;flex-direction:row;flex-wrap:nowrap}@media only screen and (max-width:599px){li.card-container .card{flex-wrap:wrap}}li.card-container .card .card-left{box-sizing:border-box;padding-right:30px;width:260px}@media only screen and (min-width:600px) and (max-width:900px){li.card-container .card .card-left{padding-right:15px;width:50%}}@media only screen and (max-width:599px){li.card-container .card .card-left{padding-right:10px;width:100%}li.card-container .card .card-right{padding-top:15px;width:100%}}li.card-container .card .layout-row .spacer{margin:10px}li.card-container .card .layout-row h4{font-size:16px;margin-right:5px}li.card-container .card .layout-column h3{margin-bottom:5px;margin-top:0}li.card-container .card .layout-column h3 a{border-bottom-width:2px}li.card-container .card .layout-column h3.to-detail{margin-bottom:15px}li.card-container .card .layout-column h4{margin-bottom:5px;margin-top:0}li.card-container .card .subitem{font-family:AvenirNextLTW01-Medium;margin-right:5px}li.card-container .card em{background-color:#d4e7e6;font-family:AvenirNextLTW01-Regular;font-style:normal}@media only screen and (max-width:599px),only screen and (min-width:750px) and (max-width:900px),only screen and (min-width:901px){.filter-panel-toggle{display:none}}.separator{border-left:1px solid #b4b5b6;height:38px;margin-left:10px;margin-top:35px}@media only screen and (max-width:599px),only screen and (min-width:750px) and (max-width:900px),only screen and (min-width:901px){.separator{display:none}}.map-toolbar{border-bottom:1px solid #d2d3d5;border-top:2px solid #d2d3d5;margin:0 20px}.map-toolbar a{text-decoration:underline}.map-toolbar a:active,.map-toolbar a:hover,.map-toolbar a:link,.map-toolbar a:visited{cursor:pointer}.map-toolbar .state-heading{border-bottom:1px solid #d2d3d5;padding:.625rem}.map-toolbar .state-heading span{margin:.625rem}.map-toolbar .state-heading .clear svg{padding-right:.313rem}.map-toolbar .state-navigation{padding:.625rem}.row-chart-section{margin-left:30px;margin-top:30px}.row-chart-section p{max-width:none}@media only screen and (max-width:599px){.row-chart-section{margin-left:0}}.row-chart .bg-hover,.row-chart .visibility,.row-chart .x-axis-group,.row-chart line,.row-chart path.domain{display:none}.row-chart .expandable{color:#0072ce}.row-chart text{font-size:16px}.row-chart text.adjust-upwards{-webkit-transform:translateY(-12px);transform:translateY(-12px)}.row-chart text.hidden{display:none}.row-chart .view-more-group .view-more-background{fill:#d6e8fa}.row-chart .view-more-group .view-more-label{fill:#0072ce;text-anchor:end;font-size:14px;font-weight:700;text-decoration:underline}.highcharts-container{-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:Lucida Grande,Lucida Sans Unicode,Arial,Helvetica,sans-serif;font-size:12px;height:100%;line-height:normal;overflow:hidden;position:relative;text-align:left;width:100%;z-index:0}.highcharts-root{display:block}.highcharts-root text{stroke-width:0;font-weight:500}.highcharts-strong{font-weight:700}.highcharts-emphasized{font-style:italic}.highcharts-anchor{cursor:pointer}.highcharts-background{fill:#fff}.highcharts-label-box,.highcharts-plot-background,.highcharts-plot-border{fill:none}.highcharts-button-box{fill:inherit}.highcharts-title{fill:#333;font-size:1.5em}.highcharts-subtitle{fill:#666}.highcharts-map-series .highcharts-point{stroke:#ccc;transition:fill .5s,fill-opacity .5s,stroke-width .25s}.highcharts-map-series .highcharts-point-hover{fill:#0072ce!important;fill-opacity:.5;cursor:default;transition:fill 0ms,fill-opacity 0ms}.u-chart-label{color:#5a5d61;font-family:inherit;font-size:16px}.cfpb-chart{margin-bottom:25px;margin-left:30px;min-height:400px;position:relative;width:calc(100% - 60px)}.cfpb-chart .highcharts-axis-labels,.cfpb-chart .highcharts-container,.cfpb-chart .highcharts-legend-box,.cfpb-chart .highcharts-root,.cfpb-chart .highcharts-tooltip text{color:#5a5d61;font-family:inherit;font-size:16px}.cfpb-chart[data-chart-type=tile_map] .highcharts-data-label{color:#101820;font-weight:500}.cfpb-chart[data-chart-type=tile_map] .highcharts-data-label .highcharts-data-label-state{cursor:default;text-align:center}.cfpb-chart[data-chart-type=tile_map] .highcharts-data-label .highcharts-data-label-state.deselected{color:#5a5d61}.cfpb-chart[data-chart-type=tile_map] .highcharts-label{pointer-events:none}.cfpb-chart[data-chart-type=tile_map] .highcharts-legend-title .highcharts-legend-key{font-weight:500}.cfpb-chart[data-chart-type=tile_map] .highcharts-legend-title .highcharts-legend-description{font-size:12px}.cfpb-chart[data-chart-type=tile_map] .highcharts-legend-title .highcharts-legend-description .type{color:#101820;font-weight:500}.cfpb-chart[data-chart-type=tile_map] .highcharts-legend__tile-map{font-size:12px}.cfpb-chart[data-chart-type=tile_map] .highcharts-legend__tile-map .legend-box{stroke:#5a5d61}.cfpb-chart[data-chart-type=tile_map] .highcharts-label__tile-map{color:#5a5d61;font-family:inherit;font-size:16px;font-weight:500}.cfpb-chart[data-chart-type=tile_map] .highcharts-label__tile-map span{position:relative!important;white-space:normal!important}.cfpb-chart[data-chart-type=tile_map] .selected,.cfpb-chart[data-chart-type=tile_map] .u-point-hover-state{stroke:#101820;stroke-linecap:square;cursor:default}.cfpb-chart[data-chart-type=tile_map] .highcharts-map-series .highcharts-point{stroke:none}.cfpb-chart[data-chart-type=tile_map] .highcharts-map-series .highcharts-point.empty{stroke:#e7e8e9}.cfpb-chart[data-chart-type=tile_map] .highcharts-map-series .highcharts-point.selected{stroke:#002d72}.cfpb-chart[data-chart-type=tile_map] .highcharts-label-box{display:none}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip{min-width:200px}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span{background-color:#101820;color:#fff;padding:5px;width:320px}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span div p{margin:5px;white-space:normal}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span div p.u-float-left{float:left;width:150px}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span div p.u-right{width:150px}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span .title{text-align:center}.cfpb-chart[data-chart-type=tile_map] .highcharts-tooltip span .row{border-top:1px solid #43484e;margin-top:5px;padding-top:5px}.cfpb-chart[data-chart-type=tile_map]:not(.print) .highcharts-map-series .highcharts-point:hover{stroke:#002d72;stroke-width:2px!important}@media only screen and (min-width:600px) and (max-width:749px){.cfpb-chart[data-chart-type=tile_map]{margin-bottom:10px;margin-left:10px;width:calc(100% - 20px)}}@media only screen and (max-width:599px){.cfpb-chart[data-chart-type=tile_map]{margin-bottom:10px;margin-left:10px;width:calc(100% - 20px)}}.highcharts-data-label{font-size:14px;line-height:1.3}.highcharts-data-label .highcharts-data-label-state{display:flex;flex-direction:row;flex-wrap:wrap}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.highcharts-data-label .highcharts-data-label-state{display:inline-block;float:left}}.highcharts-data-label .highcharts-data-label-state .abbr{flex:1 0 auto;font-size:16px}.highcharts-data-label .highcharts-data-label-state .value{flex:1 0 auto;font-size:12px;margin-top:6px}.highcharts-data-label .highcharts-data-label-state.hover .abbr,.highcharts-data-label .highcharts-data-label-state.hover .value{text-decoration:underline}.highcharts-data-label .highcharts-data-label-state.deselected{color:#5a5d61}@media only screen and (max-width:1024px){.highcharts-data-label{line-height:1}.highcharts-data-label .highcharts-data-label-state .abbr{font-size:12px}.highcharts-data-label .highcharts-data-label-state .value{font-size:9px;margin-top:3px}}@media only screen and (max-width:400px){.highcharts-data-label{line-height:1}.highcharts-data-label .highcharts-data-label-state .abbr{font-size:12px}.highcharts-data-label .highcharts-data-label-state .value{display:none}}@media only screen and (max-width:400px) and (-ms-high-contrast:active),only screen and (max-width:400px) and (-ms-high-contrast:none){.highcharts-data-label .highcharts-data-label-state{-webkit-transform:translateY(-10px);transform:translateY(-10px)}}@media only screen and (min-width:600px) and (max-width:749px){.highcharts-series-group{-webkit-transform:translateY(15px);transform:translateY(15px)}.highcharts-data-labels.highcharts-map-series{margin-top:15px}}@media only screen and (min-width:600px) and (max-width:749px) and (-ms-high-contrast:active),only screen and (min-width:600px) and (max-width:749px) and (-ms-high-contrast:none){.highcharts-data-label-state{-webkit-transform:translateY(-10px);transform:translateY(-10px)}}@media only screen and (max-width:599px){.highcharts-series-group{-webkit-transform:translateY(15px);transform:translateY(15px)}.highcharts-data-labels.highcharts-map-series{margin-top:15px}}.no-js .cfpb-chart{height:inherit}.no-js .cfpb-chart:after{border:0}.print-info,.print-info-footer{background:#f7f8f9;padding:15px;width:100%;word-break:break-all}.print-info span,.print-info-footer span{font-weight:600}.trends-panel .refine-bar section:nth-of-type(2){margin-left:0}.trends-panel .refine-bar .separator{display:inline-block}.trends-panel .company-overlay{justify-content:center}.trends-panel .company-overlay .company-search{margin:45px}.trends-panel .company-overlay .company-search .typeahead{width:100%}.trends-panel .chart-description p{max-width:none}.trends-panel .chart{width:100%}.trends-panel .chart .m-notification{margin-bottom:10px}.trends-panel.external-tooltip section.chart{width:70%}.trends-panel.external-tooltip section.tooltip-container{padding:0 1%;position:relative;width:25%}.trends-panel.external-tooltip section.tooltip-container.legend{margin-top:20px}.trends-panel.external-tooltip section.tooltip-container.legend .tooltip-ul{border-bottom:none}.trends-panel.external-tooltip section.tooltip-container .scrollable{border-bottom:1px solid #101820;max-height:300px;overflow:hidden;overflow-y:auto}.trends-panel.external-tooltip section.tooltip-container .scrollable ul.tooltip-ul{border-bottom-color:#e7e8e9;color:#0072ce;cursor:pointer}.trends-panel.external-tooltip section.tooltip-container .scrollable ul.tooltip-ul li:before{opacity:0}.trends-panel.external-tooltip section.tooltip-container p.a-micro-copy{border-bottom:1px solid #b4b5b6;display:inline-block;font-size:12px;font-weight:600;margin-bottom:0;padding-top:5px;width:100%}.trends-panel.external-tooltip section.tooltip-container p.a-micro-copy span.heading{color:#5a5d61}.trends-panel.external-tooltip section.tooltip-container p.a-micro-copy span.date{float:right}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul{border-bottom:1px solid #b4b5b6;font-size:12px;font-weight:500;list-style:none;margin-bottom:0;padding-bottom:2px;padding-top:2px}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.recommended{background:hsla(210,4%,91%,.4)}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.active{color:#101820}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.active.color__23{background-color:#f0d8e2}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.active.color__24{background-color:#f7e0d9}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.active.color__25{background-color:#fff0dd}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.active li:before{opacity:1}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li{border-bottom:1px solid #d2d3d5;margin-bottom:0;padding-left:14px;position:relative}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li span{border:none}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li span.u-left{display:inline-block;text-align:left;width:70%}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li span.u-right.close{padding-left:10px}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li:before{border-radius:50%;content:"";display:block;height:8px;left:0;position:absolute;top:4px;width:8px}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__0:before{background-color:#2cb34a}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__1:before{background-color:#addc91}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__2:before{background-color:#0072ce}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__3:before{background-color:#96c4ed}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__4:before{background-color:#257675}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__5:before{background-color:#9ec4c3}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__6:before{background-color:#254b87}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__7:before{background-color:#9daecc}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__8:before{background-color:#b4267a}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__9:before{background-color:#dc9cbf}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__10:before{background-color:#a2a3a4}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__12:before{background-color:#93cf7c}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__13:before{background-color:#d486b2}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__14:before{background-color:#e79e8e}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li.color__15:before{background-color:#ffb858}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul li:last-child{border:none}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul .dot{background-color:red;border-radius:50%;display:inline-block;height:8px;margin-right:5px;width:8px}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.total{border-bottom:none;font-size:16px}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul.total li .u-left{width:50%}.trends-panel.external-tooltip section.tooltip-container .tooltip-button-panel .reset-set>button{width:100%}.trends-panel.external-tooltip section.tooltip-container .tooltip-button-panel .reset-set>button span.pull-left{display:none}.trends-panel.external-tooltip section.tooltip-container .tooltip-button-panel .reset-set>button:before{border-right:1px solid #fff;content:"Reset recommended set";padding-right:10px}.trends-panel.external-tooltip section.tooltip-container .tooltip-button-panel .reset-set>button>.caret{border-bottom-style:solid;border-bottom-width:0;border-left-style:solid;border-left-width:0;border-right:2px solid #fff;border-top:2px solid #fff;display:inline-block;height:8px;position:relative;right:-10px;top:.15em;-webkit-transform:rotate(135deg);transform:rotate(135deg);vertical-align:top;width:8px}.trends-panel.external-tooltip section.tooltip-container:not(.focus) ul.tooltip-ul .u-left.a-btn__link{text-decoration:underline}.trends-panel h2.area-chart-title{margin-bottom:0;padding-top:15px}.trends-panel .chart-helper-text{padding-bottom:15px}@media only screen and (max-width:599px){.trends-panel .refine-bar .cf-select{flex-grow:1;width:46%}.trends-panel .refine-bar .date-ranges{margin:10px 0}.trends-panel .refine-bar .chart-toggles{margin-left:0}}@media only screen and (max-width:599px),only screen and (min-width:600px) and (max-width:900px){.trends-panel .chart,.trends-panel.external-tooltip section.chart,.trends-panel.external-tooltip section.tooltip-container{width:100%}}.trends-panel .layout-row.date-range-disclaimer{margin-bottom:15px}@media only screen and (min-width:600px) and (max-width:900px){.trends-panel .layout-row{padding-left:20px}}@media only screen and (min-width:901px){.trends-panel .layout-row{padding-left:30px}}@media only screen and (min-width:1800px){.trends-panel .layout-row{padding-left:40px}}.trends-panel.external-tooltip section.tooltip-container ul.tooltip-ul{list-style-type:none;padding-left:0}.chart-toggles .toggle{background-color:#afd2f2;padding:3px;width:38px}.chart-toggles .toggle.selected{background-color:#4497dc;font-weight:600}.chart-toggles .toggle svg{height:25px}.chart-toggles .toggle svg#line-chart-icon .cls-1{opacity:.4}.chart-toggles .toggle svg#line-chart-icon .cls-2{fill:none;stroke:#101820;stroke-miterlimit:10;stroke-width:2px}.chart-toggles .toggle svg#area-chart-icon .cls-1,.chart-toggles .toggle svg#line-chart-icon .cls-3{fill:#101820}.chart-toggles .toggle svg#area-chart-icon .cls-2{opacity:.4}.focus-header .clear-focus{margin:15px}.focus-header .clear-focus .cf-icon-svg{margin-right:5px}.focus-header .focus{margin-left:10%;text-align:center}.focus-header .focus .divider{background-color:#addc91;display:inline-block;height:5px;width:75px}.tabbed-navigation.lens{background:none;border-bottom:1px solid #b4b5b6}.tabbed-navigation.lens .tab{font-size:medium}.tabbed-navigation.lens .tab.active{background:#fff}.tabbed-navigation.lens .tab:not(.active){background:#d6e8fa}#line-chart .masking-rectangle,#line-chart .x-axis-group .month-axis .domain,#line-chart .y-axis-group path{display:none}#line-chart svg,#stacked-area-chart svg{overflow:visible}#line-chart .topic .line,#stacked-area-chart .topic .line{fill:none;stroke-width:3px;stroke-linecap:round;stroke-linejoin:round}#line-chart .circle-container circle,#stacked-area-chart .circle-container circle{fill:#fff}#line-chart .grid-lines-group,#stacked-area-chart .grid-lines-group{stroke:#d2d3d5;stroke-width:.1%}#line-chart .x-axis-group line,#stacked-area-chart .x-axis-group line{display:none}#line-chart .vertical-marker,#stacked-area-chart .vertical-marker{stroke:#d2d3d5;stroke-width:2px;stroke-dasharray:4,4}#line-chart .chart-group .area path.area,#stacked-area-chart .chart-group .area path.area{fill:#e7e8e9;opacity:.4}#line-chart .chart-group .area-outline,#stacked-area-chart .chart-group .area-outline{fill:none}#line-chart .extended-x-line,#stacked-area-chart .extended-x-line{stroke:#101820;stroke-width:.2%}#stacked-area-chart .stacked-area .y-axis-group .domain{display:none}.chart-wrapper p{color:#5a5d61;font-size:12px;font-weight:600}.chart-wrapper p.x-axis-label{margin-left:45%}.tabbed-navigation{border-bottom:1px solid #d2d3d5;margin-top:30px}.tabbed-navigation section{padding-left:10px}.tabbed-navigation section .tab{font-size:1.1875em;font-weight:500;margin:0;padding:4px 30px 8px}.tabbed-navigation section .tab:focus{outline:none}.tabbed-navigation section .tab .cf-icon-svg{font-size:.8125em;margin-right:5px;margin-top:4px}.tabbed-navigation section .tab:not(.active){background:#f7f8f9;border:1px solid #d2d3d5;border-bottom:none;color:#0050b4}.tabbed-navigation section .tab:not(.active):after{border-top:1px solid;content:"";display:block}.tabbed-navigation section .tab.active{background:#fff;border:1px solid #b4b5b6;padding-top:8px;pointer-events:none;position:relative}.tabbed-navigation section .tab.active:after{bottom:-1px;content:"";display:block;left:1px;outline:1px solid #fff;position:absolute;width:calc(100% - 2px)}.trend-depth-toggle{background:#e7e8e9;text-align:center}.trend-depth-toggle button{color:#0050b4;margin:5px}.trend-depth-toggle span{font-weight:700;margin-right:5px}.trend-depth-toggle span.plus:before{content:"+"}.trend-depth-toggle span.minus:before{content:"-"}.modal-overlay{align-items:center;background-color:rgba(67,72,78,.75);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:100}.modal-body{background:#fff;border:1px solid #43484e;border-radius:4px;border-top:12px solid #20aa3f;margin:45px;max-height:100%;max-width:480px;outline:none;overflow:auto;padding:0}.modal-body .header{align-items:flex-start;padding:15px 15px 0}.modal-body .header .a-btn__link{border:0}.modal-body .header .cf-icon-svg{padding-left:5px}.modal-body .body{padding:0 15px}.modal-body .body p:last-of-type{margin-bottom:15px}.modal-body .footer{align-items:baseline;background-color:#f7f8f9;padding:15px}.modal-body .footer button{margin-right:15px}.modal-body .footer button.a-btn__link{height:18px}.export-modal .body .a-btn_icon{padding-right:5px}.export-modal .body .export-url-copied{background-color:#e2efd8;border:1px solid #20aa3f;border-left:0;color:#101820}.export-modal .body .export-url-copied .cf-icon-svg{fill:#20aa3f}.export-modal .body .group,.export-modal .body .instructions{margin-bottom:15px}.export-modal .body .group .a-error-message .cf-icon-svg{margin-right:5px}.export-modal .body .group .group__error{border:1px solid #d14124;margin-bottom:15px;padding:10px 10px 0}.export-modal .body .group .group-title{font-size:18px;font-weight:700;margin:15px 0}.export-modal .body .group .m-form-field{margin-bottom:15px}.export-modal .body .group .m-form-field .multiline-label{display:inline-block}.export-modal .body .group .other-formats{margin-top:22.5px}.export-modal .body .group .required-helper{color:#5a5d61}.export-modal .body .timeliness-warning{font-size:smaller;margin-bottom:22.5px}.search-panel{background-color:#f7f8f9;border-right:1px solid #b4b5b6;padding:15px}@media only screen and (min-width:901px){.search-panel{padding:30px}}@media only screen and (max-width:599px){.search-panel{padding:10px}}.date-subscript{color:#5a5d61;font-size:16px}.pill-panel{align-items:baseline;display:flex;flex-direction:row;flex-wrap:nowrap;padding-right:10px}.pill-panel .layout-row{display:block}.pill-panel .clear-all button{border-color:#b63014;color:#b63014;margin-left:10px}.pill-panel .clear-all button svg{margin-right:5px}.pill-panel .pill-label{margin-bottom:0;padding-right:15px}.pill-panel li{display:inline-block;position:relative}.pill-panel ul{padding-top:10px}@media only screen and (max-width:599px){.pill-panel{flex-direction:column;margin-top:10px}.pill-panel .layout-row{padding-left:0}.pill-panel .clear-all{display:block}.pill-panel .clear-all button{margin:0}}.pill{background-color:#b4d2d1;border:1px solid #89b6b5;border-radius:.28571429em;color:#101820;font-size:14px;font-weight:500;margin-right:4px;padding:10px 30px 10px 10px}.pill:hover{background-color:#c4dddc;border-color:#9ec4c3;cursor:pointer}.pill button{background-color:initial;border:0;border-left:1px solid #d2d3d5;color:#005e5d;margin:0;padding:0 0 0 5px;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.pill button:active,.pill button:hover{background-color:#b4b5b6}@media only screen and (max-width:599px){.search-bar .advanced-container,.search-bar h4{display:none;width:0}}.search-bar .cf-select{background-color:#5a5d61;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center}@media only screen and (max-width:599px){.search-bar .cf-select{display:none;width:0}}.search-bar .cf-select select{background-color:#5a5d61;color:#fff}.search-bar .cf-select select:focus{outline:none}.search-bar .cf-select:after{background-color:#5a5d61;border-left:1px solid #919395;color:#fff;padding-left:10px}.search-bar a.u-visually-hidden:focus{height:auto;position:static;width:auto}.search-bar button.a-btn.flex-fixed{border-bottom-left-radius:0;border-top-left-radius:0}.search-bar .typeahead-portal{height:30px;min-width:12em;position:relative}.search-bar .typeahead-portal .typeahead{height:100%;left:0;position:absolute;right:0;top:0}.search-bar .typeahead-portal .typeahead span.error,.search-bar .typeahead-portal .typeahead span.no-results,.search-bar .typeahead-portal .typeahead span.waiting{left:0;position:absolute;top:-25px}.search-bar .advanced-container{margin-left:10px;width:175px}.search-bar h4{margin-bottom:5px}.advanced_tips{background-color:#d2d3d5;box-sizing:border-box;margin:15px -15px -15px;padding:15px}.advanced_tips .tips{display:flex;flex-direction:row;flex-wrap:wrap}.advanced_tips .tip{flex-basis:31%;padding-bottom:15px;padding-right:2%;padding-top:15px}.advanced_tips .tip .example-input{box-sizing:border-box;color:#5a5d61;display:inline-block;width:48%}.advanced_tips .tip .example-input.first{margin-right:1%}.advanced_tips .tip .example-input_full{box-sizing:border-box;color:#5a5d61;width:100%}.advanced_tips .tip .tip-description{padding-top:10px}.advanced_tips .tip .tip-description p{color:#101820}.introjs-overlay{box-sizing:initial;opacity:0;position:absolute;transition:all .3s ease-out;z-index:999999}.introjs-showElement{z-index:9999999!important}tr.introjs-showElement>td,tr.introjs-showElement>th{position:relative;z-index:9999999!important}.introjs-disableInteraction{background-color:#fff;opacity:0;position:absolute;z-index:99999999!important}.introjs-relativePosition{position:relative}.introjs-helperLayer{border-radius:4px;box-sizing:initial;position:absolute;transition:all .3s ease-out;z-index:9999998}.introjs-helperLayer *,.introjs-helperLayer :after,.introjs-helperLayer :before{box-sizing:initial}.introjs-tooltipReferenceLayer{background-color:initial;box-sizing:initial;position:absolute;transition:all .3s ease-out;visibility:hidden;z-index:100000000}.introjs-helperNumberLayer,.introjs-tooltipReferenceLayer,.introjs-tooltipReferenceLayer *{font-family:Helvetica Neue,Inter,ui-sans-serif,Apple Color Emoji,Helvetica,Arial,sans-serif}.introjs-helperNumberLayer{color:#9e9e9e;padding-bottom:10px;padding-top:10px;text-align:center}.introjs-arrow{border:5px solid transparent;content:"";position:absolute}.introjs-arrow.top{border-bottom-color:#fff;left:10px;top:-10px}.introjs-arrow.top-right{border-bottom-color:#fff;right:10px;top:-10px}.introjs-arrow.top-middle{border-bottom-color:#fff;left:50%;margin-left:-5px;top:-10px}.introjs-arrow.right{border-left-color:#fff;right:-10px;top:10px}.introjs-arrow.right-bottom{border-left-color:#fff;bottom:10px;right:-10px}.introjs-arrow.bottom{border-top-color:#fff;bottom:-10px;left:10px}.introjs-arrow.bottom-right{border-top-color:#fff;bottom:-10px;right:10px}.introjs-arrow.bottom-middle{border-top-color:#fff;bottom:-10px;left:50%;margin-left:-5px}.introjs-arrow.left{border-right-color:#fff;left:-10px;top:10px}.introjs-arrow.left-bottom{border-right-color:#fff;bottom:10px;left:-10px}.introjs-tooltip{background-color:#fff;border-radius:5px;box-shadow:0 3px 30px rgba(33,33,33,.3);box-sizing:initial;max-width:300px;min-width:250px;position:absolute;transition:opacity .1s ease-out;visibility:visible}.introjs-tooltiptext{padding:20px}.introjs-dontShowAgain{padding-left:20px;padding-right:20px}.introjs-dontShowAgain input{display:inline;height:10px;margin:0 0 2px;padding:0;width:10px}.introjs-dontShowAgain label{background-color:#fff;color:#616161;display:inline-block;font-size:14px;font-weight:400;margin:0 0 0 5px;padding:0;-webkit-user-select:none;user-select:none}.introjs-tooltip-title{font-size:18px;font-weight:700;line-height:1.5;margin:0;min-height:1.5em;padding:0;width:90%}.introjs-tooltip-header{min-height:1.5em;padding-left:20px;padding-right:20px;padding-top:10px;position:relative}.introjs-tooltipbuttons{border-top:1px solid #e0e0e0;padding:10px;text-align:right;white-space:nowrap}.introjs-tooltipbuttons:after{clear:both;content:"";display:block;height:0;visibility:hidden}.introjs-button{zoom:1;background-color:#f4f4f4;border:1px solid #bdbdbd;border-radius:.2em;box-sizing:initial;color:#424242;cursor:pointer;display:inline;font-size:14px;outline:0;overflow:visible;padding:.5rem 1rem;position:relative;text-decoration:none;text-shadow:1px 1px 0 #fff;white-space:nowrap}.introjs-button:hover{background-color:#e0e0e0;border-color:#9e9e9e}.introjs-button:focus,.introjs-button:hover{color:#212121;outline:0;text-decoration:none}.introjs-button:focus{background-color:#eee;border:1px solid #616161;box-shadow:0 0 0 .2rem hsla(0,0%,62%,.5)}.introjs-button:active{background-color:#e0e0e0;border-color:#9e9e9e;color:#212121;outline:0;text-decoration:none}.introjs-button::-moz-focus-inner{border:0;padding:0}.introjs-skipbutton{color:#616161;cursor:pointer;display:inline-block;font-size:22px;font-weight:700;height:45px;line-height:45px;position:absolute;right:0;text-align:center;text-decoration:none;top:0;width:45px}.introjs-skipbutton:focus,.introjs-skipbutton:hover{color:#212121;outline:0;text-decoration:none}.introjs-prevbutton{float:left}.introjs-nextbutton{float:right}.introjs-disabled,.introjs-disabled:focus,.introjs-disabled:hover{background-color:#f4f4f4;background-image:none;border-color:#bdbdbd;box-shadow:none;color:#9e9e9e;cursor:default;text-decoration:none}.introjs-hidden{display:none}.introjs-bullets{padding-bottom:10px;padding-top:10px;text-align:center}.introjs-bullets ul{box-sizing:initial;clear:both;display:inline-block;margin:0 auto;padding:0}.introjs-bullets ul li{box-sizing:initial;float:left;list-style:none;margin:0 2px}.introjs-bullets ul li a{background:#ccc;border-radius:10px;box-sizing:initial;cursor:pointer;display:block;height:6px;text-decoration:none;transition:width .1s ease-in;width:6px}.introjs-bullets ul li a:focus,.introjs-bullets ul li a:hover{background:#999;outline:0;text-decoration:none;width:15px}.introjs-bullets ul li a.active{background:#999;width:15px}.introjs-progress{background-color:#e0e0e0;border-radius:4px;box-sizing:initial;height:10px;margin:10px;overflow:hidden}.introjs-progressbar{background-color:#08c;box-sizing:initial;float:left;font-size:10px;height:100%;line-height:10px;text-align:center;width:0}.introjsFloatingElement{height:0;left:50%;position:absolute;top:50%;width:0}.introjs-fixedTooltip{position:fixed}.introjs-hint{background:0 0;box-sizing:initial;cursor:pointer;height:15px;position:absolute;width:20px}.introjs-hint:focus{border:0;outline:0}.introjs-hint:hover>.introjs-hint-pulse{background-color:rgba(60,60,60,.57)}.introjs-hidehint{display:none}.introjs-fixedhint{position:fixed}@-webkit-keyframes introjspulse{0%{box-shadow:0 0 0 0 rgba(0,0,0,.7);-webkit-transform:scale(.95);transform:scale(.95)}70%{box-shadow:0 0 0 10px transparent;-webkit-transform:scale(1);transform:scale(1)}to{box-shadow:0 0 0 0 transparent;-webkit-transform:scale(.95);transform:scale(.95)}}@keyframes introjspulse{0%{box-shadow:0 0 0 0 rgba(0,0,0,.7);-webkit-transform:scale(.95);transform:scale(.95)}70%{box-shadow:0 0 0 10px transparent;-webkit-transform:scale(1);transform:scale(1)}to{box-shadow:0 0 0 0 transparent;-webkit-transform:scale(.95);transform:scale(.95)}}.introjs-hint-pulse{-webkit-animation:introjspulse 2s infinite;animation:introjspulse 2s infinite;background-color:hsla(0,0%,53%,.24);border-radius:30px;box-sizing:initial;height:15px;position:absolute;transition:all .2s ease-out;width:15px;z-index:10}.introjs-hint-no-anim .introjs-hint-pulse{-webkit-animation:none;animation:none}.introjs-hint-dot{background:0 0;border-radius:60px;box-sizing:initial;height:50px;left:-18px;opacity:0;position:absolute;top:-18px;width:50px;z-index:1}.introjs-tooltip.wide{margin-left:-40vw;max-width:80vw!important;width:80vw}.introjs-tooltip.wide .left{float:left;width:80%}.introjs-tooltip.wide .right{display:inline-block;margin-left:15px}.tour-button{background-color:#0072ce;border-radius:5px;bottom:21px;color:#fff;height:40px;position:fixed;right:25px}
|
|
3
|
+
/*# sourceMappingURL=main.81d34804.css.map*/
|