rack-app-foundation 0.1.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2e2ad2deaeee930b29b26e25fb82b4f38455cd0e
4
+ data.tar.gz: a24bd93123e75b7b0aee54d9ac0ec10edb3419fc
5
+ SHA512:
6
+ metadata.gz: 6a571b0a34f1eed9e8b6662a2c17f493bc3559a8546ccb4f6a4e5c06e655ad31152a0ee2afd8a89211ea154a4e03b155b362aaf6c5eadc1cce9dee29e501f2f3
7
+ data.tar.gz: 48516bbe6743cce68b457c94a0f04b1788cab63a80ad9d854ff3a278c076a88bed8e67cb9632abb8a4a434beec2e59c79ac20daaba2e6e8cf3aec2d4fa7d942a
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.2
4
+ before_install: gem install bundler -v 1.11.0
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at adamluzsi@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -0,0 +1,65 @@
1
+ # Rack::App::Foundation
2
+ ```
3
+
4
+ /|
5
+ . | | /| ,
6
+ /| , . /\| \/ |/|
7
+ , /|/ \/| /| Thanks for using ZURB Foundation for Sites! |\/ |
8
+ /|/ |/ | ------------------------------------------- ||\__/\____/||
9
+ |___| |___| ___|| ======== ||___
10
+ \___| ^^ ^^ |___/ /___|| O O ||___\
11
+ | -[O]--[O]- | || ______, ||
12
+ | ___, | /| |\
13
+ | ... | /_/\\/\ /\//\_\
14
+ \__________/ \/\\//\/
15
+ \/
16
+
17
+
18
+
19
+ ```
20
+
21
+ This project aims to ease the integration of Zurb Foundation with Rack::App , still in active development
22
+
23
+ ## Installation
24
+
25
+ Add this line to your application's Gemfile:
26
+
27
+ ```ruby
28
+ gem 'rack-app-foundation'
29
+ ```
30
+
31
+ And then execute:
32
+
33
+ $ bundle
34
+
35
+ Or install it yourself as:
36
+
37
+ $ gem install rack-app-foundation
38
+
39
+ ## Usage
40
+
41
+ ```ruby
42
+
43
+ require 'rack/app/foundation'
44
+
45
+ class WebApp < Rack::App
46
+
47
+ mount Rack::App::Foundation
48
+
49
+ # or to sub path
50
+ # mount Rack::App::Foundation, to: '/assets'
51
+
52
+ end
53
+
54
+ ```
55
+
56
+ ## Development
57
+
58
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
59
+
60
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
61
+
62
+ ## Contributing
63
+
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rack-app-zurb_foundation5. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
65
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1,27 @@
1
+ require 'rack/app'
2
+ class Rack::App::Foundation < Rack::App
3
+
4
+ ASSET_VERSIONS_FOLDER = ::File.join(::File.dirname(__FILE__), 'foundation', 'assets')
5
+
6
+ on_mounted do |klass, options|
7
+ assets_by_version(options[:version])
8
+ end
9
+
10
+ def self.assets_by_version(version)
11
+ version = latest_version if version.nil?
12
+
13
+ asset_versions_paths = Dir.glob(::File.join(ASSET_VERSIONS_FOLDER, '*'))
14
+ asset_versions_paths.find { |path| ::File.basename(path) == version } || raise("unknown foundation version: #{version}")
15
+
16
+ serve_files_from("assets/#{version}")
17
+ end
18
+
19
+ def self.latest_version
20
+ Dir.glob(::File.join(ASSET_VERSIONS_FOLDER, '*')).map { |fp|
21
+ ::File.basename(fp)
22
+ }.sort_by { |version|
23
+ Gem::Version.new(version)
24
+ }.last
25
+ end
26
+
27
+ end
@@ -0,0 +1,3066 @@
1
+ @charset "UTF-8";
2
+ /**
3
+ * Foundation for Sites by ZURB
4
+ * Version 6.1.2
5
+ * foundation.zurb.com
6
+ * Licensed under MIT Open Source
7
+ */
8
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
9
+ /**
10
+ * 1. Set default font family to sans-serif.
11
+ * 2. Prevent iOS and IE text size adjust after device orientation change,
12
+ * without disabling user zoom.
13
+ */
14
+ html {
15
+ font-family: sans-serif;
16
+ /* 1 */
17
+ -ms-text-size-adjust: 100%;
18
+ /* 2 */
19
+ -webkit-text-size-adjust: 100%;
20
+ /* 2 */ }
21
+
22
+ /**
23
+ * Remove default margin.
24
+ */
25
+ body {
26
+ margin: 0; }
27
+
28
+ /* HTML5 display definitions
29
+ ========================================================================== */
30
+ /**
31
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
32
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
33
+ * and Firefox.
34
+ * Correct `block` display not defined for `main` in IE 11.
35
+ */
36
+ article,
37
+ aside,
38
+ details,
39
+ figcaption,
40
+ figure,
41
+ footer,
42
+ header,
43
+ hgroup,
44
+ main,
45
+ menu,
46
+ nav,
47
+ section,
48
+ summary {
49
+ display: block; }
50
+
51
+ /**
52
+ * 1. Correct `inline-block` display not defined in IE 8/9.
53
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
54
+ */
55
+ audio,
56
+ canvas,
57
+ progress,
58
+ video {
59
+ display: inline-block;
60
+ /* 1 */
61
+ vertical-align: baseline;
62
+ /* 2 */ }
63
+
64
+ /**
65
+ * Prevent modern browsers from displaying `audio` without controls.
66
+ * Remove excess height in iOS 5 devices.
67
+ */
68
+ audio:not([controls]) {
69
+ display: none;
70
+ height: 0; }
71
+
72
+ /**
73
+ * Address `[hidden]` styling not present in IE 8/9/10.
74
+ * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
75
+ */
76
+ [hidden],
77
+ template {
78
+ display: none; }
79
+
80
+ /* Links
81
+ ========================================================================== */
82
+ /**
83
+ * Remove the gray background color from active links in IE 10.
84
+ */
85
+ a {
86
+ background-color: transparent; }
87
+
88
+ /**
89
+ * Improve readability of focused elements when they are also in an
90
+ * active/hover state.
91
+ */
92
+ a:active,
93
+ a:hover {
94
+ outline: 0; }
95
+
96
+ /* Text-level semantics
97
+ ========================================================================== */
98
+ /**
99
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
100
+ */
101
+ abbr[title] {
102
+ border-bottom: 1px dotted; }
103
+
104
+ /**
105
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
106
+ */
107
+ b,
108
+ strong {
109
+ font-weight: bold; }
110
+
111
+ /**
112
+ * Address styling not present in Safari and Chrome.
113
+ */
114
+ dfn {
115
+ font-style: italic; }
116
+
117
+ /**
118
+ * Address variable `h1` font-size and margin within `section` and `article`
119
+ * contexts in Firefox 4+, Safari, and Chrome.
120
+ */
121
+ h1 {
122
+ font-size: 2em;
123
+ margin: 0.67em 0; }
124
+
125
+ /**
126
+ * Address styling not present in IE 8/9.
127
+ */
128
+ mark {
129
+ background: #ff0;
130
+ color: #000; }
131
+
132
+ /**
133
+ * Address inconsistent and variable font size in all browsers.
134
+ */
135
+ small {
136
+ font-size: 80%; }
137
+
138
+ /**
139
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
140
+ */
141
+ sub,
142
+ sup {
143
+ font-size: 75%;
144
+ line-height: 0;
145
+ position: relative;
146
+ vertical-align: baseline; }
147
+
148
+ sup {
149
+ top: -0.5em; }
150
+
151
+ sub {
152
+ bottom: -0.25em; }
153
+
154
+ /* Embedded content
155
+ ========================================================================== */
156
+ /**
157
+ * Remove border when inside `a` element in IE 8/9/10.
158
+ */
159
+ img {
160
+ border: 0; }
161
+
162
+ /**
163
+ * Correct overflow not hidden in IE 9/10/11.
164
+ */
165
+ svg:not(:root) {
166
+ overflow: hidden; }
167
+
168
+ /* Grouping content
169
+ ========================================================================== */
170
+ /**
171
+ * Address margin not present in IE 8/9 and Safari.
172
+ */
173
+ figure {
174
+ margin: 1em 40px; }
175
+
176
+ /**
177
+ * Address differences between Firefox and other browsers.
178
+ */
179
+ hr {
180
+ box-sizing: content-box;
181
+ height: 0; }
182
+
183
+ /**
184
+ * Contain overflow in all browsers.
185
+ */
186
+ pre {
187
+ overflow: auto; }
188
+
189
+ /**
190
+ * Address odd `em`-unit font size rendering in all browsers.
191
+ */
192
+ code,
193
+ kbd,
194
+ pre,
195
+ samp {
196
+ font-family: monospace, monospace;
197
+ font-size: 1em; }
198
+
199
+ /* Forms
200
+ ========================================================================== */
201
+ /**
202
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
203
+ * styling of `select`, unless a `border` property is set.
204
+ */
205
+ /**
206
+ * 1. Correct color not being inherited.
207
+ * Known issue: affects color of disabled elements.
208
+ * 2. Correct font properties not being inherited.
209
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
210
+ */
211
+ button,
212
+ input,
213
+ optgroup,
214
+ select,
215
+ textarea {
216
+ color: inherit;
217
+ /* 1 */
218
+ font: inherit;
219
+ /* 2 */
220
+ margin: 0;
221
+ /* 3 */ }
222
+
223
+ /**
224
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
225
+ */
226
+ button {
227
+ overflow: visible; }
228
+
229
+ /**
230
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
231
+ * All other form control elements do not inherit `text-transform` values.
232
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
233
+ * Correct `select` style inheritance in Firefox.
234
+ */
235
+ button,
236
+ select {
237
+ text-transform: none; }
238
+
239
+ /**
240
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
241
+ * and `video` controls.
242
+ * 2. Correct inability to style clickable `input` types in iOS.
243
+ * 3. Improve usability and consistency of cursor style between image-type
244
+ * `input` and others.
245
+ */
246
+ button,
247
+ html input[type="button"],
248
+ input[type="reset"],
249
+ input[type="submit"] {
250
+ -webkit-appearance: button;
251
+ /* 2 */
252
+ cursor: pointer;
253
+ /* 3 */ }
254
+
255
+ /**
256
+ * Re-set default cursor for disabled elements.
257
+ */
258
+ button[disabled],
259
+ html input[disabled] {
260
+ cursor: default; }
261
+
262
+ /**
263
+ * Remove inner padding and border in Firefox 4+.
264
+ */
265
+ button::-moz-focus-inner,
266
+ input::-moz-focus-inner {
267
+ border: 0;
268
+ padding: 0; }
269
+
270
+ /**
271
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
272
+ * the UA stylesheet.
273
+ */
274
+ input {
275
+ line-height: normal; }
276
+
277
+ /**
278
+ * It's recommended that you don't attempt to style these elements.
279
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
280
+ *
281
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
282
+ * 2. Remove excess padding in IE 8/9/10.
283
+ */
284
+ input[type="checkbox"],
285
+ input[type="radio"] {
286
+ box-sizing: border-box;
287
+ /* 1 */
288
+ padding: 0;
289
+ /* 2 */ }
290
+
291
+ /**
292
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
293
+ * `font-size` values of the `input`, it causes the cursor style of the
294
+ * decrement button to change from `default` to `text`.
295
+ */
296
+ input[type="number"]::-webkit-inner-spin-button,
297
+ input[type="number"]::-webkit-outer-spin-button {
298
+ height: auto; }
299
+
300
+ /**
301
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
302
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
303
+ */
304
+ input[type="search"] {
305
+ -webkit-appearance: textfield;
306
+ /* 1 */
307
+ box-sizing: content-box;
308
+ /* 2 */ }
309
+
310
+ /**
311
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
312
+ * Safari (but not Chrome) clips the cancel button when the search input has
313
+ * padding (and `textfield` appearance).
314
+ */
315
+ input[type="search"]::-webkit-search-cancel-button,
316
+ input[type="search"]::-webkit-search-decoration {
317
+ -webkit-appearance: none; }
318
+
319
+ /**
320
+ * Define consistent border, margin, and padding.
321
+ * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
322
+ */
323
+ /* fieldset {
324
+ border: 1px solid #c0c0c0;
325
+ margin: 0 2px;
326
+ padding: 0.35em 0.625em 0.75em;
327
+ } */
328
+ /**
329
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
330
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
331
+ */
332
+ legend {
333
+ border: 0;
334
+ /* 1 */
335
+ padding: 0;
336
+ /* 2 */ }
337
+
338
+ /**
339
+ * Remove default vertical scrollbar in IE 8/9/10/11.
340
+ */
341
+ textarea {
342
+ overflow: auto; }
343
+
344
+ /**
345
+ * Don't inherit the `font-weight` (applied by a rule above).
346
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
347
+ */
348
+ optgroup {
349
+ font-weight: bold; }
350
+
351
+ /* Tables
352
+ ========================================================================== */
353
+ /**
354
+ * Remove most spacing between table cells.
355
+ */
356
+ table {
357
+ border-collapse: collapse;
358
+ border-spacing: 0; }
359
+
360
+ td,
361
+ th {
362
+ padding: 0; }
363
+
364
+ .foundation-mq {
365
+ font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
366
+
367
+ html {
368
+ font-size: 100%;
369
+ box-sizing: border-box; }
370
+
371
+ *,
372
+ *:before,
373
+ *:after {
374
+ box-sizing: inherit; }
375
+
376
+ body {
377
+ padding: 0;
378
+ margin: 0;
379
+ font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
380
+ font-weight: normal;
381
+ line-height: 1.5;
382
+ color: #0a0a0a;
383
+ background: #fefefe;
384
+ -webkit-font-smoothing: antialiased;
385
+ -moz-osx-font-smoothing: grayscale; }
386
+
387
+ img {
388
+ max-width: 100%;
389
+ height: auto;
390
+ -ms-interpolation-mode: bicubic;
391
+ display: inline-block;
392
+ vertical-align: middle; }
393
+
394
+ textarea {
395
+ height: auto;
396
+ min-height: 50px;
397
+ border-radius: 0; }
398
+
399
+ select {
400
+ width: 100%;
401
+ border-radius: 0; }
402
+
403
+ #map_canvas img,
404
+ #map_canvas embed,
405
+ #map_canvas object,
406
+ .map_canvas img,
407
+ .map_canvas embed,
408
+ .map_canvas object,
409
+ .mqa-display img,
410
+ .mqa-display embed,
411
+ .mqa-display object {
412
+ max-width: none !important; }
413
+
414
+ button {
415
+ -webkit-appearance: none;
416
+ -moz-appearance: none;
417
+ background: transparent;
418
+ padding: 0;
419
+ border: 0;
420
+ border-radius: 0;
421
+ line-height: 1; }
422
+
423
+ .is-visible {
424
+ display: block !important; }
425
+
426
+ .is-hidden {
427
+ display: none !important; }
428
+
429
+ .row {
430
+ max-width: 75rem;
431
+ margin-left: auto;
432
+ margin-right: auto;
433
+ display: -webkit-flex;
434
+ display: -ms-flexbox;
435
+ display: flex;
436
+ -webkit-flex-flow: row wrap;
437
+ -ms-flex-flow: row wrap;
438
+ flex-flow: row wrap; }
439
+ .row .row {
440
+ margin-left: -0.625rem;
441
+ margin-right: -0.625rem; }
442
+ @media screen and (min-width: 40em) {
443
+ .row .row {
444
+ margin-left: -0.9375rem;
445
+ margin-right: -0.9375rem; } }
446
+ .row.expanded {
447
+ max-width: none; }
448
+ .row.collapse > .column, .row.collapse > .columns {
449
+ padding-left: 0;
450
+ padding-right: 0; }
451
+
452
+ .column, .columns {
453
+ padding-left: 0.625rem;
454
+ padding-right: 0.625rem;
455
+ -webkit-flex: 1 1 0px;
456
+ -ms-flex: 1 1 0px;
457
+ flex: 1 1 0px; }
458
+ @media screen and (min-width: 40em) {
459
+ .column, .columns {
460
+ padding-left: 0.9375rem;
461
+ padding-right: 0.9375rem; } }
462
+
463
+ .column.row.row, .row.row.columns {
464
+ float: none; }
465
+ .row .column.row.row, .row .row.row.columns {
466
+ padding-left: 0;
467
+ padding-right: 0;
468
+ margin-left: 0;
469
+ margin-right: 0; }
470
+
471
+ .small-1 {
472
+ -webkit-flex: 0 0 8.33333%;
473
+ -ms-flex: 0 0 8.33333%;
474
+ flex: 0 0 8.33333%;
475
+ max-width: 8.33333%; }
476
+
477
+ .small-offset-0 {
478
+ margin-left: 0%; }
479
+
480
+ .small-2 {
481
+ -webkit-flex: 0 0 16.66667%;
482
+ -ms-flex: 0 0 16.66667%;
483
+ flex: 0 0 16.66667%;
484
+ max-width: 16.66667%; }
485
+
486
+ .small-offset-1 {
487
+ margin-left: 8.33333%; }
488
+
489
+ .small-3 {
490
+ -webkit-flex: 0 0 25%;
491
+ -ms-flex: 0 0 25%;
492
+ flex: 0 0 25%;
493
+ max-width: 25%; }
494
+
495
+ .small-offset-2 {
496
+ margin-left: 16.66667%; }
497
+
498
+ .small-4 {
499
+ -webkit-flex: 0 0 33.33333%;
500
+ -ms-flex: 0 0 33.33333%;
501
+ flex: 0 0 33.33333%;
502
+ max-width: 33.33333%; }
503
+
504
+ .small-offset-3 {
505
+ margin-left: 25%; }
506
+
507
+ .small-5 {
508
+ -webkit-flex: 0 0 41.66667%;
509
+ -ms-flex: 0 0 41.66667%;
510
+ flex: 0 0 41.66667%;
511
+ max-width: 41.66667%; }
512
+
513
+ .small-offset-4 {
514
+ margin-left: 33.33333%; }
515
+
516
+ .small-6 {
517
+ -webkit-flex: 0 0 50%;
518
+ -ms-flex: 0 0 50%;
519
+ flex: 0 0 50%;
520
+ max-width: 50%; }
521
+
522
+ .small-offset-5 {
523
+ margin-left: 41.66667%; }
524
+
525
+ .small-7 {
526
+ -webkit-flex: 0 0 58.33333%;
527
+ -ms-flex: 0 0 58.33333%;
528
+ flex: 0 0 58.33333%;
529
+ max-width: 58.33333%; }
530
+
531
+ .small-offset-6 {
532
+ margin-left: 50%; }
533
+
534
+ .small-8 {
535
+ -webkit-flex: 0 0 66.66667%;
536
+ -ms-flex: 0 0 66.66667%;
537
+ flex: 0 0 66.66667%;
538
+ max-width: 66.66667%; }
539
+
540
+ .small-offset-7 {
541
+ margin-left: 58.33333%; }
542
+
543
+ .small-9 {
544
+ -webkit-flex: 0 0 75%;
545
+ -ms-flex: 0 0 75%;
546
+ flex: 0 0 75%;
547
+ max-width: 75%; }
548
+
549
+ .small-offset-8 {
550
+ margin-left: 66.66667%; }
551
+
552
+ .small-10 {
553
+ -webkit-flex: 0 0 83.33333%;
554
+ -ms-flex: 0 0 83.33333%;
555
+ flex: 0 0 83.33333%;
556
+ max-width: 83.33333%; }
557
+
558
+ .small-offset-9 {
559
+ margin-left: 75%; }
560
+
561
+ .small-11 {
562
+ -webkit-flex: 0 0 91.66667%;
563
+ -ms-flex: 0 0 91.66667%;
564
+ flex: 0 0 91.66667%;
565
+ max-width: 91.66667%; }
566
+
567
+ .small-offset-10 {
568
+ margin-left: 83.33333%; }
569
+
570
+ .small-12 {
571
+ -webkit-flex: 0 0 100%;
572
+ -ms-flex: 0 0 100%;
573
+ flex: 0 0 100%;
574
+ max-width: 100%; }
575
+
576
+ .small-offset-11 {
577
+ margin-left: 91.66667%; }
578
+
579
+ .small-order-1 {
580
+ -webkit-order: 1;
581
+ -ms-flex-order: 1;
582
+ order: 1; }
583
+
584
+ .small-order-2 {
585
+ -webkit-order: 2;
586
+ -ms-flex-order: 2;
587
+ order: 2; }
588
+
589
+ .small-order-3 {
590
+ -webkit-order: 3;
591
+ -ms-flex-order: 3;
592
+ order: 3; }
593
+
594
+ .small-order-4 {
595
+ -webkit-order: 4;
596
+ -ms-flex-order: 4;
597
+ order: 4; }
598
+
599
+ .small-order-5 {
600
+ -webkit-order: 5;
601
+ -ms-flex-order: 5;
602
+ order: 5; }
603
+
604
+ .small-order-6 {
605
+ -webkit-order: 6;
606
+ -ms-flex-order: 6;
607
+ order: 6; }
608
+
609
+ .small-collapse > .column, .small-collapse > .columns {
610
+ padding-left: 0;
611
+ padding-right: 0; }
612
+
613
+ .small-uncollapse > .column, .small-uncollapse > .columns {
614
+ padding-left: 0.625rem;
615
+ padding-right: 0.625rem; }
616
+
617
+ @media screen and (min-width: 40em) {
618
+ .medium-1 {
619
+ -webkit-flex: 0 0 8.33333%;
620
+ -ms-flex: 0 0 8.33333%;
621
+ flex: 0 0 8.33333%;
622
+ max-width: 8.33333%; }
623
+ .medium-offset-0 {
624
+ margin-left: 0%; }
625
+ .medium-2 {
626
+ -webkit-flex: 0 0 16.66667%;
627
+ -ms-flex: 0 0 16.66667%;
628
+ flex: 0 0 16.66667%;
629
+ max-width: 16.66667%; }
630
+ .medium-offset-1 {
631
+ margin-left: 8.33333%; }
632
+ .medium-3 {
633
+ -webkit-flex: 0 0 25%;
634
+ -ms-flex: 0 0 25%;
635
+ flex: 0 0 25%;
636
+ max-width: 25%; }
637
+ .medium-offset-2 {
638
+ margin-left: 16.66667%; }
639
+ .medium-4 {
640
+ -webkit-flex: 0 0 33.33333%;
641
+ -ms-flex: 0 0 33.33333%;
642
+ flex: 0 0 33.33333%;
643
+ max-width: 33.33333%; }
644
+ .medium-offset-3 {
645
+ margin-left: 25%; }
646
+ .medium-5 {
647
+ -webkit-flex: 0 0 41.66667%;
648
+ -ms-flex: 0 0 41.66667%;
649
+ flex: 0 0 41.66667%;
650
+ max-width: 41.66667%; }
651
+ .medium-offset-4 {
652
+ margin-left: 33.33333%; }
653
+ .medium-6 {
654
+ -webkit-flex: 0 0 50%;
655
+ -ms-flex: 0 0 50%;
656
+ flex: 0 0 50%;
657
+ max-width: 50%; }
658
+ .medium-offset-5 {
659
+ margin-left: 41.66667%; }
660
+ .medium-7 {
661
+ -webkit-flex: 0 0 58.33333%;
662
+ -ms-flex: 0 0 58.33333%;
663
+ flex: 0 0 58.33333%;
664
+ max-width: 58.33333%; }
665
+ .medium-offset-6 {
666
+ margin-left: 50%; }
667
+ .medium-8 {
668
+ -webkit-flex: 0 0 66.66667%;
669
+ -ms-flex: 0 0 66.66667%;
670
+ flex: 0 0 66.66667%;
671
+ max-width: 66.66667%; }
672
+ .medium-offset-7 {
673
+ margin-left: 58.33333%; }
674
+ .medium-9 {
675
+ -webkit-flex: 0 0 75%;
676
+ -ms-flex: 0 0 75%;
677
+ flex: 0 0 75%;
678
+ max-width: 75%; }
679
+ .medium-offset-8 {
680
+ margin-left: 66.66667%; }
681
+ .medium-10 {
682
+ -webkit-flex: 0 0 83.33333%;
683
+ -ms-flex: 0 0 83.33333%;
684
+ flex: 0 0 83.33333%;
685
+ max-width: 83.33333%; }
686
+ .medium-offset-9 {
687
+ margin-left: 75%; }
688
+ .medium-11 {
689
+ -webkit-flex: 0 0 91.66667%;
690
+ -ms-flex: 0 0 91.66667%;
691
+ flex: 0 0 91.66667%;
692
+ max-width: 91.66667%; }
693
+ .medium-offset-10 {
694
+ margin-left: 83.33333%; }
695
+ .medium-12 {
696
+ -webkit-flex: 0 0 100%;
697
+ -ms-flex: 0 0 100%;
698
+ flex: 0 0 100%;
699
+ max-width: 100%; }
700
+ .medium-offset-11 {
701
+ margin-left: 91.66667%; }
702
+ .medium-order-1 {
703
+ -webkit-order: 1;
704
+ -ms-flex-order: 1;
705
+ order: 1; }
706
+ .medium-order-2 {
707
+ -webkit-order: 2;
708
+ -ms-flex-order: 2;
709
+ order: 2; }
710
+ .medium-order-3 {
711
+ -webkit-order: 3;
712
+ -ms-flex-order: 3;
713
+ order: 3; }
714
+ .medium-order-4 {
715
+ -webkit-order: 4;
716
+ -ms-flex-order: 4;
717
+ order: 4; }
718
+ .medium-order-5 {
719
+ -webkit-order: 5;
720
+ -ms-flex-order: 5;
721
+ order: 5; }
722
+ .medium-order-6 {
723
+ -webkit-order: 6;
724
+ -ms-flex-order: 6;
725
+ order: 6; } }
726
+
727
+ @media screen and (min-width: 40em) and (min-width: 40em) {
728
+ .medium-expand {
729
+ -webkit-flex: 1 1 0px;
730
+ -ms-flex: 1 1 0px;
731
+ flex: 1 1 0px; } }
732
+
733
+ .row.medium-unstack .column, .row.medium-unstack .columns {
734
+ -webkit-flex: 0 0 100%;
735
+ -ms-flex: 0 0 100%;
736
+ flex: 0 0 100%; }
737
+ @media screen and (min-width: 40em) {
738
+ .row.medium-unstack .column, .row.medium-unstack .columns {
739
+ -webkit-flex: 1 1 0px;
740
+ -ms-flex: 1 1 0px;
741
+ flex: 1 1 0px; } }
742
+
743
+ @media screen and (min-width: 40em) {
744
+ .medium-collapse > .column, .medium-collapse > .columns {
745
+ padding-left: 0;
746
+ padding-right: 0; }
747
+ .medium-uncollapse > .column, .medium-uncollapse > .columns {
748
+ padding-left: 0.9375rem;
749
+ padding-right: 0.9375rem; } }
750
+
751
+ @media screen and (min-width: 64em) {
752
+ .large-1 {
753
+ -webkit-flex: 0 0 8.33333%;
754
+ -ms-flex: 0 0 8.33333%;
755
+ flex: 0 0 8.33333%;
756
+ max-width: 8.33333%; }
757
+ .large-offset-0 {
758
+ margin-left: 0%; }
759
+ .large-2 {
760
+ -webkit-flex: 0 0 16.66667%;
761
+ -ms-flex: 0 0 16.66667%;
762
+ flex: 0 0 16.66667%;
763
+ max-width: 16.66667%; }
764
+ .large-offset-1 {
765
+ margin-left: 8.33333%; }
766
+ .large-3 {
767
+ -webkit-flex: 0 0 25%;
768
+ -ms-flex: 0 0 25%;
769
+ flex: 0 0 25%;
770
+ max-width: 25%; }
771
+ .large-offset-2 {
772
+ margin-left: 16.66667%; }
773
+ .large-4 {
774
+ -webkit-flex: 0 0 33.33333%;
775
+ -ms-flex: 0 0 33.33333%;
776
+ flex: 0 0 33.33333%;
777
+ max-width: 33.33333%; }
778
+ .large-offset-3 {
779
+ margin-left: 25%; }
780
+ .large-5 {
781
+ -webkit-flex: 0 0 41.66667%;
782
+ -ms-flex: 0 0 41.66667%;
783
+ flex: 0 0 41.66667%;
784
+ max-width: 41.66667%; }
785
+ .large-offset-4 {
786
+ margin-left: 33.33333%; }
787
+ .large-6 {
788
+ -webkit-flex: 0 0 50%;
789
+ -ms-flex: 0 0 50%;
790
+ flex: 0 0 50%;
791
+ max-width: 50%; }
792
+ .large-offset-5 {
793
+ margin-left: 41.66667%; }
794
+ .large-7 {
795
+ -webkit-flex: 0 0 58.33333%;
796
+ -ms-flex: 0 0 58.33333%;
797
+ flex: 0 0 58.33333%;
798
+ max-width: 58.33333%; }
799
+ .large-offset-6 {
800
+ margin-left: 50%; }
801
+ .large-8 {
802
+ -webkit-flex: 0 0 66.66667%;
803
+ -ms-flex: 0 0 66.66667%;
804
+ flex: 0 0 66.66667%;
805
+ max-width: 66.66667%; }
806
+ .large-offset-7 {
807
+ margin-left: 58.33333%; }
808
+ .large-9 {
809
+ -webkit-flex: 0 0 75%;
810
+ -ms-flex: 0 0 75%;
811
+ flex: 0 0 75%;
812
+ max-width: 75%; }
813
+ .large-offset-8 {
814
+ margin-left: 66.66667%; }
815
+ .large-10 {
816
+ -webkit-flex: 0 0 83.33333%;
817
+ -ms-flex: 0 0 83.33333%;
818
+ flex: 0 0 83.33333%;
819
+ max-width: 83.33333%; }
820
+ .large-offset-9 {
821
+ margin-left: 75%; }
822
+ .large-11 {
823
+ -webkit-flex: 0 0 91.66667%;
824
+ -ms-flex: 0 0 91.66667%;
825
+ flex: 0 0 91.66667%;
826
+ max-width: 91.66667%; }
827
+ .large-offset-10 {
828
+ margin-left: 83.33333%; }
829
+ .large-12 {
830
+ -webkit-flex: 0 0 100%;
831
+ -ms-flex: 0 0 100%;
832
+ flex: 0 0 100%;
833
+ max-width: 100%; }
834
+ .large-offset-11 {
835
+ margin-left: 91.66667%; }
836
+ .large-order-1 {
837
+ -webkit-order: 1;
838
+ -ms-flex-order: 1;
839
+ order: 1; }
840
+ .large-order-2 {
841
+ -webkit-order: 2;
842
+ -ms-flex-order: 2;
843
+ order: 2; }
844
+ .large-order-3 {
845
+ -webkit-order: 3;
846
+ -ms-flex-order: 3;
847
+ order: 3; }
848
+ .large-order-4 {
849
+ -webkit-order: 4;
850
+ -ms-flex-order: 4;
851
+ order: 4; }
852
+ .large-order-5 {
853
+ -webkit-order: 5;
854
+ -ms-flex-order: 5;
855
+ order: 5; }
856
+ .large-order-6 {
857
+ -webkit-order: 6;
858
+ -ms-flex-order: 6;
859
+ order: 6; } }
860
+
861
+ @media screen and (min-width: 64em) and (min-width: 64em) {
862
+ .large-expand {
863
+ -webkit-flex: 1 1 0px;
864
+ -ms-flex: 1 1 0px;
865
+ flex: 1 1 0px; } }
866
+
867
+ .row.large-unstack .column, .row.large-unstack .columns {
868
+ -webkit-flex: 0 0 100%;
869
+ -ms-flex: 0 0 100%;
870
+ flex: 0 0 100%; }
871
+ @media screen and (min-width: 64em) {
872
+ .row.large-unstack .column, .row.large-unstack .columns {
873
+ -webkit-flex: 1 1 0px;
874
+ -ms-flex: 1 1 0px;
875
+ flex: 1 1 0px; } }
876
+
877
+ @media screen and (min-width: 64em) {
878
+ .large-collapse > .column, .large-collapse > .columns {
879
+ padding-left: 0;
880
+ padding-right: 0; }
881
+ .large-uncollapse > .column, .large-uncollapse > .columns {
882
+ padding-left: 0.9375rem;
883
+ padding-right: 0.9375rem; } }
884
+
885
+ .shrink {
886
+ -webkit-flex: 0 0 auto;
887
+ -ms-flex: 0 0 auto;
888
+ flex: 0 0 auto;
889
+ max-width: 100%; }
890
+
891
+ .row.align-right {
892
+ -webkit-justify-content: flex-end;
893
+ -ms-flex-pack: end;
894
+ justify-content: flex-end; }
895
+
896
+ .row.align-center {
897
+ -webkit-justify-content: center;
898
+ -ms-flex-pack: center;
899
+ justify-content: center; }
900
+
901
+ .row.align-justify {
902
+ -webkit-justify-content: space-between;
903
+ -ms-flex-pack: justify;
904
+ justify-content: space-between; }
905
+
906
+ .row.align-spaced {
907
+ -webkit-justify-content: space-around;
908
+ -ms-flex-pack: distribute;
909
+ justify-content: space-around; }
910
+
911
+ .row.align-top {
912
+ -webkit-align-items: flex-start;
913
+ -ms-flex-align: start;
914
+ -ms-grid-row-align: flex-start;
915
+ align-items: flex-start; }
916
+
917
+ .column.align-top, .align-top.columns {
918
+ -webkit-align-self: flex-start;
919
+ -ms-flex-item-align: start;
920
+ align-self: flex-start; }
921
+
922
+ .row.align-bottom {
923
+ -webkit-align-items: flex-end;
924
+ -ms-flex-align: end;
925
+ -ms-grid-row-align: flex-end;
926
+ align-items: flex-end; }
927
+
928
+ .column.align-bottom, .align-bottom.columns {
929
+ -webkit-align-self: flex-end;
930
+ -ms-flex-item-align: end;
931
+ align-self: flex-end; }
932
+
933
+ .row.align-middle {
934
+ -webkit-align-items: center;
935
+ -ms-flex-align: center;
936
+ -ms-grid-row-align: center;
937
+ align-items: center; }
938
+
939
+ .column.align-middle, .align-middle.columns {
940
+ -webkit-align-self: center;
941
+ -ms-flex-item-align: center;
942
+ align-self: center; }
943
+
944
+ .row.align-stretch {
945
+ -webkit-align-items: stretch;
946
+ -ms-flex-align: stretch;
947
+ -ms-grid-row-align: stretch;
948
+ align-items: stretch; }
949
+
950
+ .column.align-stretch, .align-stretch.columns {
951
+ -webkit-align-self: stretch;
952
+ -ms-flex-item-align: stretch;
953
+ align-self: stretch; }
954
+
955
+ div,
956
+ dl,
957
+ dt,
958
+ dd,
959
+ ul,
960
+ ol,
961
+ li,
962
+ h1,
963
+ h2,
964
+ h3,
965
+ h4,
966
+ h5,
967
+ h6,
968
+ pre,
969
+ form,
970
+ p,
971
+ blockquote,
972
+ th,
973
+ td {
974
+ margin: 0;
975
+ padding: 0; }
976
+
977
+ p {
978
+ font-size: inherit;
979
+ line-height: 1.6;
980
+ margin-bottom: 1rem;
981
+ text-rendering: optimizeLegibility; }
982
+
983
+ em,
984
+ i {
985
+ font-style: italic;
986
+ line-height: inherit; }
987
+
988
+ strong,
989
+ b {
990
+ font-weight: bold;
991
+ line-height: inherit; }
992
+
993
+ small {
994
+ font-size: 80%;
995
+ line-height: inherit; }
996
+
997
+ h1,
998
+ h2,
999
+ h3,
1000
+ h4,
1001
+ h5,
1002
+ h6 {
1003
+ font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
1004
+ font-weight: normal;
1005
+ font-style: normal;
1006
+ color: inherit;
1007
+ text-rendering: optimizeLegibility;
1008
+ margin-top: 0;
1009
+ margin-bottom: 0.5rem;
1010
+ line-height: 1.4; }
1011
+ h1 small,
1012
+ h2 small,
1013
+ h3 small,
1014
+ h4 small,
1015
+ h5 small,
1016
+ h6 small {
1017
+ color: #cacaca;
1018
+ line-height: 0; }
1019
+
1020
+ h1 {
1021
+ font-size: 1.5rem; }
1022
+
1023
+ h2 {
1024
+ font-size: 1.25rem; }
1025
+
1026
+ h3 {
1027
+ font-size: 1.1875rem; }
1028
+
1029
+ h4 {
1030
+ font-size: 1.125rem; }
1031
+
1032
+ h5 {
1033
+ font-size: 1.0625rem; }
1034
+
1035
+ h6 {
1036
+ font-size: 1rem; }
1037
+
1038
+ @media screen and (min-width: 40em) {
1039
+ h1 {
1040
+ font-size: 3rem; }
1041
+ h2 {
1042
+ font-size: 2.5rem; }
1043
+ h3 {
1044
+ font-size: 1.9375rem; }
1045
+ h4 {
1046
+ font-size: 1.5625rem; }
1047
+ h5 {
1048
+ font-size: 1.25rem; }
1049
+ h6 {
1050
+ font-size: 1rem; } }
1051
+
1052
+ a {
1053
+ color: #2199e8;
1054
+ text-decoration: none;
1055
+ line-height: inherit;
1056
+ cursor: pointer; }
1057
+ a:hover, a:focus {
1058
+ color: #1585cf; }
1059
+ a img {
1060
+ border: 0; }
1061
+
1062
+ hr {
1063
+ max-width: 75rem;
1064
+ height: 0;
1065
+ border-right: 0;
1066
+ border-top: 0;
1067
+ border-bottom: 1px solid #cacaca;
1068
+ border-left: 0;
1069
+ margin: 1.25rem auto;
1070
+ clear: both; }
1071
+
1072
+ ul,
1073
+ ol,
1074
+ dl {
1075
+ line-height: 1.6;
1076
+ margin-bottom: 1rem;
1077
+ list-style-position: outside; }
1078
+
1079
+ li {
1080
+ font-size: inherit; }
1081
+
1082
+ ul {
1083
+ list-style-type: disc;
1084
+ margin-left: 1.25rem; }
1085
+
1086
+ ol {
1087
+ margin-left: 1.25rem; }
1088
+
1089
+ ul ul, ol ul, ul ol, ol ol {
1090
+ margin-left: 1.25rem;
1091
+ margin-bottom: 0; }
1092
+
1093
+ dl {
1094
+ margin-bottom: 1rem; }
1095
+ dl dt {
1096
+ margin-bottom: 0.3rem;
1097
+ font-weight: bold; }
1098
+
1099
+ blockquote {
1100
+ margin: 0 0 1rem;
1101
+ padding: 0.5625rem 1.25rem 0 1.1875rem;
1102
+ border-left: 1px solid #cacaca; }
1103
+ blockquote, blockquote p {
1104
+ line-height: 1.6;
1105
+ color: #8a8a8a; }
1106
+
1107
+ cite {
1108
+ display: block;
1109
+ font-size: 0.8125rem;
1110
+ color: #8a8a8a; }
1111
+ cite:before {
1112
+ content: '\2014 \0020'; }
1113
+
1114
+ abbr {
1115
+ color: #0a0a0a;
1116
+ cursor: help;
1117
+ border-bottom: 1px dotted #0a0a0a; }
1118
+
1119
+ code {
1120
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
1121
+ font-weight: normal;
1122
+ color: #0a0a0a;
1123
+ background-color: #e6e6e6;
1124
+ border: 1px solid #cacaca;
1125
+ padding: 0.125rem 0.3125rem 0.0625rem; }
1126
+
1127
+ kbd {
1128
+ padding: 0.125rem 0.25rem 0;
1129
+ margin: 0;
1130
+ background-color: #e6e6e6;
1131
+ color: #0a0a0a;
1132
+ font-family: Consolas, "Liberation Mono", Courier, monospace; }
1133
+
1134
+ .subheader {
1135
+ margin-top: 0.2rem;
1136
+ margin-bottom: 0.5rem;
1137
+ font-weight: normal;
1138
+ line-height: 1.4;
1139
+ color: #8a8a8a; }
1140
+
1141
+ .lead {
1142
+ font-size: 125%;
1143
+ line-height: 1.6; }
1144
+
1145
+ .stat {
1146
+ font-size: 2.5rem;
1147
+ line-height: 1; }
1148
+ p + .stat {
1149
+ margin-top: -1rem; }
1150
+
1151
+ .no-bullet {
1152
+ margin-left: 0;
1153
+ list-style: none; }
1154
+
1155
+ .text-left {
1156
+ text-align: left; }
1157
+
1158
+ .text-right {
1159
+ text-align: right; }
1160
+
1161
+ .text-center {
1162
+ text-align: center; }
1163
+
1164
+ .text-justify {
1165
+ text-align: justify; }
1166
+
1167
+ @media screen and (min-width: 40em) {
1168
+ .medium-text-left {
1169
+ text-align: left; }
1170
+ .medium-text-right {
1171
+ text-align: right; }
1172
+ .medium-text-center {
1173
+ text-align: center; }
1174
+ .medium-text-justify {
1175
+ text-align: justify; } }
1176
+
1177
+ @media screen and (min-width: 64em) {
1178
+ .large-text-left {
1179
+ text-align: left; }
1180
+ .large-text-right {
1181
+ text-align: right; }
1182
+ .large-text-center {
1183
+ text-align: center; }
1184
+ .large-text-justify {
1185
+ text-align: justify; } }
1186
+
1187
+ .show-for-print {
1188
+ display: none !important; }
1189
+
1190
+ @media print {
1191
+ * {
1192
+ background: transparent !important;
1193
+ color: black !important;
1194
+ box-shadow: none !important;
1195
+ text-shadow: none !important; }
1196
+ .show-for-print {
1197
+ display: block !important; }
1198
+ .hide-for-print {
1199
+ display: none !important; }
1200
+ table.show-for-print {
1201
+ display: table !important; }
1202
+ thead.show-for-print {
1203
+ display: table-header-group !important; }
1204
+ tbody.show-for-print {
1205
+ display: table-row-group !important; }
1206
+ tr.show-for-print {
1207
+ display: table-row !important; }
1208
+ td.show-for-print {
1209
+ display: table-cell !important; }
1210
+ th.show-for-print {
1211
+ display: table-cell !important; }
1212
+ a,
1213
+ a:visited {
1214
+ text-decoration: underline; }
1215
+ a[href]:after {
1216
+ content: " (" attr(href) ")"; }
1217
+ .ir a:after,
1218
+ a[href^='javascript:']:after,
1219
+ a[href^='#']:after {
1220
+ content: ''; }
1221
+ abbr[title]:after {
1222
+ content: " (" attr(title) ")"; }
1223
+ pre,
1224
+ blockquote {
1225
+ border: 1px solid #999;
1226
+ page-break-inside: avoid; }
1227
+ thead {
1228
+ display: table-header-group; }
1229
+ tr,
1230
+ img {
1231
+ page-break-inside: avoid; }
1232
+ img {
1233
+ max-width: 100% !important; }
1234
+ @page {
1235
+ margin: 0.5cm; }
1236
+ p,
1237
+ h2,
1238
+ h3 {
1239
+ orphans: 3;
1240
+ widows: 3; }
1241
+ h2,
1242
+ h3 {
1243
+ page-break-after: avoid; } }
1244
+
1245
+ .button {
1246
+ display: inline-block;
1247
+ text-align: center;
1248
+ line-height: 1;
1249
+ cursor: pointer;
1250
+ -webkit-appearance: none;
1251
+ transition: background-color 0.25s ease-out, color 0.25s ease-out;
1252
+ vertical-align: middle;
1253
+ border: 1px solid transparent;
1254
+ border-radius: 0;
1255
+ padding: 0.85em 1em;
1256
+ margin: 0 0 1rem 0;
1257
+ font-size: 0.9rem;
1258
+ background-color: #2199e8;
1259
+ color: #fff; }
1260
+ [data-whatinput='mouse'] .button {
1261
+ outline: 0; }
1262
+ .button:hover, .button:focus {
1263
+ background-color: #1583cc;
1264
+ color: #fff; }
1265
+ .button.tiny {
1266
+ font-size: 0.6rem; }
1267
+ .button.small {
1268
+ font-size: 0.75rem; }
1269
+ .button.large {
1270
+ font-size: 1.25rem; }
1271
+ .button.expanded {
1272
+ display: block;
1273
+ width: 100%;
1274
+ margin-left: 0;
1275
+ margin-right: 0; }
1276
+ .button.primary {
1277
+ background-color: #2199e8;
1278
+ color: #fff; }
1279
+ .button.primary:hover, .button.primary:focus {
1280
+ background-color: #147cc0;
1281
+ color: #fff; }
1282
+ .button.secondary {
1283
+ background-color: #777;
1284
+ color: #fff; }
1285
+ .button.secondary:hover, .button.secondary:focus {
1286
+ background-color: #5f5f5f;
1287
+ color: #fff; }
1288
+ .button.success {
1289
+ background-color: #3adb76;
1290
+ color: #fff; }
1291
+ .button.success:hover, .button.success:focus {
1292
+ background-color: #22bb5b;
1293
+ color: #fff; }
1294
+ .button.alert {
1295
+ background-color: #ec5840;
1296
+ color: #fff; }
1297
+ .button.alert:hover, .button.alert:focus {
1298
+ background-color: #da3116;
1299
+ color: #fff; }
1300
+ .button.warning {
1301
+ background-color: #ffae00;
1302
+ color: #fff; }
1303
+ .button.warning:hover, .button.warning:focus {
1304
+ background-color: #cc8b00;
1305
+ color: #fff; }
1306
+ .button.hollow {
1307
+ border: 1px solid #2199e8;
1308
+ color: #2199e8; }
1309
+ .button.hollow, .button.hollow:hover, .button.hollow:focus {
1310
+ background-color: transparent; }
1311
+ .button.hollow:hover, .button.hollow:focus {
1312
+ border-color: #0c4d78;
1313
+ color: #0c4d78; }
1314
+ .button.hollow.primary {
1315
+ border: 1px solid #2199e8;
1316
+ color: #2199e8; }
1317
+ .button.hollow.primary:hover, .button.hollow.primary:focus {
1318
+ border-color: #0c4d78;
1319
+ color: #0c4d78; }
1320
+ .button.hollow.secondary {
1321
+ border: 1px solid #777;
1322
+ color: #777; }
1323
+ .button.hollow.secondary:hover, .button.hollow.secondary:focus {
1324
+ border-color: #3c3c3c;
1325
+ color: #3c3c3c; }
1326
+ .button.hollow.success {
1327
+ border: 1px solid #3adb76;
1328
+ color: #3adb76; }
1329
+ .button.hollow.success:hover, .button.hollow.success:focus {
1330
+ border-color: #157539;
1331
+ color: #157539; }
1332
+ .button.hollow.alert {
1333
+ border: 1px solid #ec5840;
1334
+ color: #ec5840; }
1335
+ .button.hollow.alert:hover, .button.hollow.alert:focus {
1336
+ border-color: #881f0e;
1337
+ color: #881f0e; }
1338
+ .button.hollow.warning {
1339
+ border: 1px solid #ffae00;
1340
+ color: #ffae00; }
1341
+ .button.hollow.warning:hover, .button.hollow.warning:focus {
1342
+ border-color: #805700;
1343
+ color: #805700; }
1344
+ .button.disabled, .button[disabled] {
1345
+ opacity: 0.25;
1346
+ cursor: not-allowed;
1347
+ pointer-events: none; }
1348
+ .button.dropdown::after {
1349
+ content: '';
1350
+ display: block;
1351
+ width: 0;
1352
+ height: 0;
1353
+ border: inset 0.4em;
1354
+ border-color: #fefefe transparent transparent;
1355
+ border-top-style: solid;
1356
+ border-bottom-width: 0;
1357
+ position: relative;
1358
+ top: 0.4em;
1359
+ float: right;
1360
+ margin-left: 1em;
1361
+ display: inline-block; }
1362
+ .button.arrow-only::after {
1363
+ margin-left: 0;
1364
+ float: none;
1365
+ top: 0.2em; }
1366
+
1367
+ [type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
1368
+ textarea {
1369
+ display: block;
1370
+ box-sizing: border-box;
1371
+ width: 100%;
1372
+ height: 2.4375rem;
1373
+ padding: 0.5rem;
1374
+ border: 1px solid #cacaca;
1375
+ margin: 0 0 1rem;
1376
+ font-family: inherit;
1377
+ font-size: 1rem;
1378
+ color: #0a0a0a;
1379
+ background-color: #fefefe;
1380
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1381
+ border-radius: 0;
1382
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1383
+ -webkit-appearance: none;
1384
+ -moz-appearance: none; }
1385
+ [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
1386
+ textarea:focus {
1387
+ border: 1px solid #8a8a8a;
1388
+ background-color: #fefefe;
1389
+ outline: none;
1390
+ box-shadow: 0 0 5px #cacaca;
1391
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
1392
+
1393
+ textarea {
1394
+ max-width: 100%; }
1395
+ textarea[rows] {
1396
+ height: auto; }
1397
+
1398
+ input:disabled, input[readonly],
1399
+ textarea:disabled,
1400
+ textarea[readonly] {
1401
+ background-color: #e6e6e6;
1402
+ cursor: default; }
1403
+
1404
+ [type='submit'],
1405
+ [type='button'] {
1406
+ border-radius: 0;
1407
+ -webkit-appearance: none;
1408
+ -moz-appearance: none; }
1409
+
1410
+ input[type='search'] {
1411
+ box-sizing: border-box; }
1412
+
1413
+ [type='file'],
1414
+ [type='checkbox'],
1415
+ [type='radio'] {
1416
+ margin: 0 0 1rem; }
1417
+
1418
+ [type='checkbox'] + label,
1419
+ [type='radio'] + label {
1420
+ display: inline-block;
1421
+ margin-left: 0.5rem;
1422
+ margin-right: 1rem;
1423
+ margin-bottom: 0;
1424
+ vertical-align: baseline; }
1425
+
1426
+ label > [type='checkbox'],
1427
+ label > [type='label'] {
1428
+ margin-right: 0.5rem; }
1429
+
1430
+ [type='file'] {
1431
+ width: 100%; }
1432
+
1433
+ label {
1434
+ display: block;
1435
+ margin: 0;
1436
+ font-size: 0.875rem;
1437
+ font-weight: normal;
1438
+ line-height: 1.8;
1439
+ color: #0a0a0a; }
1440
+ label.middle {
1441
+ margin: 0 0 1rem;
1442
+ padding: 0.5625rem 0; }
1443
+
1444
+ .help-text {
1445
+ margin-top: -0.5rem;
1446
+ font-size: 0.8125rem;
1447
+ font-style: italic;
1448
+ color: #333; }
1449
+
1450
+ .input-group {
1451
+ display: table;
1452
+ width: 100%;
1453
+ margin-bottom: 1rem; }
1454
+ .input-group > :first-child {
1455
+ border-radius: 0 0 0 0; }
1456
+ .input-group > :last-child > * {
1457
+ border-radius: 0 0 0 0; }
1458
+
1459
+ .input-group-label, .input-group-field, .input-group-button {
1460
+ display: table-cell;
1461
+ margin: 0;
1462
+ vertical-align: middle; }
1463
+
1464
+ .input-group-label {
1465
+ text-align: center;
1466
+ width: 1%;
1467
+ height: 100%;
1468
+ padding: 0 1rem;
1469
+ background: #e6e6e6;
1470
+ color: #0a0a0a;
1471
+ border: 1px solid #cacaca;
1472
+ white-space: nowrap; }
1473
+ .input-group-label:first-child {
1474
+ border-right: 0; }
1475
+ .input-group-label:last-child {
1476
+ border-left: 0; }
1477
+
1478
+ .input-group-field {
1479
+ border-radius: 0;
1480
+ height: 2.5rem; }
1481
+
1482
+ .input-group-button {
1483
+ height: 100%;
1484
+ padding-top: 0;
1485
+ padding-bottom: 0;
1486
+ text-align: center;
1487
+ width: 1%; }
1488
+ .input-group-button a,
1489
+ .input-group-button input,
1490
+ .input-group-button button {
1491
+ margin: 0; }
1492
+
1493
+ fieldset {
1494
+ border: 0;
1495
+ padding: 0;
1496
+ margin: 0; }
1497
+
1498
+ legend {
1499
+ margin-bottom: 0.5rem;
1500
+ max-width: 100%; }
1501
+
1502
+ .fieldset {
1503
+ border: 1px solid #cacaca;
1504
+ padding: 1.25rem;
1505
+ margin: 1.125rem 0; }
1506
+ .fieldset legend {
1507
+ background: #fefefe;
1508
+ padding: 0 0.1875rem;
1509
+ margin: 0;
1510
+ margin-left: -0.1875rem; }
1511
+
1512
+ select {
1513
+ height: 2.4375rem;
1514
+ padding: 0.5rem;
1515
+ border: 1px solid #cacaca;
1516
+ margin: 0 0 1rem;
1517
+ font-size: 1rem;
1518
+ font-family: inherit;
1519
+ line-height: normal;
1520
+ color: #0a0a0a;
1521
+ background-color: #fefefe;
1522
+ border-radius: 0;
1523
+ -webkit-appearance: none;
1524
+ -moz-appearance: none;
1525
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
1526
+ background-size: 9px 6px;
1527
+ background-position: right center;
1528
+ background-origin: content-box;
1529
+ background-repeat: no-repeat; }
1530
+ @media screen and (min-width: 0\0) {
1531
+ select {
1532
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
1533
+ select:disabled {
1534
+ background-color: #e6e6e6;
1535
+ cursor: default; }
1536
+ select::-ms-expand {
1537
+ display: none; }
1538
+ select[multiple] {
1539
+ height: auto; }
1540
+
1541
+ .is-invalid-input:not(:focus) {
1542
+ background-color: rgba(236, 88, 64, 0.1);
1543
+ border-color: #ec5840; }
1544
+
1545
+ .is-invalid-label {
1546
+ color: #ec5840; }
1547
+
1548
+ .form-error {
1549
+ display: none;
1550
+ margin-top: -0.5rem;
1551
+ margin-bottom: 1rem;
1552
+ font-size: 0.75rem;
1553
+ font-weight: bold;
1554
+ color: #ec5840; }
1555
+ .form-error.is-visible {
1556
+ display: block; }
1557
+
1558
+ .hide {
1559
+ display: none !important; }
1560
+
1561
+ .invisible {
1562
+ visibility: hidden; }
1563
+
1564
+ @media screen and (min-width: 0em) and (max-width: 39.9375em) {
1565
+ .hide-for-small-only {
1566
+ display: none !important; } }
1567
+
1568
+ @media screen and (max-width: 0em), screen and (min-width: 40em) {
1569
+ .show-for-small-only {
1570
+ display: none !important; } }
1571
+
1572
+ @media screen and (min-width: 40em) {
1573
+ .hide-for-medium {
1574
+ display: none !important; } }
1575
+
1576
+ @media screen and (max-width: 39.9375em) {
1577
+ .show-for-medium {
1578
+ display: none !important; } }
1579
+
1580
+ @media screen and (min-width: 40em) and (max-width: 63.9375em) {
1581
+ .hide-for-medium-only {
1582
+ display: none !important; } }
1583
+
1584
+ @media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
1585
+ .show-for-medium-only {
1586
+ display: none !important; } }
1587
+
1588
+ @media screen and (min-width: 64em) {
1589
+ .hide-for-large {
1590
+ display: none !important; } }
1591
+
1592
+ @media screen and (max-width: 63.9375em) {
1593
+ .show-for-large {
1594
+ display: none !important; } }
1595
+
1596
+ @media screen and (min-width: 64em) and (max-width: 74.9375em) {
1597
+ .hide-for-large-only {
1598
+ display: none !important; } }
1599
+
1600
+ @media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
1601
+ .show-for-large-only {
1602
+ display: none !important; } }
1603
+
1604
+ .show-for-sr,
1605
+ .show-on-focus {
1606
+ position: absolute !important;
1607
+ width: 1px;
1608
+ height: 1px;
1609
+ overflow: hidden;
1610
+ clip: rect(0, 0, 0, 0); }
1611
+
1612
+ .show-on-focus:active, .show-on-focus:focus {
1613
+ position: static !important;
1614
+ height: auto;
1615
+ width: auto;
1616
+ overflow: visible;
1617
+ clip: auto; }
1618
+
1619
+ .show-for-landscape,
1620
+ .hide-for-portrait {
1621
+ display: block !important; }
1622
+ @media screen and (orientation: landscape) {
1623
+ .show-for-landscape,
1624
+ .hide-for-portrait {
1625
+ display: block !important; } }
1626
+ @media screen and (orientation: portrait) {
1627
+ .show-for-landscape,
1628
+ .hide-for-portrait {
1629
+ display: none !important; } }
1630
+
1631
+ .hide-for-landscape,
1632
+ .show-for-portrait {
1633
+ display: none !important; }
1634
+ @media screen and (orientation: landscape) {
1635
+ .hide-for-landscape,
1636
+ .show-for-portrait {
1637
+ display: none !important; } }
1638
+ @media screen and (orientation: portrait) {
1639
+ .hide-for-landscape,
1640
+ .show-for-portrait {
1641
+ display: block !important; } }
1642
+
1643
+ .float-left {
1644
+ float: left !important; }
1645
+
1646
+ .float-right {
1647
+ float: right !important; }
1648
+
1649
+ .float-center {
1650
+ display: block;
1651
+ margin-left: auto;
1652
+ margin-right: auto; }
1653
+
1654
+ .clearfix::before, .clearfix::after {
1655
+ content: ' ';
1656
+ display: table; }
1657
+
1658
+ .clearfix::after {
1659
+ clear: both; }
1660
+
1661
+ .accordion {
1662
+ list-style-type: none;
1663
+ background: #fefefe;
1664
+ border: 1px solid #e6e6e6;
1665
+ border-bottom: 0;
1666
+ border-radius: 0;
1667
+ margin-left: 0; }
1668
+
1669
+ .accordion-title {
1670
+ display: block;
1671
+ padding: 1.25rem 1rem;
1672
+ line-height: 1;
1673
+ font-size: 0.75rem;
1674
+ color: #2199e8;
1675
+ position: relative;
1676
+ border-bottom: 1px solid #e6e6e6; }
1677
+ .accordion-title:hover, .accordion-title:focus {
1678
+ background-color: #e6e6e6; }
1679
+ .accordion-title::before {
1680
+ content: '+';
1681
+ position: absolute;
1682
+ right: 1rem;
1683
+ top: 50%;
1684
+ margin-top: -0.5rem; }
1685
+ .is-active > .accordion-title::before {
1686
+ content: '–'; }
1687
+
1688
+ .accordion-content {
1689
+ padding: 1rem;
1690
+ display: none;
1691
+ border-bottom: 1px solid #e6e6e6;
1692
+ background-color: #fefefe; }
1693
+
1694
+ .is-accordion-submenu-parent > a {
1695
+ position: relative; }
1696
+ .is-accordion-submenu-parent > a::after {
1697
+ content: '';
1698
+ display: block;
1699
+ width: 0;
1700
+ height: 0;
1701
+ border: inset 6px;
1702
+ border-color: #2199e8 transparent transparent;
1703
+ border-top-style: solid;
1704
+ border-bottom-width: 0;
1705
+ position: absolute;
1706
+ top: 50%;
1707
+ margin-top: -4px;
1708
+ right: 1rem; }
1709
+
1710
+ .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
1711
+ -webkit-transform-origin: 50% 50%;
1712
+ -ms-transform-origin: 50% 50%;
1713
+ transform-origin: 50% 50%;
1714
+ -webkit-transform: scaleY(-1);
1715
+ -ms-transform: scaleY(-1);
1716
+ transform: scaleY(-1); }
1717
+
1718
+ .badge {
1719
+ display: inline-block;
1720
+ padding: 0.3em;
1721
+ min-width: 2.1em;
1722
+ font-size: 0.6rem;
1723
+ text-align: center;
1724
+ border-radius: 50%;
1725
+ background: #2199e8;
1726
+ color: #fefefe; }
1727
+ .badge.secondary {
1728
+ background: #777;
1729
+ color: #fefefe; }
1730
+ .badge.success {
1731
+ background: #3adb76;
1732
+ color: #fefefe; }
1733
+ .badge.alert {
1734
+ background: #ec5840;
1735
+ color: #fefefe; }
1736
+ .badge.warning {
1737
+ background: #ffae00;
1738
+ color: #fefefe; }
1739
+
1740
+ .breadcrumbs {
1741
+ list-style: none;
1742
+ margin: 0 0 1rem 0; }
1743
+ .breadcrumbs::before, .breadcrumbs::after {
1744
+ content: ' ';
1745
+ display: table; }
1746
+ .breadcrumbs::after {
1747
+ clear: both; }
1748
+ .breadcrumbs li {
1749
+ float: left;
1750
+ color: #0a0a0a;
1751
+ font-size: 0.6875rem;
1752
+ cursor: default;
1753
+ text-transform: uppercase; }
1754
+ .breadcrumbs li:not(:last-child)::after {
1755
+ color: #cacaca;
1756
+ content: "/";
1757
+ margin: 0 0.75rem;
1758
+ position: relative;
1759
+ top: 1px;
1760
+ opacity: 1; }
1761
+ .breadcrumbs a {
1762
+ color: #2199e8; }
1763
+ .breadcrumbs a:hover {
1764
+ text-decoration: underline; }
1765
+ .breadcrumbs .disabled {
1766
+ color: #cacaca; }
1767
+
1768
+ .button-group {
1769
+ margin-bottom: 1rem;
1770
+ font-size: 0.9rem; }
1771
+ .button-group::before, .button-group::after {
1772
+ content: ' ';
1773
+ display: table; }
1774
+ .button-group::after {
1775
+ clear: both; }
1776
+ .button-group .button {
1777
+ float: left;
1778
+ margin: 0;
1779
+ font-size: inherit; }
1780
+ .button-group .button:not(:last-child) {
1781
+ border-right: 1px solid #fefefe; }
1782
+ .button-group.tiny {
1783
+ font-size: 0.6rem; }
1784
+ .button-group.small {
1785
+ font-size: 0.75rem; }
1786
+ .button-group.large {
1787
+ font-size: 1.25rem; }
1788
+ .button-group.expanded {
1789
+ display: table;
1790
+ table-layout: fixed;
1791
+ width: 100%; }
1792
+ .button-group.expanded::before, .button-group.expanded::after {
1793
+ display: none; }
1794
+ .button-group.expanded .button {
1795
+ display: table-cell;
1796
+ float: none; }
1797
+ .button-group.primary .button {
1798
+ background-color: #2199e8;
1799
+ color: #fefefe; }
1800
+ .button-group.primary .button:hover, .button-group.primary .button:focus {
1801
+ background-color: #147cc0;
1802
+ color: #fefefe; }
1803
+ .button-group.secondary .button {
1804
+ background-color: #777;
1805
+ color: #fefefe; }
1806
+ .button-group.secondary .button:hover, .button-group.secondary .button:focus {
1807
+ background-color: #5f5f5f;
1808
+ color: #fefefe; }
1809
+ .button-group.success .button {
1810
+ background-color: #3adb76;
1811
+ color: #fefefe; }
1812
+ .button-group.success .button:hover, .button-group.success .button:focus {
1813
+ background-color: #22bb5b;
1814
+ color: #fefefe; }
1815
+ .button-group.alert .button {
1816
+ background-color: #ec5840;
1817
+ color: #fefefe; }
1818
+ .button-group.alert .button:hover, .button-group.alert .button:focus {
1819
+ background-color: #da3116;
1820
+ color: #fefefe; }
1821
+ .button-group.warning .button {
1822
+ background-color: #ffae00;
1823
+ color: #fefefe; }
1824
+ .button-group.warning .button:hover, .button-group.warning .button:focus {
1825
+ background-color: #cc8b00;
1826
+ color: #fefefe; }
1827
+ .button-group.stacked .button, .button-group.stacked-for-small .button {
1828
+ width: 100%; }
1829
+ .button-group.stacked .button:not(:last-child), .button-group.stacked-for-small .button:not(:last-child) {
1830
+ border-right: 1px solid; }
1831
+ @media screen and (min-width: 40em) {
1832
+ .button-group.stacked-for-small .button {
1833
+ width: auto; }
1834
+ .button-group.stacked-for-small .button:not(:last-child) {
1835
+ border-right: 1px solid #fefefe; } }
1836
+ @media screen and (min-width: 0em) and (max-width: 39.9375em) {
1837
+ .button-group.stacked-for-small.expanded {
1838
+ display: block; }
1839
+ .button-group.stacked-for-small.expanded .button {
1840
+ display: block;
1841
+ border-right: 0; } }
1842
+
1843
+ .callout {
1844
+ margin: 0 0 1rem 0;
1845
+ padding: 1rem;
1846
+ border: 1px solid rgba(10, 10, 10, 0.25);
1847
+ border-radius: 0;
1848
+ position: relative;
1849
+ color: #0a0a0a;
1850
+ background-color: white; }
1851
+ .callout > :first-child {
1852
+ margin-top: 0; }
1853
+ .callout > :last-child {
1854
+ margin-bottom: 0; }
1855
+ .callout.primary {
1856
+ background-color: #def0fc; }
1857
+ .callout.secondary {
1858
+ background-color: #ebebeb; }
1859
+ .callout.success {
1860
+ background-color: #e1faea; }
1861
+ .callout.alert {
1862
+ background-color: #fce6e2; }
1863
+ .callout.warning {
1864
+ background-color: #fff3d9; }
1865
+ .callout.small {
1866
+ padding-top: 0.5rem;
1867
+ padding-right: 0.5rem;
1868
+ padding-bottom: 0.5rem;
1869
+ padding-left: 0.5rem; }
1870
+ .callout.large {
1871
+ padding-top: 3rem;
1872
+ padding-right: 3rem;
1873
+ padding-bottom: 3rem;
1874
+ padding-left: 3rem; }
1875
+
1876
+ .close-button {
1877
+ position: absolute;
1878
+ color: #8a8a8a;
1879
+ right: 1rem;
1880
+ top: 0.5rem;
1881
+ font-size: 2em;
1882
+ line-height: 1;
1883
+ cursor: pointer; }
1884
+ [data-whatinput='mouse'] .close-button {
1885
+ outline: 0; }
1886
+ .close-button:hover, .close-button:focus {
1887
+ color: #0a0a0a; }
1888
+
1889
+ .is-drilldown {
1890
+ position: relative;
1891
+ overflow: hidden; }
1892
+
1893
+ .is-drilldown-submenu {
1894
+ position: absolute;
1895
+ top: 0;
1896
+ left: 100%;
1897
+ z-index: -1;
1898
+ height: 100%;
1899
+ width: 100%;
1900
+ background: #fefefe;
1901
+ transition: -webkit-transform 0.15s linear;
1902
+ transition: transform 0.15s linear;
1903
+ transition: transform 0.15s linear, -webkit-transform 0.15s linear; }
1904
+ .is-drilldown-submenu.is-active {
1905
+ z-index: 1;
1906
+ display: block;
1907
+ -webkit-transform: translateX(-100%);
1908
+ -ms-transform: translateX(-100%);
1909
+ transform: translateX(-100%); }
1910
+ .is-drilldown-submenu.is-closing {
1911
+ -webkit-transform: translateX(100%);
1912
+ -ms-transform: translateX(100%);
1913
+ transform: translateX(100%); }
1914
+
1915
+ .is-drilldown-submenu-parent > a {
1916
+ position: relative; }
1917
+ .is-drilldown-submenu-parent > a::after {
1918
+ content: '';
1919
+ display: block;
1920
+ width: 0;
1921
+ height: 0;
1922
+ border: inset 6px;
1923
+ border-color: transparent transparent transparent #2199e8;
1924
+ border-left-style: solid;
1925
+ border-right-width: 0;
1926
+ position: absolute;
1927
+ top: 50%;
1928
+ margin-top: -6px;
1929
+ right: 1rem; }
1930
+
1931
+ .js-drilldown-back > a::before {
1932
+ content: '';
1933
+ display: block;
1934
+ width: 0;
1935
+ height: 0;
1936
+ border: inset 6px;
1937
+ border-color: transparent #2199e8 transparent transparent;
1938
+ border-right-style: solid;
1939
+ border-left-width: 0;
1940
+ border-left-width: 0;
1941
+ display: inline-block;
1942
+ vertical-align: middle;
1943
+ margin-right: 0.75rem; }
1944
+
1945
+ .dropdown-pane {
1946
+ background-color: #fefefe;
1947
+ border: 1px solid #cacaca;
1948
+ border-radius: 0;
1949
+ display: block;
1950
+ font-size: 1rem;
1951
+ padding: 1rem;
1952
+ position: absolute;
1953
+ visibility: hidden;
1954
+ width: 300px;
1955
+ z-index: 10; }
1956
+ .dropdown-pane.is-open {
1957
+ visibility: visible; }
1958
+
1959
+ .dropdown-pane.tiny {
1960
+ width: 100px; }
1961
+
1962
+ .dropdown-pane.small {
1963
+ width: 200px; }
1964
+
1965
+ .dropdown-pane.large {
1966
+ width: 400px; }
1967
+
1968
+ [data-whatinput='mouse'] .dropdown.menu a {
1969
+ outline: 0; }
1970
+
1971
+ .no-js .dropdown.menu ul {
1972
+ display: none; }
1973
+
1974
+ .dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub {
1975
+ top: 100%;
1976
+ left: 0;
1977
+ right: auto; }
1978
+
1979
+ .dropdown.menu.align-right .is-dropdown-submenu.first-sub {
1980
+ top: 100%;
1981
+ left: auto;
1982
+ right: 0; }
1983
+
1984
+ .is-dropdown-menu.vertical {
1985
+ width: 100px; }
1986
+ .is-dropdown-menu.vertical.align-right {
1987
+ float: right; }
1988
+ .is-dropdown-menu.vertical > li .is-dropdown-submenu {
1989
+ top: 0;
1990
+ left: 100%; }
1991
+
1992
+ .is-dropdown-submenu-parent {
1993
+ position: relative; }
1994
+ .is-dropdown-submenu-parent a::after {
1995
+ float: right;
1996
+ margin-top: 3px;
1997
+ margin-left: 10px; }
1998
+ .is-dropdown-submenu-parent.is-down-arrow a {
1999
+ padding-right: 1.5rem;
2000
+ position: relative; }
2001
+ .is-dropdown-submenu-parent.is-down-arrow > a::after {
2002
+ content: '';
2003
+ display: block;
2004
+ width: 0;
2005
+ height: 0;
2006
+ border: inset 5px;
2007
+ border-color: #2199e8 transparent transparent;
2008
+ border-top-style: solid;
2009
+ border-bottom-width: 0;
2010
+ position: absolute;
2011
+ top: 0.825rem;
2012
+ right: 5px; }
2013
+ .is-dropdown-submenu-parent.is-left-arrow > a::after {
2014
+ content: '';
2015
+ display: block;
2016
+ width: 0;
2017
+ height: 0;
2018
+ border: inset 5px;
2019
+ border-color: transparent #2199e8 transparent transparent;
2020
+ border-right-style: solid;
2021
+ border-left-width: 0;
2022
+ float: left;
2023
+ margin-left: 0;
2024
+ margin-right: 10px; }
2025
+ .is-dropdown-submenu-parent.is-right-arrow > a::after {
2026
+ content: '';
2027
+ display: block;
2028
+ width: 0;
2029
+ height: 0;
2030
+ border: inset 5px;
2031
+ border-color: transparent transparent transparent #2199e8;
2032
+ border-left-style: solid;
2033
+ border-right-width: 0; }
2034
+ .is-dropdown-submenu-parent.is-left-arrow.opens-inner .is-dropdown-submenu {
2035
+ right: 0;
2036
+ left: auto; }
2037
+ .is-dropdown-submenu-parent.is-right-arrow.opens-inner .is-dropdown-submenu {
2038
+ left: 0;
2039
+ right: auto; }
2040
+ .is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
2041
+ top: 100%; }
2042
+ .is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
2043
+ left: auto;
2044
+ right: 100%; }
2045
+
2046
+ .is-dropdown-submenu {
2047
+ display: none;
2048
+ position: absolute;
2049
+ top: 0;
2050
+ left: 100%;
2051
+ min-width: 200px;
2052
+ z-index: 1;
2053
+ background: #fefefe;
2054
+ border: 1px solid #cacaca; }
2055
+ .is-dropdown-submenu .is-dropdown-submenu {
2056
+ margin-top: -1px; }
2057
+ .is-dropdown-submenu > li {
2058
+ width: 100%; }
2059
+ .is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
2060
+ display: block; }
2061
+
2062
+ .flex-video {
2063
+ position: relative;
2064
+ height: 0;
2065
+ padding-bottom: 75%;
2066
+ margin-bottom: 1rem;
2067
+ overflow: hidden; }
2068
+ .flex-video iframe,
2069
+ .flex-video object,
2070
+ .flex-video embed,
2071
+ .flex-video video {
2072
+ position: absolute;
2073
+ top: 0;
2074
+ left: 0;
2075
+ width: 100%;
2076
+ height: 100%; }
2077
+ .flex-video.widescreen {
2078
+ padding-bottom: 56.25%; }
2079
+ .flex-video.vimeo {
2080
+ padding-top: 0; }
2081
+
2082
+ .label {
2083
+ display: inline-block;
2084
+ padding: 0.33333rem 0.5rem;
2085
+ font-size: 0.8rem;
2086
+ line-height: 1;
2087
+ white-space: nowrap;
2088
+ cursor: default;
2089
+ border-radius: 0;
2090
+ background: #2199e8;
2091
+ color: #fefefe; }
2092
+ .label.secondary {
2093
+ background: #777;
2094
+ color: #fefefe; }
2095
+ .label.success {
2096
+ background: #3adb76;
2097
+ color: #fefefe; }
2098
+ .label.alert {
2099
+ background: #ec5840;
2100
+ color: #fefefe; }
2101
+ .label.warning {
2102
+ background: #ffae00;
2103
+ color: #fefefe; }
2104
+
2105
+ .media-object {
2106
+ margin-bottom: 1rem;
2107
+ display: block; }
2108
+ .media-object img {
2109
+ max-width: none; }
2110
+ @media screen and (min-width: 0em) and (max-width: 39.9375em) {
2111
+ .media-object.stack-for-small .media-object-section {
2112
+ display: block;
2113
+ padding: 0;
2114
+ padding-bottom: 1rem; }
2115
+ .media-object.stack-for-small .media-object-section img {
2116
+ width: 100%; } }
2117
+
2118
+ .media-object-section {
2119
+ display: table-cell;
2120
+ vertical-align: top; }
2121
+ .media-object-section:first-child {
2122
+ padding-right: 1rem; }
2123
+ .media-object-section:last-child:not(:nth-child(2)) {
2124
+ padding-left: 1rem; }
2125
+ .media-object-section.middle {
2126
+ vertical-align: middle; }
2127
+ .media-object-section.bottom {
2128
+ vertical-align: bottom; }
2129
+
2130
+ .menu {
2131
+ margin: 0;
2132
+ list-style-type: none; }
2133
+ .menu > li {
2134
+ display: table-cell;
2135
+ vertical-align: middle; }
2136
+ [data-whatinput='mouse'] .menu > li {
2137
+ outline: 0; }
2138
+ .menu > li > a {
2139
+ display: block;
2140
+ padding: 0.7rem 1rem;
2141
+ line-height: 1; }
2142
+ .menu input,
2143
+ .menu a,
2144
+ .menu button {
2145
+ margin-bottom: 0; }
2146
+ .menu > li > a > img,
2147
+ .menu > li > a > i {
2148
+ vertical-align: middle; }
2149
+ .menu > li > a > span {
2150
+ vertical-align: middle; }
2151
+ .menu > li > a > img,
2152
+ .menu > li > a > i {
2153
+ display: inline-block;
2154
+ margin-right: 0.25rem; }
2155
+ .menu > li {
2156
+ display: table-cell; }
2157
+ .menu.vertical > li {
2158
+ display: block; }
2159
+ @media screen and (min-width: 40em) {
2160
+ .menu.medium-horizontal > li {
2161
+ display: table-cell; }
2162
+ .menu.medium-vertical > li {
2163
+ display: block; } }
2164
+ @media screen and (min-width: 64em) {
2165
+ .menu.large-horizontal > li {
2166
+ display: table-cell; }
2167
+ .menu.large-vertical > li {
2168
+ display: block; } }
2169
+ .menu.simple li {
2170
+ line-height: 1;
2171
+ display: inline-block;
2172
+ margin-right: 1rem; }
2173
+ .menu.simple a {
2174
+ padding: 0; }
2175
+ .menu.align-right > li {
2176
+ float: right; }
2177
+ .menu.expanded {
2178
+ display: table;
2179
+ table-layout: fixed;
2180
+ width: 100%; }
2181
+ .menu.expanded > li:first-child:last-child {
2182
+ width: 100%; }
2183
+ .menu.icon-top > li > a {
2184
+ text-align: center; }
2185
+ .menu.icon-top > li > a > img,
2186
+ .menu.icon-top > li > a > i {
2187
+ display: block;
2188
+ margin: 0 auto 0.25rem; }
2189
+ .menu.nested {
2190
+ margin-left: 1rem; }
2191
+
2192
+ .menu-text {
2193
+ font-weight: bold;
2194
+ color: inherit;
2195
+ line-height: 1;
2196
+ padding-top: 0;
2197
+ padding-bottom: 0;
2198
+ padding: 0.7rem 1rem; }
2199
+
2200
+ .no-js [data-responsive-menu] ul {
2201
+ display: none; }
2202
+
2203
+ html,
2204
+ body {
2205
+ height: 100%; }
2206
+
2207
+ .off-canvas-wrapper {
2208
+ width: 100%;
2209
+ overflow-x: hidden;
2210
+ position: relative;
2211
+ -webkit-backface-visibility: hidden;
2212
+ backface-visibility: hidden;
2213
+ -webkit-overflow-scrolling: auto; }
2214
+
2215
+ .off-canvas-wrapper-inner {
2216
+ position: relative;
2217
+ width: 100%;
2218
+ transition: -webkit-transform 0.5s ease;
2219
+ transition: transform 0.5s ease;
2220
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
2221
+ .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
2222
+ content: ' ';
2223
+ display: table; }
2224
+ .off-canvas-wrapper-inner::after {
2225
+ clear: both; }
2226
+
2227
+ .off-canvas-content,
2228
+ .off-canvas-content {
2229
+ min-height: 100%;
2230
+ background: #fefefe;
2231
+ transition: -webkit-transform 0.5s ease;
2232
+ transition: transform 0.5s ease;
2233
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
2234
+ -webkit-backface-visibility: hidden;
2235
+ backface-visibility: hidden;
2236
+ z-index: 1;
2237
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }
2238
+
2239
+ .js-off-canvas-exit {
2240
+ display: none;
2241
+ position: absolute;
2242
+ top: 0;
2243
+ left: 0;
2244
+ width: 100%;
2245
+ height: 100%;
2246
+ background: rgba(254, 254, 254, 0.25);
2247
+ cursor: pointer;
2248
+ transition: background 0.5s ease; }
2249
+
2250
+ .off-canvas {
2251
+ position: absolute;
2252
+ background: #e6e6e6;
2253
+ z-index: -1;
2254
+ max-height: 100%;
2255
+ overflow-y: auto;
2256
+ -webkit-transform: translateX(0);
2257
+ -ms-transform: translateX(0);
2258
+ transform: translateX(0); }
2259
+ [data-whatinput='mouse'] .off-canvas {
2260
+ outline: 0; }
2261
+ .off-canvas.position-left {
2262
+ left: -250px;
2263
+ top: 0;
2264
+ width: 250px; }
2265
+ .is-open-left {
2266
+ -webkit-transform: translateX(250px);
2267
+ -ms-transform: translateX(250px);
2268
+ transform: translateX(250px); }
2269
+ .off-canvas.position-right {
2270
+ right: -250px;
2271
+ top: 0;
2272
+ width: 250px; }
2273
+ .is-open-right {
2274
+ -webkit-transform: translateX(-250px);
2275
+ -ms-transform: translateX(-250px);
2276
+ transform: translateX(-250px); }
2277
+
2278
+ @media screen and (min-width: 40em) {
2279
+ .position-left.reveal-for-medium {
2280
+ left: 0;
2281
+ z-index: auto;
2282
+ position: fixed; }
2283
+ .position-left.reveal-for-medium ~ .off-canvas-content {
2284
+ margin-left: 250px; }
2285
+ .position-right.reveal-for-medium {
2286
+ right: 0;
2287
+ z-index: auto;
2288
+ position: fixed; }
2289
+ .position-right.reveal-for-medium ~ .off-canvas-content {
2290
+ margin-right: 250px; } }
2291
+
2292
+ @media screen and (min-width: 64em) {
2293
+ .position-left.reveal-for-large {
2294
+ left: 0;
2295
+ z-index: auto;
2296
+ position: fixed; }
2297
+ .position-left.reveal-for-large ~ .off-canvas-content {
2298
+ margin-left: 250px; }
2299
+ .position-right.reveal-for-large {
2300
+ right: 0;
2301
+ z-index: auto;
2302
+ position: fixed; }
2303
+ .position-right.reveal-for-large ~ .off-canvas-content {
2304
+ margin-right: 250px; } }
2305
+
2306
+ .orbit {
2307
+ position: relative; }
2308
+
2309
+ .orbit-container {
2310
+ position: relative;
2311
+ margin: 0;
2312
+ overflow: hidden;
2313
+ list-style: none; }
2314
+
2315
+ .orbit-slide {
2316
+ width: 100%;
2317
+ max-height: 100%; }
2318
+ .orbit-slide.no-motionui.is-active {
2319
+ top: 0;
2320
+ left: 0; }
2321
+
2322
+ .orbit-figure {
2323
+ margin: 0; }
2324
+
2325
+ .orbit-image {
2326
+ margin: 0;
2327
+ width: 100%;
2328
+ max-width: 100%; }
2329
+
2330
+ .orbit-caption {
2331
+ position: absolute;
2332
+ bottom: 0;
2333
+ width: 100%;
2334
+ padding: 1rem;
2335
+ margin-bottom: 0;
2336
+ color: #fefefe;
2337
+ background-color: rgba(10, 10, 10, 0.5); }
2338
+
2339
+ .orbit-previous, .orbit-next {
2340
+ position: absolute;
2341
+ top: 50%;
2342
+ -webkit-transform: translateY(-50%);
2343
+ -ms-transform: translateY(-50%);
2344
+ transform: translateY(-50%);
2345
+ z-index: 10;
2346
+ padding: 1rem;
2347
+ color: #fefefe; }
2348
+ [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
2349
+ outline: 0; }
2350
+ .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
2351
+ background-color: rgba(10, 10, 10, 0.5); }
2352
+
2353
+ .orbit-previous {
2354
+ left: 0; }
2355
+
2356
+ .orbit-next {
2357
+ left: auto;
2358
+ right: 0; }
2359
+
2360
+ .orbit-bullets {
2361
+ position: relative;
2362
+ margin-top: 0.8rem;
2363
+ margin-bottom: 0.8rem;
2364
+ text-align: center; }
2365
+ [data-whatinput='mouse'] .orbit-bullets {
2366
+ outline: 0; }
2367
+ .orbit-bullets button {
2368
+ width: 1.2rem;
2369
+ height: 1.2rem;
2370
+ margin: 0.1rem;
2371
+ background-color: #cacaca;
2372
+ border-radius: 50%; }
2373
+ .orbit-bullets button:hover {
2374
+ background-color: #8a8a8a; }
2375
+ .orbit-bullets button.is-active {
2376
+ background-color: #8a8a8a; }
2377
+
2378
+ .pagination {
2379
+ margin-left: 0;
2380
+ margin-bottom: 1rem; }
2381
+ .pagination::before, .pagination::after {
2382
+ content: ' ';
2383
+ display: table; }
2384
+ .pagination::after {
2385
+ clear: both; }
2386
+ .pagination li {
2387
+ font-size: 0.875rem;
2388
+ margin-right: 0.0625rem;
2389
+ border-radius: 0;
2390
+ display: none; }
2391
+ .pagination li:last-child, .pagination li:first-child {
2392
+ display: inline-block; }
2393
+ @media screen and (min-width: 40em) {
2394
+ .pagination li {
2395
+ display: inline-block; } }
2396
+ .pagination a,
2397
+ .pagination button {
2398
+ color: #0a0a0a;
2399
+ display: block;
2400
+ padding: 0.1875rem 0.625rem;
2401
+ border-radius: 0; }
2402
+ .pagination a:hover,
2403
+ .pagination button:hover {
2404
+ background: #e6e6e6; }
2405
+ .pagination .current {
2406
+ padding: 0.1875rem 0.625rem;
2407
+ background: #2199e8;
2408
+ color: #fefefe;
2409
+ cursor: default; }
2410
+ .pagination .disabled {
2411
+ padding: 0.1875rem 0.625rem;
2412
+ color: #cacaca;
2413
+ cursor: default; }
2414
+ .pagination .disabled:hover {
2415
+ background: transparent; }
2416
+ .pagination .ellipsis::after {
2417
+ content: '…';
2418
+ padding: 0.1875rem 0.625rem;
2419
+ color: #0a0a0a; }
2420
+
2421
+ .pagination-previous a::before,
2422
+ .pagination-previous.disabled::before {
2423
+ content: '«';
2424
+ display: inline-block;
2425
+ margin-right: 0.5rem; }
2426
+
2427
+ .pagination-next a::after,
2428
+ .pagination-next.disabled::after {
2429
+ content: '»';
2430
+ display: inline-block;
2431
+ margin-left: 0.5rem; }
2432
+
2433
+ .progress {
2434
+ background-color: #cacaca;
2435
+ height: 1rem;
2436
+ margin-bottom: 1rem;
2437
+ border-radius: 0; }
2438
+ .progress.primary .progress-meter {
2439
+ background-color: #2199e8; }
2440
+ .progress.secondary .progress-meter {
2441
+ background-color: #777; }
2442
+ .progress.success .progress-meter {
2443
+ background-color: #3adb76; }
2444
+ .progress.alert .progress-meter {
2445
+ background-color: #ec5840; }
2446
+ .progress.warning .progress-meter {
2447
+ background-color: #ffae00; }
2448
+
2449
+ .progress-meter {
2450
+ position: relative;
2451
+ display: block;
2452
+ width: 0%;
2453
+ height: 100%;
2454
+ background-color: #2199e8; }
2455
+
2456
+ .progress-meter-text {
2457
+ position: absolute;
2458
+ top: 50%;
2459
+ left: 50%;
2460
+ -webkit-transform: translate(-50%, -50%);
2461
+ -ms-transform: translate(-50%, -50%);
2462
+ transform: translate(-50%, -50%);
2463
+ position: absolute;
2464
+ margin: 0;
2465
+ font-size: 0.75rem;
2466
+ font-weight: bold;
2467
+ color: #fefefe;
2468
+ white-space: nowrap; }
2469
+
2470
+ .slider {
2471
+ position: relative;
2472
+ height: 0.5rem;
2473
+ margin-top: 1.25rem;
2474
+ margin-bottom: 2.25rem;
2475
+ background-color: #e6e6e6;
2476
+ cursor: pointer;
2477
+ -webkit-user-select: none;
2478
+ -moz-user-select: none;
2479
+ -ms-user-select: none;
2480
+ user-select: none;
2481
+ -ms-touch-action: none;
2482
+ touch-action: none; }
2483
+
2484
+ .slider-fill {
2485
+ position: absolute;
2486
+ top: 0;
2487
+ left: 0;
2488
+ display: inline-block;
2489
+ max-width: 100%;
2490
+ height: 0.5rem;
2491
+ background-color: #cacaca;
2492
+ transition: all 0.2s ease-in-out; }
2493
+ .slider-fill.is-dragging {
2494
+ transition: all 0s linear; }
2495
+
2496
+ .slider-handle {
2497
+ position: absolute;
2498
+ top: 50%;
2499
+ -webkit-transform: translateY(-50%);
2500
+ -ms-transform: translateY(-50%);
2501
+ transform: translateY(-50%);
2502
+ position: absolute;
2503
+ left: 0;
2504
+ z-index: 1;
2505
+ display: inline-block;
2506
+ width: 1.4rem;
2507
+ height: 1.4rem;
2508
+ background-color: #2199e8;
2509
+ transition: all 0.2s ease-in-out;
2510
+ -ms-touch-action: manipulation;
2511
+ touch-action: manipulation;
2512
+ border-radius: 0; }
2513
+ [data-whatinput='mouse'] .slider-handle {
2514
+ outline: 0; }
2515
+ .slider-handle:hover {
2516
+ background-color: #1583cc; }
2517
+ .slider-handle.is-dragging {
2518
+ transition: all 0s linear; }
2519
+
2520
+ .slider.disabled,
2521
+ .slider[disabled] {
2522
+ opacity: 0.25;
2523
+ cursor: not-allowed; }
2524
+
2525
+ .slider.vertical {
2526
+ display: inline-block;
2527
+ width: 0.5rem;
2528
+ height: 12.5rem;
2529
+ margin: 0 1.25rem;
2530
+ -webkit-transform: scale(1, -1);
2531
+ -ms-transform: scale(1, -1);
2532
+ transform: scale(1, -1); }
2533
+ .slider.vertical .slider-fill {
2534
+ top: 0;
2535
+ width: 0.5rem;
2536
+ max-height: 100%; }
2537
+ .slider.vertical .slider-handle {
2538
+ position: absolute;
2539
+ top: 0;
2540
+ left: 50%;
2541
+ width: 1.4rem;
2542
+ height: 1.4rem;
2543
+ -webkit-transform: translateX(-50%);
2544
+ -ms-transform: translateX(-50%);
2545
+ transform: translateX(-50%); }
2546
+
2547
+ .sticky-container {
2548
+ position: relative; }
2549
+
2550
+ .sticky {
2551
+ position: absolute;
2552
+ z-index: 0;
2553
+ -webkit-transform: translate3d(0, 0, 0);
2554
+ transform: translate3d(0, 0, 0); }
2555
+
2556
+ .sticky.is-stuck {
2557
+ position: fixed;
2558
+ z-index: 5; }
2559
+ .sticky.is-stuck.is-at-top {
2560
+ top: 0; }
2561
+ .sticky.is-stuck.is-at-bottom {
2562
+ bottom: 0; }
2563
+
2564
+ .sticky.is-anchored {
2565
+ position: absolute;
2566
+ left: auto;
2567
+ right: auto; }
2568
+ .sticky.is-anchored.is-at-bottom {
2569
+ bottom: 0; }
2570
+
2571
+ body.is-reveal-open {
2572
+ overflow: hidden; }
2573
+
2574
+ .reveal-overlay {
2575
+ display: none;
2576
+ position: fixed;
2577
+ top: 0;
2578
+ bottom: 0;
2579
+ left: 0;
2580
+ right: 0;
2581
+ z-index: 1005;
2582
+ background-color: rgba(10, 10, 10, 0.45);
2583
+ overflow-y: scroll; }
2584
+
2585
+ .reveal {
2586
+ display: none;
2587
+ z-index: 1006;
2588
+ padding: 1rem;
2589
+ border: 1px solid #cacaca;
2590
+ margin: 6.25rem auto 0;
2591
+ background-color: #fefefe;
2592
+ border-radius: 0;
2593
+ position: absolute;
2594
+ overflow-y: auto; }
2595
+ [data-whatinput='mouse'] .reveal {
2596
+ outline: 0; }
2597
+ @media screen and (min-width: 40em) {
2598
+ .reveal {
2599
+ min-height: 0; } }
2600
+ .reveal .column, .reveal .columns,
2601
+ .reveal .columns {
2602
+ min-width: 0; }
2603
+ .reveal > :last-child {
2604
+ margin-bottom: 0; }
2605
+ @media screen and (min-width: 40em) {
2606
+ .reveal {
2607
+ width: 600px;
2608
+ max-width: 75rem; } }
2609
+ @media screen and (min-width: 40em) {
2610
+ .reveal .reveal {
2611
+ left: auto;
2612
+ right: auto;
2613
+ margin: 0 auto; } }
2614
+ .reveal.collapse {
2615
+ padding: 0; }
2616
+ @media screen and (min-width: 40em) {
2617
+ .reveal.tiny {
2618
+ width: 30%;
2619
+ max-width: 75rem; } }
2620
+ @media screen and (min-width: 40em) {
2621
+ .reveal.small {
2622
+ width: 50%;
2623
+ max-width: 75rem; } }
2624
+ @media screen and (min-width: 40em) {
2625
+ .reveal.large {
2626
+ width: 90%;
2627
+ max-width: 75rem; } }
2628
+ .reveal.full {
2629
+ top: 0;
2630
+ left: 0;
2631
+ width: 100%;
2632
+ height: 100%;
2633
+ height: 100vh;
2634
+ min-height: 100vh;
2635
+ max-width: none;
2636
+ margin-left: 0;
2637
+ border: 0; }
2638
+
2639
+ .switch {
2640
+ margin-bottom: 1rem;
2641
+ outline: 0;
2642
+ position: relative;
2643
+ -webkit-user-select: none;
2644
+ -moz-user-select: none;
2645
+ -ms-user-select: none;
2646
+ user-select: none;
2647
+ color: #fefefe;
2648
+ font-weight: bold;
2649
+ font-size: 0.875rem; }
2650
+
2651
+ .switch-input {
2652
+ opacity: 0;
2653
+ position: absolute; }
2654
+
2655
+ .switch-paddle {
2656
+ background: #cacaca;
2657
+ cursor: pointer;
2658
+ display: block;
2659
+ position: relative;
2660
+ width: 4rem;
2661
+ height: 2rem;
2662
+ transition: all 0.25s ease-out;
2663
+ border-radius: 0;
2664
+ color: inherit;
2665
+ font-weight: inherit; }
2666
+ input + .switch-paddle {
2667
+ margin: 0; }
2668
+ .switch-paddle::after {
2669
+ background: #fefefe;
2670
+ content: '';
2671
+ display: block;
2672
+ position: absolute;
2673
+ height: 1.5rem;
2674
+ left: 0.25rem;
2675
+ top: 0.25rem;
2676
+ width: 1.5rem;
2677
+ transition: all 0.25s ease-out;
2678
+ -webkit-transform: translate3d(0, 0, 0);
2679
+ transform: translate3d(0, 0, 0);
2680
+ border-radius: 0; }
2681
+ input:checked ~ .switch-paddle {
2682
+ background: #2199e8; }
2683
+ input:checked ~ .switch-paddle::after {
2684
+ left: 2.25rem; }
2685
+ [data-whatinput='mouse'] input:focus ~ .switch-paddle {
2686
+ outline: 0; }
2687
+
2688
+ .switch-active, .switch-inactive {
2689
+ position: absolute;
2690
+ top: 50%;
2691
+ -webkit-transform: translateY(-50%);
2692
+ -ms-transform: translateY(-50%);
2693
+ transform: translateY(-50%); }
2694
+
2695
+ .switch-active {
2696
+ left: 8%;
2697
+ display: none; }
2698
+ input:checked + label > .switch-active {
2699
+ display: block; }
2700
+
2701
+ .switch-inactive {
2702
+ right: 15%; }
2703
+ input:checked + label > .switch-inactive {
2704
+ display: none; }
2705
+
2706
+ .switch.tiny .switch-paddle {
2707
+ width: 3rem;
2708
+ height: 1.5rem;
2709
+ font-size: 0.625rem; }
2710
+
2711
+ .switch.tiny .switch-paddle::after {
2712
+ width: 1rem;
2713
+ height: 1rem; }
2714
+
2715
+ .switch.tiny input:checked ~ .switch-paddle:after {
2716
+ left: 1.75rem; }
2717
+
2718
+ .switch.small .switch-paddle {
2719
+ width: 3.5rem;
2720
+ height: 1.75rem;
2721
+ font-size: 0.75rem; }
2722
+
2723
+ .switch.small .switch-paddle::after {
2724
+ width: 1.25rem;
2725
+ height: 1.25rem; }
2726
+
2727
+ .switch.small input:checked ~ .switch-paddle:after {
2728
+ left: 2rem; }
2729
+
2730
+ .switch.large .switch-paddle {
2731
+ width: 5rem;
2732
+ height: 2.5rem;
2733
+ font-size: 1rem; }
2734
+
2735
+ .switch.large .switch-paddle::after {
2736
+ width: 2rem;
2737
+ height: 2rem; }
2738
+
2739
+ .switch.large input:checked ~ .switch-paddle:after {
2740
+ left: 2.75rem; }
2741
+
2742
+ table {
2743
+ width: 100%;
2744
+ margin-bottom: 1rem;
2745
+ border-radius: 0; }
2746
+ table thead,
2747
+ table tbody,
2748
+ table tfoot {
2749
+ border: 1px solid #f1f1f1;
2750
+ background-color: #fefefe; }
2751
+ table caption {
2752
+ font-weight: bold;
2753
+ padding: 0.5rem 0.625rem 0.625rem; }
2754
+ table thead,
2755
+ table tfoot {
2756
+ background: #f8f8f8;
2757
+ color: #0a0a0a; }
2758
+ table thead tr,
2759
+ table tfoot tr {
2760
+ background: transparent; }
2761
+ table thead th,
2762
+ table thead td,
2763
+ table tfoot th,
2764
+ table tfoot td {
2765
+ padding: 0.5rem 0.625rem 0.625rem;
2766
+ font-weight: bold;
2767
+ text-align: left; }
2768
+ table tbody tr:nth-child(even) {
2769
+ background-color: #f1f1f1; }
2770
+ table tbody th,
2771
+ table tbody td {
2772
+ padding: 0.5rem 0.625rem 0.625rem; }
2773
+
2774
+ @media screen and (max-width: 63.9375em) {
2775
+ table.stack thead {
2776
+ display: none; }
2777
+ table.stack tfoot {
2778
+ display: none; }
2779
+ table.stack tr,
2780
+ table.stack th,
2781
+ table.stack td {
2782
+ display: block; }
2783
+ table.stack td {
2784
+ border-top: 0; } }
2785
+
2786
+ table.scroll {
2787
+ display: block;
2788
+ width: 100%;
2789
+ overflow-x: auto; }
2790
+
2791
+ table.hover tr:hover {
2792
+ background-color: #f9f9f9; }
2793
+
2794
+ table.hover tr:nth-of-type(even):hover {
2795
+ background-color: #ececec; }
2796
+
2797
+ .tabs {
2798
+ margin: 0;
2799
+ list-style-type: none;
2800
+ background: #fefefe;
2801
+ border: 1px solid #e6e6e6; }
2802
+ .tabs::before, .tabs::after {
2803
+ content: ' ';
2804
+ display: table; }
2805
+ .tabs::after {
2806
+ clear: both; }
2807
+
2808
+ .tabs.vertical > li {
2809
+ width: auto;
2810
+ float: none;
2811
+ display: block; }
2812
+
2813
+ .tabs.simple > li > a {
2814
+ padding: 0; }
2815
+ .tabs.simple > li > a:hover {
2816
+ background: transparent; }
2817
+
2818
+ .tabs.primary {
2819
+ background: #2199e8; }
2820
+ .tabs.primary > li > a {
2821
+ color: #fefefe; }
2822
+ .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
2823
+ background: #1893e4; }
2824
+
2825
+ .tabs-title {
2826
+ float: left; }
2827
+ .tabs-title > a {
2828
+ display: block;
2829
+ padding: 1.25rem 1.5rem;
2830
+ line-height: 1;
2831
+ font-size: 12px;
2832
+ color: #2199e8; }
2833
+ .tabs-title > a:hover {
2834
+ background: #fefefe; }
2835
+ .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
2836
+ background: #e6e6e6; }
2837
+
2838
+ .tabs-content {
2839
+ background: #fefefe;
2840
+ transition: all 0.5s ease;
2841
+ border: 1px solid #e6e6e6;
2842
+ border-top: 0; }
2843
+
2844
+ .tabs-content.vertical {
2845
+ border: 1px solid #e6e6e6;
2846
+ border-left: 0; }
2847
+
2848
+ .tabs-panel {
2849
+ display: none;
2850
+ padding: 1rem; }
2851
+ .tabs-panel.is-active {
2852
+ display: block; }
2853
+
2854
+ .thumbnail {
2855
+ border: solid 4px #fefefe;
2856
+ box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
2857
+ display: inline-block;
2858
+ line-height: 0;
2859
+ max-width: 100%;
2860
+ transition: box-shadow 200ms ease-out;
2861
+ border-radius: 0;
2862
+ margin-bottom: 1rem; }
2863
+ .thumbnail:hover, .thumbnail:focus {
2864
+ box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }
2865
+
2866
+ .title-bar {
2867
+ background: #0a0a0a;
2868
+ color: #fefefe;
2869
+ padding: 0.5rem; }
2870
+ .title-bar::before, .title-bar::after {
2871
+ content: ' ';
2872
+ display: table; }
2873
+ .title-bar::after {
2874
+ clear: both; }
2875
+ .title-bar .menu-icon {
2876
+ margin-left: 0.25rem;
2877
+ margin-right: 0.5rem; }
2878
+
2879
+ .title-bar-left {
2880
+ float: left; }
2881
+
2882
+ .title-bar-right {
2883
+ float: right;
2884
+ text-align: right; }
2885
+
2886
+ .title-bar-title {
2887
+ font-weight: bold;
2888
+ vertical-align: middle;
2889
+ display: inline-block; }
2890
+
2891
+ .menu-icon {
2892
+ position: relative;
2893
+ display: inline-block;
2894
+ vertical-align: middle;
2895
+ cursor: pointer;
2896
+ width: 20px;
2897
+ height: 16px; }
2898
+ .menu-icon::after {
2899
+ content: '';
2900
+ position: absolute;
2901
+ display: block;
2902
+ width: 100%;
2903
+ height: 2px;
2904
+ background: #fefefe;
2905
+ top: 0;
2906
+ left: 0;
2907
+ box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; }
2908
+ .menu-icon:hover::after {
2909
+ background: #cacaca;
2910
+ box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }
2911
+
2912
+ .menu-icon.dark {
2913
+ position: relative;
2914
+ display: inline-block;
2915
+ vertical-align: middle;
2916
+ cursor: pointer;
2917
+ width: 20px;
2918
+ height: 16px; }
2919
+ .menu-icon.dark::after {
2920
+ content: '';
2921
+ position: absolute;
2922
+ display: block;
2923
+ width: 100%;
2924
+ height: 2px;
2925
+ background: #0a0a0a;
2926
+ top: 0;
2927
+ left: 0;
2928
+ box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
2929
+ .menu-icon.dark:hover::after {
2930
+ background: #8a8a8a;
2931
+ box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
2932
+
2933
+ .has-tip {
2934
+ border-bottom: dotted 1px #8a8a8a;
2935
+ font-weight: bold;
2936
+ position: relative;
2937
+ display: inline-block;
2938
+ cursor: help; }
2939
+
2940
+ .tooltip {
2941
+ background-color: #0a0a0a;
2942
+ color: #fefefe;
2943
+ font-size: 80%;
2944
+ padding: 0.75rem;
2945
+ position: absolute;
2946
+ z-index: 10;
2947
+ top: calc(100% + 0.6495rem);
2948
+ max-width: 10rem !important;
2949
+ border-radius: 0; }
2950
+ .tooltip::before {
2951
+ content: '';
2952
+ display: block;
2953
+ width: 0;
2954
+ height: 0;
2955
+ border: inset 0.75rem;
2956
+ border-color: transparent transparent #0a0a0a;
2957
+ border-bottom-style: solid;
2958
+ border-top-width: 0;
2959
+ bottom: 100%;
2960
+ position: absolute;
2961
+ left: 50%;
2962
+ -webkit-transform: translateX(-50%);
2963
+ -ms-transform: translateX(-50%);
2964
+ transform: translateX(-50%); }
2965
+ .tooltip.top::before {
2966
+ content: '';
2967
+ display: block;
2968
+ width: 0;
2969
+ height: 0;
2970
+ border: inset 0.75rem;
2971
+ border-color: #0a0a0a transparent transparent;
2972
+ border-top-style: solid;
2973
+ border-bottom-width: 0;
2974
+ top: 100%;
2975
+ bottom: auto; }
2976
+ .tooltip.left::before {
2977
+ content: '';
2978
+ display: block;
2979
+ width: 0;
2980
+ height: 0;
2981
+ border: inset 0.75rem;
2982
+ border-color: transparent transparent transparent #0a0a0a;
2983
+ border-left-style: solid;
2984
+ border-right-width: 0;
2985
+ bottom: auto;
2986
+ left: 100%;
2987
+ top: 50%;
2988
+ -webkit-transform: translateY(-50%);
2989
+ -ms-transform: translateY(-50%);
2990
+ transform: translateY(-50%); }
2991
+ .tooltip.right::before {
2992
+ content: '';
2993
+ display: block;
2994
+ width: 0;
2995
+ height: 0;
2996
+ border: inset 0.75rem;
2997
+ border-color: transparent #0a0a0a transparent transparent;
2998
+ border-right-style: solid;
2999
+ border-left-width: 0;
3000
+ bottom: auto;
3001
+ left: auto;
3002
+ right: 100%;
3003
+ top: 50%;
3004
+ -webkit-transform: translateY(-50%);
3005
+ -ms-transform: translateY(-50%);
3006
+ transform: translateY(-50%); }
3007
+
3008
+ .top-bar {
3009
+ padding: 0.5rem; }
3010
+ .top-bar::before, .top-bar::after {
3011
+ content: ' ';
3012
+ display: table; }
3013
+ .top-bar::after {
3014
+ clear: both; }
3015
+ .top-bar,
3016
+ .top-bar ul {
3017
+ background-color: #e6e6e6; }
3018
+ .top-bar input {
3019
+ width: 200px;
3020
+ margin-right: 1rem; }
3021
+ .top-bar input.button {
3022
+ width: auto; }
3023
+
3024
+ @media screen and (max-width: 39.9375em) {
3025
+ .stacked-for-small .top-bar-title {
3026
+ width: 100%; }
3027
+ .stacked-for-small .top-bar-right {
3028
+ width: 100%; }
3029
+ .stacked-for-small .top-bar-left {
3030
+ width: 100%; } }
3031
+
3032
+ @media screen and (max-width: 63.9375em) {
3033
+ .stacked-for-medium .top-bar-title {
3034
+ width: 100%; }
3035
+ .stacked-for-medium .top-bar-right {
3036
+ width: 100%; }
3037
+ .stacked-for-medium .top-bar-left {
3038
+ width: 100%; } }
3039
+
3040
+ @media screen and (max-width: 74.9375em) {
3041
+ .stacked-for-large .top-bar-title {
3042
+ width: 100%; }
3043
+ .stacked-for-large .top-bar-right {
3044
+ width: 100%; }
3045
+ .stacked-for-large .top-bar-left {
3046
+ width: 100%; } }
3047
+
3048
+ @media screen and (min-width: 0em) and (max-width: 39.9375em) {
3049
+ .top-bar-title {
3050
+ width: 100%; }
3051
+ .top-bar-right {
3052
+ width: 100%; }
3053
+ .top-bar-left {
3054
+ width: 100%; } }
3055
+
3056
+ .top-bar-title {
3057
+ float: left;
3058
+ margin-right: 1rem; }
3059
+
3060
+ .top-bar-left {
3061
+ float: left; }
3062
+
3063
+ .top-bar-right {
3064
+ float: right; }
3065
+
3066
+ /*# sourceMappingURL=foundation-flex.css.map */